diff --git a/generated/schema.graphql b/generated/schema.graphql index 91b02942e..0731d4264 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -2310,6 +2310,388 @@ enum cursor_ordering { DESC } +""" +columns and relationships of "custom_pages" +""" +type custom_pages { + created_at: timestamptz! + enabled: Boolean! + exposed_module: String! + icon: String + id: uuid! + is_default: Boolean! + nav_group: String + nav_order: Int! + remote_entry_url: String! + remote_scope: String! + required_role: e_player_roles_enum + slug: String! + title: String! + updated_at: timestamptz! +} + +""" +aggregated selection of "custom_pages" +""" +type custom_pages_aggregate { + aggregate: custom_pages_aggregate_fields + nodes: [custom_pages!]! +} + +""" +aggregate fields of "custom_pages" +""" +type custom_pages_aggregate_fields { + avg: custom_pages_avg_fields + count(columns: [custom_pages_select_column!], distinct: Boolean): Int! + max: custom_pages_max_fields + min: custom_pages_min_fields + stddev: custom_pages_stddev_fields + stddev_pop: custom_pages_stddev_pop_fields + stddev_samp: custom_pages_stddev_samp_fields + sum: custom_pages_sum_fields + var_pop: custom_pages_var_pop_fields + var_samp: custom_pages_var_samp_fields + variance: custom_pages_variance_fields +} + +"""aggregate avg on columns""" +type custom_pages_avg_fields { + nav_order: Float +} + +""" +Boolean expression to filter rows from the table "custom_pages". All fields are combined with a logical 'AND'. +""" +input custom_pages_bool_exp { + _and: [custom_pages_bool_exp!] + _not: custom_pages_bool_exp + _or: [custom_pages_bool_exp!] + created_at: timestamptz_comparison_exp + enabled: Boolean_comparison_exp + exposed_module: String_comparison_exp + icon: String_comparison_exp + id: uuid_comparison_exp + is_default: Boolean_comparison_exp + nav_group: String_comparison_exp + nav_order: Int_comparison_exp + remote_entry_url: String_comparison_exp + remote_scope: String_comparison_exp + required_role: e_player_roles_enum_comparison_exp + slug: String_comparison_exp + title: String_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "custom_pages" +""" +enum custom_pages_constraint { + """ + unique or primary key constraint on columns "id" + """ + custom_pages_pkey + + """ + unique or primary key constraint on columns "is_default" + """ + custom_pages_single_default_idx + + """ + unique or primary key constraint on columns "slug" + """ + custom_pages_slug_key +} + +""" +input type for incrementing numeric columns in table "custom_pages" +""" +input custom_pages_inc_input { + nav_order: Int +} + +""" +input type for inserting data into table "custom_pages" +""" +input custom_pages_insert_input { + created_at: timestamptz + enabled: Boolean + exposed_module: String + icon: String + id: uuid + is_default: Boolean + nav_group: String + nav_order: Int + remote_entry_url: String + remote_scope: String + required_role: e_player_roles_enum + slug: String + title: String + updated_at: timestamptz +} + +"""aggregate max on columns""" +type custom_pages_max_fields { + created_at: timestamptz + exposed_module: String + icon: String + id: uuid + nav_group: String + nav_order: Int + remote_entry_url: String + remote_scope: String + slug: String + title: String + updated_at: timestamptz +} + +"""aggregate min on columns""" +type custom_pages_min_fields { + created_at: timestamptz + exposed_module: String + icon: String + id: uuid + nav_group: String + nav_order: Int + remote_entry_url: String + remote_scope: String + slug: String + title: String + updated_at: timestamptz +} + +""" +response of any mutation on the table "custom_pages" +""" +type custom_pages_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [custom_pages!]! +} + +""" +on_conflict condition type for table "custom_pages" +""" +input custom_pages_on_conflict { + constraint: custom_pages_constraint! + update_columns: [custom_pages_update_column!]! = [] + where: custom_pages_bool_exp +} + +"""Ordering options when selecting data from "custom_pages".""" +input custom_pages_order_by { + created_at: order_by + enabled: order_by + exposed_module: order_by + icon: order_by + id: order_by + is_default: order_by + nav_group: order_by + nav_order: order_by + remote_entry_url: order_by + remote_scope: order_by + required_role: order_by + slug: order_by + title: order_by + updated_at: order_by +} + +"""primary key columns input for table: custom_pages""" +input custom_pages_pk_columns_input { + id: uuid! +} + +""" +select columns of table "custom_pages" +""" +enum custom_pages_select_column { + """column name""" + created_at + + """column name""" + enabled + + """column name""" + exposed_module + + """column name""" + icon + + """column name""" + id + + """column name""" + is_default + + """column name""" + nav_group + + """column name""" + nav_order + + """column name""" + remote_entry_url + + """column name""" + remote_scope + + """column name""" + required_role + + """column name""" + slug + + """column name""" + title + + """column name""" + updated_at +} + +""" +input type for updating data in table "custom_pages" +""" +input custom_pages_set_input { + created_at: timestamptz + enabled: Boolean + exposed_module: String + icon: String + id: uuid + is_default: Boolean + nav_group: String + nav_order: Int + remote_entry_url: String + remote_scope: String + required_role: e_player_roles_enum + slug: String + title: String + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type custom_pages_stddev_fields { + nav_order: Float +} + +"""aggregate stddev_pop on columns""" +type custom_pages_stddev_pop_fields { + nav_order: Float +} + +"""aggregate stddev_samp on columns""" +type custom_pages_stddev_samp_fields { + nav_order: Float +} + +""" +Streaming cursor of the table "custom_pages" +""" +input custom_pages_stream_cursor_input { + """Stream column input with initial value""" + initial_value: custom_pages_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input custom_pages_stream_cursor_value_input { + created_at: timestamptz + enabled: Boolean + exposed_module: String + icon: String + id: uuid + is_default: Boolean + nav_group: String + nav_order: Int + remote_entry_url: String + remote_scope: String + required_role: e_player_roles_enum + slug: String + title: String + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type custom_pages_sum_fields { + nav_order: Int +} + +""" +update columns of table "custom_pages" +""" +enum custom_pages_update_column { + """column name""" + created_at + + """column name""" + enabled + + """column name""" + exposed_module + + """column name""" + icon + + """column name""" + id + + """column name""" + is_default + + """column name""" + nav_group + + """column name""" + nav_order + + """column name""" + remote_entry_url + + """column name""" + remote_scope + + """column name""" + required_role + + """column name""" + slug + + """column name""" + title + + """column name""" + updated_at +} + +input custom_pages_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: custom_pages_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: custom_pages_set_input + + """filter the rows which have to be updated""" + where: custom_pages_bool_exp! +} + +"""aggregate var_pop on columns""" +type custom_pages_var_pop_fields { + nav_order: Float +} + +"""aggregate var_samp on columns""" +type custom_pages_var_samp_fields { + nav_order: Float +} + +"""aggregate variance on columns""" +type custom_pages_variance_fields { + nav_order: Float +} + """ columns and relationships of "db_backups" """ @@ -11633,6 +12015,233 @@ input e_timeout_settings_updates { where: e_timeout_settings_bool_exp! } +""" +columns and relationships of "e_tournament_categories" +""" +type e_tournament_categories { + description: String! + + """An array relationship""" + tournament_categories( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): [tournament_categories!]! + + """An aggregate relationship""" + tournament_categories_aggregate( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): tournament_categories_aggregate! + value: String! +} + +""" +aggregated selection of "e_tournament_categories" +""" +type e_tournament_categories_aggregate { + aggregate: e_tournament_categories_aggregate_fields + nodes: [e_tournament_categories!]! +} + +""" +aggregate fields of "e_tournament_categories" +""" +type e_tournament_categories_aggregate_fields { + count(columns: [e_tournament_categories_select_column!], distinct: Boolean): Int! + max: e_tournament_categories_max_fields + min: e_tournament_categories_min_fields +} + +""" +Boolean expression to filter rows from the table "e_tournament_categories". All fields are combined with a logical 'AND'. +""" +input e_tournament_categories_bool_exp { + _and: [e_tournament_categories_bool_exp!] + _not: e_tournament_categories_bool_exp + _or: [e_tournament_categories_bool_exp!] + description: String_comparison_exp + tournament_categories: tournament_categories_bool_exp + tournament_categories_aggregate: tournament_categories_aggregate_bool_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_tournament_categories" +""" +enum e_tournament_categories_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_tournament_categories_pkey +} + +enum e_tournament_categories_enum { + """LAN""" + LAN + + """League""" + League + + """Location Event""" + LocationEvent + + """Online Event""" + OnlineEvent +} + +""" +Boolean expression to compare columns of type "e_tournament_categories_enum". All fields are combined with logical 'AND'. +""" +input e_tournament_categories_enum_comparison_exp { + _eq: e_tournament_categories_enum + _in: [e_tournament_categories_enum!] + _is_null: Boolean + _neq: e_tournament_categories_enum + _nin: [e_tournament_categories_enum!] +} + +""" +input type for inserting data into table "e_tournament_categories" +""" +input e_tournament_categories_insert_input { + description: String + tournament_categories: tournament_categories_arr_rel_insert_input + value: String +} + +"""aggregate max on columns""" +type e_tournament_categories_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_tournament_categories_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_tournament_categories" +""" +type e_tournament_categories_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_tournament_categories!]! +} + +""" +input type for inserting object relation for remote table "e_tournament_categories" +""" +input e_tournament_categories_obj_rel_insert_input { + data: e_tournament_categories_insert_input! + + """upsert condition""" + on_conflict: e_tournament_categories_on_conflict +} + +""" +on_conflict condition type for table "e_tournament_categories" +""" +input e_tournament_categories_on_conflict { + constraint: e_tournament_categories_constraint! + update_columns: [e_tournament_categories_update_column!]! = [] + where: e_tournament_categories_bool_exp +} + +"""Ordering options when selecting data from "e_tournament_categories".""" +input e_tournament_categories_order_by { + description: order_by + tournament_categories_aggregate: tournament_categories_aggregate_order_by + value: order_by +} + +"""primary key columns input for table: e_tournament_categories""" +input e_tournament_categories_pk_columns_input { + value: String! +} + +""" +select columns of table "e_tournament_categories" +""" +enum e_tournament_categories_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_tournament_categories" +""" +input e_tournament_categories_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_tournament_categories" +""" +input e_tournament_categories_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_tournament_categories_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_tournament_categories_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_tournament_categories" +""" +enum e_tournament_categories_update_column { + """column name""" + description + + """column name""" + value +} + +input e_tournament_categories_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_categories_set_input + + """filter the rows which have to be updated""" + where: e_tournament_categories_bool_exp! +} + """ columns and relationships of "e_tournament_stage_types" """ @@ -30070,6 +30679,7 @@ type match_options { check_in_setting: e_check_in_settings_enum! coaches: Boolean! default_models: Boolean + halftime_pausematch: Boolean! """ A computed field, executes function "has_active_matches" @@ -30128,6 +30738,7 @@ type match_options { ready_setting: e_ready_settings_enum! region_veto: Boolean! regions: [String!] + round_restart_delay: Int tech_timeout_setting: e_timeout_settings_enum! timeout_setting: e_timeout_settings_enum! @@ -30175,6 +30786,7 @@ type match_options_avg_fields { live_match_timeout: Float mr: Float number_of_substitutes: Float + round_restart_delay: Float tv_delay: Float } @@ -30191,6 +30803,7 @@ input match_options_bool_exp { check_in_setting: e_check_in_settings_enum_comparison_exp coaches: Boolean_comparison_exp default_models: Boolean_comparison_exp + halftime_pausematch: Boolean_comparison_exp has_active_matches: Boolean_comparison_exp id: uuid_comparison_exp invite_code: String_comparison_exp @@ -30209,6 +30822,7 @@ input match_options_bool_exp { ready_setting: e_ready_settings_enum_comparison_exp region_veto: Boolean_comparison_exp regions: String_array_comparison_exp + round_restart_delay: Int_comparison_exp tech_timeout_setting: e_timeout_settings_enum_comparison_exp timeout_setting: e_timeout_settings_enum_comparison_exp tournament: tournaments_bool_exp @@ -30237,6 +30851,7 @@ input match_options_inc_input { live_match_timeout: Int mr: Int number_of_substitutes: Int + round_restart_delay: Int tv_delay: Int } @@ -30250,6 +30865,7 @@ input match_options_insert_input { check_in_setting: e_check_in_settings_enum coaches: Boolean default_models: Boolean + halftime_pausematch: Boolean id: uuid invite_code: String knife_round: Boolean @@ -30266,6 +30882,7 @@ input match_options_insert_input { ready_setting: e_ready_settings_enum region_veto: Boolean regions: [String!] + round_restart_delay: Int tech_timeout_setting: e_timeout_settings_enum timeout_setting: e_timeout_settings_enum tournament: tournaments_obj_rel_insert_input @@ -30286,6 +30903,7 @@ type match_options_max_fields { mr: Int number_of_substitutes: Int regions: [String!] + round_restart_delay: Int tv_delay: Int } @@ -30300,6 +30918,7 @@ type match_options_min_fields { mr: Int number_of_substitutes: Int regions: [String!] + round_restart_delay: Int tv_delay: Int } @@ -30341,6 +30960,7 @@ input match_options_order_by { check_in_setting: order_by coaches: order_by default_models: order_by + halftime_pausematch: order_by has_active_matches: order_by id: order_by invite_code: order_by @@ -30358,6 +30978,7 @@ input match_options_order_by { ready_setting: order_by region_veto: order_by regions: order_by + round_restart_delay: order_by tech_timeout_setting: order_by timeout_setting: order_by tournament: tournaments_order_by @@ -30394,6 +31015,9 @@ enum match_options_select_column { """column name""" default_models + """column name""" + halftime_pausematch + """column name""" id @@ -30436,6 +31060,9 @@ enum match_options_select_column { """column name""" regions + """column name""" + round_restart_delay + """column name""" tech_timeout_setting @@ -30459,6 +31086,7 @@ input match_options_set_input { check_in_setting: e_check_in_settings_enum coaches: Boolean default_models: Boolean + halftime_pausematch: Boolean id: uuid invite_code: String knife_round: Boolean @@ -30473,6 +31101,7 @@ input match_options_set_input { ready_setting: e_ready_settings_enum region_veto: Boolean regions: [String!] + round_restart_delay: Int tech_timeout_setting: e_timeout_settings_enum timeout_setting: e_timeout_settings_enum tv_delay: Int @@ -30486,6 +31115,7 @@ type match_options_stddev_fields { live_match_timeout: Float mr: Float number_of_substitutes: Float + round_restart_delay: Float tv_delay: Float } @@ -30496,6 +31126,7 @@ type match_options_stddev_pop_fields { live_match_timeout: Float mr: Float number_of_substitutes: Float + round_restart_delay: Float tv_delay: Float } @@ -30506,6 +31137,7 @@ type match_options_stddev_samp_fields { live_match_timeout: Float mr: Float number_of_substitutes: Float + round_restart_delay: Float tv_delay: Float } @@ -30528,6 +31160,7 @@ input match_options_stream_cursor_value_input { check_in_setting: e_check_in_settings_enum coaches: Boolean default_models: Boolean + halftime_pausematch: Boolean id: uuid invite_code: String knife_round: Boolean @@ -30542,6 +31175,7 @@ input match_options_stream_cursor_value_input { ready_setting: e_ready_settings_enum region_veto: Boolean regions: [String!] + round_restart_delay: Int tech_timeout_setting: e_timeout_settings_enum timeout_setting: e_timeout_settings_enum tv_delay: Int @@ -30555,6 +31189,7 @@ type match_options_sum_fields { live_match_timeout: Int mr: Int number_of_substitutes: Int + round_restart_delay: Int tv_delay: Int } @@ -30580,6 +31215,9 @@ enum match_options_update_column { """column name""" default_models + """column name""" + halftime_pausematch + """column name""" id @@ -30622,6 +31260,9 @@ enum match_options_update_column { """column name""" regions + """column name""" + round_restart_delay + """column name""" tech_timeout_setting @@ -30653,6 +31294,7 @@ type match_options_var_pop_fields { live_match_timeout: Float mr: Float number_of_substitutes: Float + round_restart_delay: Float tv_delay: Float } @@ -30663,6 +31305,7 @@ type match_options_var_samp_fields { live_match_timeout: Float mr: Float number_of_substitutes: Float + round_restart_delay: Float tv_delay: Float } @@ -30673,6 +31316,7 @@ type match_options_variance_fields { live_match_timeout: Float mr: Float number_of_substitutes: Float + round_restart_delay: Float tv_delay: Float } @@ -33924,6 +34568,19 @@ type mutation_root { """ delete_clip_render_jobs_by_pk(id: uuid!): clip_render_jobs + """ + delete data from the table: "custom_pages" + """ + delete_custom_pages( + """filter the rows which have to be deleted""" + where: custom_pages_bool_exp! + ): custom_pages_mutation_response + + """ + delete single row from the table: "custom_pages" + """ + delete_custom_pages_by_pk(id: uuid!): custom_pages + """ delete data from the table: "db_backups" """ @@ -34444,6 +35101,19 @@ type mutation_root { """ delete_e_timeout_settings_by_pk(value: String!): e_timeout_settings + """ + delete data from the table: "e_tournament_categories" + """ + delete_e_tournament_categories( + """filter the rows which have to be deleted""" + where: e_tournament_categories_bool_exp! + ): e_tournament_categories_mutation_response + + """ + delete single row from the table: "e_tournament_categories" + """ + delete_e_tournament_categories_by_pk(value: String!): e_tournament_categories + """ delete data from the table: "e_tournament_stage_types" """ @@ -35599,6 +36269,32 @@ type mutation_root { """ delete_tournament_brackets_by_pk(id: uuid!): tournament_brackets + """ + delete data from the table: "tournament_categories" + """ + delete_tournament_categories( + """filter the rows which have to be deleted""" + where: tournament_categories_bool_exp! + ): tournament_categories_mutation_response + + """ + delete single row from the table: "tournament_categories" + """ + delete_tournament_categories_by_pk(category: e_tournament_categories_enum!, tournament_id: uuid!): tournament_categories + + """ + delete data from the table: "tournament_organizer_teams" + """ + delete_tournament_organizer_teams( + """filter the rows which have to be deleted""" + where: tournament_organizer_teams_bool_exp! + ): tournament_organizer_teams_mutation_response + + """ + delete single row from the table: "tournament_organizer_teams" + """ + delete_tournament_organizer_teams_by_pk(team_id: uuid!, tournament_id: uuid!): tournament_organizer_teams + """ delete data from the table: "tournament_organizers" """ @@ -35612,6 +36308,19 @@ type mutation_root { """ delete_tournament_organizers_by_pk(steam_id: bigint!, tournament_id: uuid!): tournament_organizers + """ + delete data from the table: "tournament_prizes" + """ + delete_tournament_prizes( + """filter the rows which have to be deleted""" + where: tournament_prizes_bool_exp! + ): tournament_prizes_mutation_response + + """ + delete single row from the table: "tournament_prizes" + """ + delete_tournament_prizes_by_pk(id: uuid!): tournament_prizes + """ delete data from the table: "tournament_stage_windows" """ @@ -35857,6 +36566,28 @@ type mutation_root { on_conflict: clip_render_jobs_on_conflict ): clip_render_jobs + """ + insert data into the table: "custom_pages" + """ + insert_custom_pages( + """the rows to be inserted""" + objects: [custom_pages_insert_input!]! + + """upsert condition""" + on_conflict: custom_pages_on_conflict + ): custom_pages_mutation_response + + """ + insert a single row into the table: "custom_pages" + """ + insert_custom_pages_one( + """the row to be inserted""" + object: custom_pages_insert_input! + + """upsert condition""" + on_conflict: custom_pages_on_conflict + ): custom_pages + """ insert data into the table: "db_backups" """ @@ -36737,6 +37468,28 @@ type mutation_root { on_conflict: e_timeout_settings_on_conflict ): e_timeout_settings + """ + insert data into the table: "e_tournament_categories" + """ + insert_e_tournament_categories( + """the rows to be inserted""" + objects: [e_tournament_categories_insert_input!]! + + """upsert condition""" + on_conflict: e_tournament_categories_on_conflict + ): e_tournament_categories_mutation_response + + """ + insert a single row into the table: "e_tournament_categories" + """ + insert_e_tournament_categories_one( + """the row to be inserted""" + object: e_tournament_categories_insert_input! + + """upsert condition""" + on_conflict: e_tournament_categories_on_conflict + ): e_tournament_categories + """ insert data into the table: "e_tournament_stage_types" """ @@ -38699,6 +39452,50 @@ type mutation_root { on_conflict: tournament_brackets_on_conflict ): tournament_brackets + """ + insert data into the table: "tournament_categories" + """ + insert_tournament_categories( + """the rows to be inserted""" + objects: [tournament_categories_insert_input!]! + + """upsert condition""" + on_conflict: tournament_categories_on_conflict + ): tournament_categories_mutation_response + + """ + insert a single row into the table: "tournament_categories" + """ + insert_tournament_categories_one( + """the row to be inserted""" + object: tournament_categories_insert_input! + + """upsert condition""" + on_conflict: tournament_categories_on_conflict + ): tournament_categories + + """ + insert data into the table: "tournament_organizer_teams" + """ + insert_tournament_organizer_teams( + """the rows to be inserted""" + objects: [tournament_organizer_teams_insert_input!]! + + """upsert condition""" + on_conflict: tournament_organizer_teams_on_conflict + ): tournament_organizer_teams_mutation_response + + """ + insert a single row into the table: "tournament_organizer_teams" + """ + insert_tournament_organizer_teams_one( + """the row to be inserted""" + object: tournament_organizer_teams_insert_input! + + """upsert condition""" + on_conflict: tournament_organizer_teams_on_conflict + ): tournament_organizer_teams + """ insert data into the table: "tournament_organizers" """ @@ -38721,6 +39518,28 @@ type mutation_root { on_conflict: tournament_organizers_on_conflict ): tournament_organizers + """ + insert data into the table: "tournament_prizes" + """ + insert_tournament_prizes( + """the rows to be inserted""" + objects: [tournament_prizes_insert_input!]! + + """upsert condition""" + on_conflict: tournament_prizes_on_conflict + ): tournament_prizes_mutation_response + + """ + insert a single row into the table: "tournament_prizes" + """ + insert_tournament_prizes_one( + """the row to be inserted""" + object: tournament_prizes_insert_input! + + """upsert condition""" + on_conflict: tournament_prizes_on_conflict + ): tournament_prizes + """ insert data into the table: "tournament_stage_windows" """ @@ -39457,6 +40276,40 @@ type mutation_root { updates: [clip_render_jobs_updates!]! ): [clip_render_jobs_mutation_response] + """ + update data of the table: "custom_pages" + """ + update_custom_pages( + """increments the numeric columns with given value of the filtered values""" + _inc: custom_pages_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: custom_pages_set_input + + """filter the rows which have to be updated""" + where: custom_pages_bool_exp! + ): custom_pages_mutation_response + + """ + update single row of the table: "custom_pages" + """ + update_custom_pages_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: custom_pages_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: custom_pages_set_input + pk_columns: custom_pages_pk_columns_input! + ): custom_pages + + """ + update multiples rows of table: "custom_pages" + """ + update_custom_pages_many( + """updates to execute, in order""" + updates: [custom_pages_updates!]! + ): [custom_pages_mutation_response] + """ update data of the table: "db_backups" """ @@ -40601,6 +41454,34 @@ type mutation_root { updates: [e_timeout_settings_updates!]! ): [e_timeout_settings_mutation_response] + """ + update data of the table: "e_tournament_categories" + """ + update_e_tournament_categories( + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_categories_set_input + + """filter the rows which have to be updated""" + where: e_tournament_categories_bool_exp! + ): e_tournament_categories_mutation_response + + """ + update single row of the table: "e_tournament_categories" + """ + update_e_tournament_categories_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_tournament_categories_set_input + pk_columns: e_tournament_categories_pk_columns_input! + ): e_tournament_categories + + """ + update multiples rows of table: "e_tournament_categories" + """ + update_e_tournament_categories_many( + """updates to execute, in order""" + updates: [e_tournament_categories_updates!]! + ): [e_tournament_categories_mutation_response] + """ update data of the table: "e_tournament_stage_types" """ @@ -43898,6 +44779,62 @@ type mutation_root { updates: [tournament_brackets_updates!]! ): [tournament_brackets_mutation_response] + """ + update data of the table: "tournament_categories" + """ + update_tournament_categories( + """sets the columns of the filtered rows to the given values""" + _set: tournament_categories_set_input + + """filter the rows which have to be updated""" + where: tournament_categories_bool_exp! + ): tournament_categories_mutation_response + + """ + update single row of the table: "tournament_categories" + """ + update_tournament_categories_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: tournament_categories_set_input + pk_columns: tournament_categories_pk_columns_input! + ): tournament_categories + + """ + update multiples rows of table: "tournament_categories" + """ + update_tournament_categories_many( + """updates to execute, in order""" + updates: [tournament_categories_updates!]! + ): [tournament_categories_mutation_response] + + """ + update data of the table: "tournament_organizer_teams" + """ + update_tournament_organizer_teams( + """sets the columns of the filtered rows to the given values""" + _set: tournament_organizer_teams_set_input + + """filter the rows which have to be updated""" + where: tournament_organizer_teams_bool_exp! + ): tournament_organizer_teams_mutation_response + + """ + update single row of the table: "tournament_organizer_teams" + """ + update_tournament_organizer_teams_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: tournament_organizer_teams_set_input + pk_columns: tournament_organizer_teams_pk_columns_input! + ): tournament_organizer_teams + + """ + update multiples rows of table: "tournament_organizer_teams" + """ + update_tournament_organizer_teams_many( + """updates to execute, in order""" + updates: [tournament_organizer_teams_updates!]! + ): [tournament_organizer_teams_mutation_response] + """ update data of the table: "tournament_organizers" """ @@ -43932,6 +44869,40 @@ type mutation_root { updates: [tournament_organizers_updates!]! ): [tournament_organizers_mutation_response] + """ + update data of the table: "tournament_prizes" + """ + update_tournament_prizes( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_prizes_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_prizes_set_input + + """filter the rows which have to be updated""" + where: tournament_prizes_bool_exp! + ): tournament_prizes_mutation_response + + """ + update single row of the table: "tournament_prizes" + """ + update_tournament_prizes_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_prizes_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_prizes_set_input + pk_columns: tournament_prizes_pk_columns_input! + ): tournament_prizes + + """ + update multiples rows of table: "tournament_prizes" + """ + update_tournament_prizes_many( + """updates to execute, in order""" + updates: [tournament_prizes_updates!]! + ): [tournament_prizes_mutation_response] + """ update data of the table: "tournament_stage_windows" """ @@ -66098,6 +67069,49 @@ type query_root { fetch data from the table: "clip_render_jobs" using primary key columns """ clip_render_jobs_by_pk(id: uuid!): clip_render_jobs + + """ + fetch data from the table: "custom_pages" + """ + custom_pages( + """distinct select on columns""" + distinct_on: [custom_pages_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: [custom_pages_order_by!] + + """filter the rows returned""" + where: custom_pages_bool_exp + ): [custom_pages!]! + + """ + fetch aggregated fields from the table: "custom_pages" + """ + custom_pages_aggregate( + """distinct select on columns""" + distinct_on: [custom_pages_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: [custom_pages_order_by!] + + """filter the rows returned""" + where: custom_pages_bool_exp + ): custom_pages_aggregate! + + """fetch data from the table: "custom_pages" using primary key columns""" + custom_pages_by_pk(id: uuid!): custom_pages dbStats: [DbStats] """ @@ -67870,6 +68884,51 @@ type query_root { """ e_timeout_settings_by_pk(value: String!): e_timeout_settings + """ + fetch data from the table: "e_tournament_categories" + """ + e_tournament_categories( + """distinct select on columns""" + distinct_on: [e_tournament_categories_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_tournament_categories_order_by!] + + """filter the rows returned""" + where: e_tournament_categories_bool_exp + ): [e_tournament_categories!]! + + """ + fetch aggregated fields from the table: "e_tournament_categories" + """ + e_tournament_categories_aggregate( + """distinct select on columns""" + distinct_on: [e_tournament_categories_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_tournament_categories_order_by!] + + """filter the rows returned""" + where: e_tournament_categories_bool_exp + ): e_tournament_categories_aggregate! + + """ + fetch data from the table: "e_tournament_categories" using primary key columns + """ + e_tournament_categories_by_pk(value: String!): e_tournament_categories + """ fetch data from the table: "e_tournament_stage_types" """ @@ -72226,6 +73285,92 @@ type query_root { """ tournament_brackets_by_pk(id: uuid!): tournament_brackets + """An array relationship""" + tournament_categories( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): [tournament_categories!]! + + """An aggregate relationship""" + tournament_categories_aggregate( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): tournament_categories_aggregate! + + """ + fetch data from the table: "tournament_categories" using primary key columns + """ + tournament_categories_by_pk(category: e_tournament_categories_enum!, tournament_id: uuid!): tournament_categories + + """ + fetch data from the table: "tournament_organizer_teams" + """ + tournament_organizer_teams( + """distinct select on columns""" + distinct_on: [tournament_organizer_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizer_teams_order_by!] + + """filter the rows returned""" + where: tournament_organizer_teams_bool_exp + ): [tournament_organizer_teams!]! + + """ + fetch aggregated fields from the table: "tournament_organizer_teams" + """ + tournament_organizer_teams_aggregate( + """distinct select on columns""" + distinct_on: [tournament_organizer_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizer_teams_order_by!] + + """filter the rows returned""" + where: tournament_organizer_teams_bool_exp + ): tournament_organizer_teams_aggregate! + + """ + fetch data from the table: "tournament_organizer_teams" using primary key columns + """ + tournament_organizer_teams_by_pk(team_id: uuid!, tournament_id: uuid!): tournament_organizer_teams + """An array relationship""" tournament_organizers( """distinct select on columns""" @@ -72267,6 +73412,51 @@ type query_root { """ tournament_organizers_by_pk(steam_id: bigint!, tournament_id: uuid!): tournament_organizers + """ + fetch data from the table: "tournament_prizes" + """ + tournament_prizes( + """distinct select on columns""" + distinct_on: [tournament_prizes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_prizes_order_by!] + + """filter the rows returned""" + where: tournament_prizes_bool_exp + ): [tournament_prizes!]! + + """ + fetch aggregated fields from the table: "tournament_prizes" + """ + tournament_prizes_aggregate( + """distinct select on columns""" + distinct_on: [tournament_prizes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_prizes_order_by!] + + """filter the rows returned""" + where: tournament_prizes_bool_exp + ): tournament_prizes_aggregate! + + """ + fetch data from the table: "tournament_prizes" using primary key columns + """ + tournament_prizes_by_pk(id: uuid!): tournament_prizes + """ fetch data from the table: "tournament_stage_windows" """ @@ -76556,6 +77746,63 @@ type subscription_root { where: clip_render_jobs_bool_exp ): [clip_render_jobs!]! + """ + fetch data from the table: "custom_pages" + """ + custom_pages( + """distinct select on columns""" + distinct_on: [custom_pages_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: [custom_pages_order_by!] + + """filter the rows returned""" + where: custom_pages_bool_exp + ): [custom_pages!]! + + """ + fetch aggregated fields from the table: "custom_pages" + """ + custom_pages_aggregate( + """distinct select on columns""" + distinct_on: [custom_pages_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: [custom_pages_order_by!] + + """filter the rows returned""" + where: custom_pages_bool_exp + ): custom_pages_aggregate! + + """fetch data from the table: "custom_pages" using primary key columns""" + custom_pages_by_pk(id: uuid!): custom_pages + + """ + fetch data from the table in a streaming manner: "custom_pages" + """ + custom_pages_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [custom_pages_stream_cursor_input]! + + """filter the rows returned""" + where: custom_pages_bool_exp + ): [custom_pages!]! + """ fetch data from the table: "db_backups" """ @@ -78886,6 +80133,65 @@ type subscription_root { where: e_timeout_settings_bool_exp ): [e_timeout_settings!]! + """ + fetch data from the table: "e_tournament_categories" + """ + e_tournament_categories( + """distinct select on columns""" + distinct_on: [e_tournament_categories_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_tournament_categories_order_by!] + + """filter the rows returned""" + where: e_tournament_categories_bool_exp + ): [e_tournament_categories!]! + + """ + fetch aggregated fields from the table: "e_tournament_categories" + """ + e_tournament_categories_aggregate( + """distinct select on columns""" + distinct_on: [e_tournament_categories_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_tournament_categories_order_by!] + + """filter the rows returned""" + where: e_tournament_categories_bool_exp + ): e_tournament_categories_aggregate! + + """ + fetch data from the table: "e_tournament_categories" using primary key columns + """ + e_tournament_categories_by_pk(value: String!): e_tournament_categories + + """ + fetch data from the table in a streaming manner: "e_tournament_categories" + """ + e_tournament_categories_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_tournament_categories_stream_cursor_input]! + + """filter the rows returned""" + where: e_tournament_categories_bool_exp + ): [e_tournament_categories!]! + """ fetch data from the table: "e_tournament_stage_types" """ @@ -84497,6 +85803,120 @@ type subscription_root { where: tournament_brackets_bool_exp ): [tournament_brackets!]! + """An array relationship""" + tournament_categories( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): [tournament_categories!]! + + """An aggregate relationship""" + tournament_categories_aggregate( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): tournament_categories_aggregate! + + """ + fetch data from the table: "tournament_categories" using primary key columns + """ + tournament_categories_by_pk(category: e_tournament_categories_enum!, tournament_id: uuid!): tournament_categories + + """ + fetch data from the table in a streaming manner: "tournament_categories" + """ + tournament_categories_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_categories_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): [tournament_categories!]! + + """ + fetch data from the table: "tournament_organizer_teams" + """ + tournament_organizer_teams( + """distinct select on columns""" + distinct_on: [tournament_organizer_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizer_teams_order_by!] + + """filter the rows returned""" + where: tournament_organizer_teams_bool_exp + ): [tournament_organizer_teams!]! + + """ + fetch aggregated fields from the table: "tournament_organizer_teams" + """ + tournament_organizer_teams_aggregate( + """distinct select on columns""" + distinct_on: [tournament_organizer_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizer_teams_order_by!] + + """filter the rows returned""" + where: tournament_organizer_teams_bool_exp + ): tournament_organizer_teams_aggregate! + + """ + fetch data from the table: "tournament_organizer_teams" using primary key columns + """ + tournament_organizer_teams_by_pk(team_id: uuid!, tournament_id: uuid!): tournament_organizer_teams + + """ + fetch data from the table in a streaming manner: "tournament_organizer_teams" + """ + tournament_organizer_teams_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_organizer_teams_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_organizer_teams_bool_exp + ): [tournament_organizer_teams!]! + """An array relationship""" tournament_organizers( """distinct select on columns""" @@ -84552,6 +85972,65 @@ type subscription_root { where: tournament_organizers_bool_exp ): [tournament_organizers!]! + """ + fetch data from the table: "tournament_prizes" + """ + tournament_prizes( + """distinct select on columns""" + distinct_on: [tournament_prizes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_prizes_order_by!] + + """filter the rows returned""" + where: tournament_prizes_bool_exp + ): [tournament_prizes!]! + + """ + fetch aggregated fields from the table: "tournament_prizes" + """ + tournament_prizes_aggregate( + """distinct select on columns""" + distinct_on: [tournament_prizes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_prizes_order_by!] + + """filter the rows returned""" + where: tournament_prizes_bool_exp + ): tournament_prizes_aggregate! + + """ + fetch data from the table: "tournament_prizes" using primary key columns + """ + tournament_prizes_by_pk(id: uuid!): tournament_prizes + + """ + fetch data from the table in a streaming manner: "tournament_prizes" + """ + tournament_prizes_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [tournament_prizes_stream_cursor_input]! + + """filter the rows returned""" + where: tournament_prizes_bool_exp + ): [tournament_prizes!]! + """ fetch data from the table: "tournament_stage_windows" """ @@ -90344,6 +91823,7 @@ type teams { """filter the rows returned""" where: team_invites_bool_exp ): team_invites_aggregate! + is_organization: Boolean! """An array relationship""" match_lineups( @@ -90539,9 +92019,25 @@ type teams_aggregate { } input teams_aggregate_bool_exp { + bool_and: teams_aggregate_bool_exp_bool_and + bool_or: teams_aggregate_bool_exp_bool_or count: teams_aggregate_bool_exp_count } +input teams_aggregate_bool_exp_bool_and { + arguments: teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: teams_bool_exp + predicate: Boolean_comparison_exp! +} + +input teams_aggregate_bool_exp_bool_or { + arguments: teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: teams_bool_exp + predicate: Boolean_comparison_exp! +} + input teams_aggregate_bool_exp_count { arguments: [teams_select_column!] distinct: Boolean @@ -90624,6 +92120,7 @@ input teams_bool_exp { id: uuid_comparison_exp invites: team_invites_bool_exp invites_aggregate: team_invites_aggregate_bool_exp + is_organization: Boolean_comparison_exp match_lineups: match_lineups_bool_exp match_lineups_aggregate: match_lineups_aggregate_bool_exp matches: matches_bool_exp @@ -90675,6 +92172,7 @@ input teams_insert_input { captain_steam_id: bigint id: uuid invites: team_invites_arr_rel_insert_input + is_organization: Boolean match_lineups: match_lineups_arr_rel_insert_input name: String owner: players_obj_rel_insert_input @@ -90783,6 +92281,7 @@ input teams_order_by { captain_steam_id: order_by id: order_by invites_aggregate: team_invites_aggregate_order_by + is_organization: order_by match_lineups_aggregate: match_lineups_aggregate_order_by matches_aggregate: matches_aggregate_order_by name: order_by @@ -90816,6 +92315,9 @@ enum teams_select_column { """column name""" id + """column name""" + is_organization + """column name""" name @@ -90826,6 +92328,22 @@ enum teams_select_column { short_name } +""" +select "teams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "teams" +""" +enum teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + is_organization +} + +""" +select "teams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "teams" +""" +enum teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + is_organization +} + """ input type for updating data in table "teams" """ @@ -90833,6 +92351,7 @@ input teams_set_input { avatar_url: String captain_steam_id: bigint id: uuid + is_organization: Boolean name: String owner_steam_id: bigint short_name: String @@ -90896,6 +92415,7 @@ input teams_stream_cursor_value_input { avatar_url: String captain_steam_id: bigint id: uuid + is_organization: Boolean name: String owner_steam_id: bigint short_name: String @@ -90928,6 +92448,9 @@ enum teams_update_column { """column name""" id + """column name""" + is_organization + """column name""" name @@ -91819,10 +93342,450 @@ input tournament_brackets_variance_order_by { team_2_seed: order_by } +""" +columns and relationships of "tournament_categories" +""" +type tournament_categories { + category: e_tournament_categories_enum! + + """An object relationship""" + e_tournament_category: e_tournament_categories! + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! +} + +""" +aggregated selection of "tournament_categories" +""" +type tournament_categories_aggregate { + aggregate: tournament_categories_aggregate_fields + nodes: [tournament_categories!]! +} + +input tournament_categories_aggregate_bool_exp { + count: tournament_categories_aggregate_bool_exp_count +} + +input tournament_categories_aggregate_bool_exp_count { + arguments: [tournament_categories_select_column!] + distinct: Boolean + filter: tournament_categories_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_categories" +""" +type tournament_categories_aggregate_fields { + count(columns: [tournament_categories_select_column!], distinct: Boolean): Int! + max: tournament_categories_max_fields + min: tournament_categories_min_fields +} + +""" +order by aggregate values of table "tournament_categories" +""" +input tournament_categories_aggregate_order_by { + count: order_by + max: tournament_categories_max_order_by + min: tournament_categories_min_order_by +} + +""" +input type for inserting array relation for remote table "tournament_categories" +""" +input tournament_categories_arr_rel_insert_input { + data: [tournament_categories_insert_input!]! + + """upsert condition""" + on_conflict: tournament_categories_on_conflict +} + +""" +Boolean expression to filter rows from the table "tournament_categories". All fields are combined with a logical 'AND'. +""" +input tournament_categories_bool_exp { + _and: [tournament_categories_bool_exp!] + _not: tournament_categories_bool_exp + _or: [tournament_categories_bool_exp!] + category: e_tournament_categories_enum_comparison_exp + e_tournament_category: e_tournament_categories_bool_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_categories" +""" +enum tournament_categories_constraint { + """ + unique or primary key constraint on columns "tournament_id", "category" + """ + tournament_categories_pkey +} + +""" +input type for inserting data into table "tournament_categories" +""" +input tournament_categories_insert_input { + category: e_tournament_categories_enum + e_tournament_category: e_tournament_categories_obj_rel_insert_input + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type tournament_categories_max_fields { + tournament_id: uuid +} + +""" +order by max() on columns of table "tournament_categories" +""" +input tournament_categories_max_order_by { + tournament_id: order_by +} + +"""aggregate min on columns""" +type tournament_categories_min_fields { + tournament_id: uuid +} + +""" +order by min() on columns of table "tournament_categories" +""" +input tournament_categories_min_order_by { + tournament_id: order_by +} + +""" +response of any mutation on the table "tournament_categories" +""" +type tournament_categories_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_categories!]! +} + +""" +on_conflict condition type for table "tournament_categories" +""" +input tournament_categories_on_conflict { + constraint: tournament_categories_constraint! + update_columns: [tournament_categories_update_column!]! = [] + where: tournament_categories_bool_exp +} + +"""Ordering options when selecting data from "tournament_categories".""" +input tournament_categories_order_by { + category: order_by + e_tournament_category: e_tournament_categories_order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +"""primary key columns input for table: tournament_categories""" +input tournament_categories_pk_columns_input { + category: e_tournament_categories_enum! + tournament_id: uuid! +} + +""" +select columns of table "tournament_categories" +""" +enum tournament_categories_select_column { + """column name""" + category + + """column name""" + tournament_id +} + +""" +input type for updating data in table "tournament_categories" +""" +input tournament_categories_set_input { + category: e_tournament_categories_enum + tournament_id: uuid +} + +""" +Streaming cursor of the table "tournament_categories" +""" +input tournament_categories_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_categories_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_categories_stream_cursor_value_input { + category: e_tournament_categories_enum + tournament_id: uuid +} + +""" +update columns of table "tournament_categories" +""" +enum tournament_categories_update_column { + """column name""" + category + + """column name""" + tournament_id +} + +input tournament_categories_updates { + """sets the columns of the filtered rows to the given values""" + _set: tournament_categories_set_input + + """filter the rows which have to be updated""" + where: tournament_categories_bool_exp! +} + +""" +columns and relationships of "tournament_organizer_teams" +""" +type tournament_organizer_teams { + created_at: timestamptz! + + """An object relationship""" + team: teams! + team_id: uuid! + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! +} + +""" +aggregated selection of "tournament_organizer_teams" +""" +type tournament_organizer_teams_aggregate { + aggregate: tournament_organizer_teams_aggregate_fields + nodes: [tournament_organizer_teams!]! +} + +input tournament_organizer_teams_aggregate_bool_exp { + count: tournament_organizer_teams_aggregate_bool_exp_count +} + +input tournament_organizer_teams_aggregate_bool_exp_count { + arguments: [tournament_organizer_teams_select_column!] + distinct: Boolean + filter: tournament_organizer_teams_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_organizer_teams" +""" +type tournament_organizer_teams_aggregate_fields { + count(columns: [tournament_organizer_teams_select_column!], distinct: Boolean): Int! + max: tournament_organizer_teams_max_fields + min: tournament_organizer_teams_min_fields +} + +""" +order by aggregate values of table "tournament_organizer_teams" +""" +input tournament_organizer_teams_aggregate_order_by { + count: order_by + max: tournament_organizer_teams_max_order_by + min: tournament_organizer_teams_min_order_by +} + +""" +input type for inserting array relation for remote table "tournament_organizer_teams" +""" +input tournament_organizer_teams_arr_rel_insert_input { + data: [tournament_organizer_teams_insert_input!]! + + """upsert condition""" + on_conflict: tournament_organizer_teams_on_conflict +} + +""" +Boolean expression to filter rows from the table "tournament_organizer_teams". All fields are combined with a logical 'AND'. +""" +input tournament_organizer_teams_bool_exp { + _and: [tournament_organizer_teams_bool_exp!] + _not: tournament_organizer_teams_bool_exp + _or: [tournament_organizer_teams_bool_exp!] + created_at: timestamptz_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_organizer_teams" +""" +enum tournament_organizer_teams_constraint { + """ + unique or primary key constraint on columns "tournament_id", "team_id" + """ + tournament_organizer_teams_pkey +} + +""" +input type for inserting data into table "tournament_organizer_teams" +""" +input tournament_organizer_teams_insert_input { + created_at: timestamptz + team: teams_obj_rel_insert_input + team_id: uuid + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type tournament_organizer_teams_max_fields { + created_at: timestamptz + team_id: uuid + tournament_id: uuid +} + +""" +order by max() on columns of table "tournament_organizer_teams" +""" +input tournament_organizer_teams_max_order_by { + created_at: order_by + team_id: order_by + tournament_id: order_by +} + +"""aggregate min on columns""" +type tournament_organizer_teams_min_fields { + created_at: timestamptz + team_id: uuid + tournament_id: uuid +} + +""" +order by min() on columns of table "tournament_organizer_teams" +""" +input tournament_organizer_teams_min_order_by { + created_at: order_by + team_id: order_by + tournament_id: order_by +} + +""" +response of any mutation on the table "tournament_organizer_teams" +""" +type tournament_organizer_teams_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_organizer_teams!]! +} + +""" +on_conflict condition type for table "tournament_organizer_teams" +""" +input tournament_organizer_teams_on_conflict { + constraint: tournament_organizer_teams_constraint! + update_columns: [tournament_organizer_teams_update_column!]! = [] + where: tournament_organizer_teams_bool_exp +} + +""" +Ordering options when selecting data from "tournament_organizer_teams". +""" +input tournament_organizer_teams_order_by { + created_at: order_by + team: teams_order_by + team_id: order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +"""primary key columns input for table: tournament_organizer_teams""" +input tournament_organizer_teams_pk_columns_input { + team_id: uuid! + tournament_id: uuid! +} + +""" +select columns of table "tournament_organizer_teams" +""" +enum tournament_organizer_teams_select_column { + """column name""" + created_at + + """column name""" + team_id + + """column name""" + tournament_id +} + +""" +input type for updating data in table "tournament_organizer_teams" +""" +input tournament_organizer_teams_set_input { + created_at: timestamptz + team_id: uuid + tournament_id: uuid +} + +""" +Streaming cursor of the table "tournament_organizer_teams" +""" +input tournament_organizer_teams_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_organizer_teams_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_organizer_teams_stream_cursor_value_input { + created_at: timestamptz + team_id: uuid + tournament_id: uuid +} + +""" +update columns of table "tournament_organizer_teams" +""" +enum tournament_organizer_teams_update_column { + """column name""" + created_at + + """column name""" + team_id + + """column name""" + tournament_id +} + +input tournament_organizer_teams_updates { + """sets the columns of the filtered rows to the given values""" + _set: tournament_organizer_teams_set_input + + """filter the rows which have to be updated""" + where: tournament_organizer_teams_bool_exp! +} + """ columns and relationships of "tournament_organizers" """ type tournament_organizers { + """An object relationship""" + organization_team: teams + organization_team_id: uuid + """An object relationship""" organizer: players! steam_id: bigint! @@ -91914,6 +93877,8 @@ input tournament_organizers_bool_exp { _and: [tournament_organizers_bool_exp!] _not: tournament_organizers_bool_exp _or: [tournament_organizers_bool_exp!] + organization_team: teams_bool_exp + organization_team_id: uuid_comparison_exp organizer: players_bool_exp steam_id: bigint_comparison_exp tournament: tournaments_bool_exp @@ -91941,6 +93906,8 @@ input tournament_organizers_inc_input { input type for inserting data into table "tournament_organizers" """ input tournament_organizers_insert_input { + organization_team: teams_obj_rel_insert_input + organization_team_id: uuid organizer: players_obj_rel_insert_input steam_id: bigint tournament: tournaments_obj_rel_insert_input @@ -91949,6 +93916,7 @@ input tournament_organizers_insert_input { """aggregate max on columns""" type tournament_organizers_max_fields { + organization_team_id: uuid steam_id: bigint tournament_id: uuid } @@ -91957,12 +93925,14 @@ type tournament_organizers_max_fields { order by max() on columns of table "tournament_organizers" """ input tournament_organizers_max_order_by { + organization_team_id: order_by steam_id: order_by tournament_id: order_by } """aggregate min on columns""" type tournament_organizers_min_fields { + organization_team_id: uuid steam_id: bigint tournament_id: uuid } @@ -91971,6 +93941,7 @@ type tournament_organizers_min_fields { order by min() on columns of table "tournament_organizers" """ input tournament_organizers_min_order_by { + organization_team_id: order_by steam_id: order_by tournament_id: order_by } @@ -91997,6 +93968,8 @@ input tournament_organizers_on_conflict { """Ordering options when selecting data from "tournament_organizers".""" input tournament_organizers_order_by { + organization_team: teams_order_by + organization_team_id: order_by organizer: players_order_by steam_id: order_by tournament: tournaments_order_by @@ -92013,6 +93986,9 @@ input tournament_organizers_pk_columns_input { select columns of table "tournament_organizers" """ enum tournament_organizers_select_column { + """column name""" + organization_team_id + """column name""" steam_id @@ -92024,6 +94000,7 @@ enum tournament_organizers_select_column { input type for updating data in table "tournament_organizers" """ input tournament_organizers_set_input { + organization_team_id: uuid steam_id: bigint tournament_id: uuid } @@ -92077,6 +94054,7 @@ input tournament_organizers_stream_cursor_input { """Initial value of the column from where the streaming should start""" input tournament_organizers_stream_cursor_value_input { + organization_team_id: uuid steam_id: bigint tournament_id: uuid } @@ -92097,6 +94075,9 @@ input tournament_organizers_sum_order_by { update columns of table "tournament_organizers" """ enum tournament_organizers_update_column { + """column name""" + organization_team_id + """column name""" steam_id @@ -92151,6 +94132,396 @@ input tournament_organizers_variance_order_by { steam_id: order_by } +""" +columns and relationships of "tournament_prizes" +""" +type tournament_prizes { + created_at: timestamptz! + id: uuid! + order: Int! + place: String! + prize: String! + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! +} + +""" +aggregated selection of "tournament_prizes" +""" +type tournament_prizes_aggregate { + aggregate: tournament_prizes_aggregate_fields + nodes: [tournament_prizes!]! +} + +input tournament_prizes_aggregate_bool_exp { + count: tournament_prizes_aggregate_bool_exp_count +} + +input tournament_prizes_aggregate_bool_exp_count { + arguments: [tournament_prizes_select_column!] + distinct: Boolean + filter: tournament_prizes_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "tournament_prizes" +""" +type tournament_prizes_aggregate_fields { + avg: tournament_prizes_avg_fields + count(columns: [tournament_prizes_select_column!], distinct: Boolean): Int! + max: tournament_prizes_max_fields + min: tournament_prizes_min_fields + stddev: tournament_prizes_stddev_fields + stddev_pop: tournament_prizes_stddev_pop_fields + stddev_samp: tournament_prizes_stddev_samp_fields + sum: tournament_prizes_sum_fields + var_pop: tournament_prizes_var_pop_fields + var_samp: tournament_prizes_var_samp_fields + variance: tournament_prizes_variance_fields +} + +""" +order by aggregate values of table "tournament_prizes" +""" +input tournament_prizes_aggregate_order_by { + avg: tournament_prizes_avg_order_by + count: order_by + max: tournament_prizes_max_order_by + min: tournament_prizes_min_order_by + stddev: tournament_prizes_stddev_order_by + stddev_pop: tournament_prizes_stddev_pop_order_by + stddev_samp: tournament_prizes_stddev_samp_order_by + sum: tournament_prizes_sum_order_by + var_pop: tournament_prizes_var_pop_order_by + var_samp: tournament_prizes_var_samp_order_by + variance: tournament_prizes_variance_order_by +} + +""" +input type for inserting array relation for remote table "tournament_prizes" +""" +input tournament_prizes_arr_rel_insert_input { + data: [tournament_prizes_insert_input!]! + + """upsert condition""" + on_conflict: tournament_prizes_on_conflict +} + +"""aggregate avg on columns""" +type tournament_prizes_avg_fields { + order: Float +} + +""" +order by avg() on columns of table "tournament_prizes" +""" +input tournament_prizes_avg_order_by { + order: order_by +} + +""" +Boolean expression to filter rows from the table "tournament_prizes". All fields are combined with a logical 'AND'. +""" +input tournament_prizes_bool_exp { + _and: [tournament_prizes_bool_exp!] + _not: tournament_prizes_bool_exp + _or: [tournament_prizes_bool_exp!] + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + order: Int_comparison_exp + place: String_comparison_exp + prize: String_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "tournament_prizes" +""" +enum tournament_prizes_constraint { + """ + unique or primary key constraint on columns "id" + """ + tournament_prizes_pkey +} + +""" +input type for incrementing numeric columns in table "tournament_prizes" +""" +input tournament_prizes_inc_input { + order: Int +} + +""" +input type for inserting data into table "tournament_prizes" +""" +input tournament_prizes_insert_input { + created_at: timestamptz + id: uuid + order: Int + place: String + prize: String + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type tournament_prizes_max_fields { + created_at: timestamptz + id: uuid + order: Int + place: String + prize: String + tournament_id: uuid +} + +""" +order by max() on columns of table "tournament_prizes" +""" +input tournament_prizes_max_order_by { + created_at: order_by + id: order_by + order: order_by + place: order_by + prize: order_by + tournament_id: order_by +} + +"""aggregate min on columns""" +type tournament_prizes_min_fields { + created_at: timestamptz + id: uuid + order: Int + place: String + prize: String + tournament_id: uuid +} + +""" +order by min() on columns of table "tournament_prizes" +""" +input tournament_prizes_min_order_by { + created_at: order_by + id: order_by + order: order_by + place: order_by + prize: order_by + tournament_id: order_by +} + +""" +response of any mutation on the table "tournament_prizes" +""" +type tournament_prizes_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [tournament_prizes!]! +} + +""" +on_conflict condition type for table "tournament_prizes" +""" +input tournament_prizes_on_conflict { + constraint: tournament_prizes_constraint! + update_columns: [tournament_prizes_update_column!]! = [] + where: tournament_prizes_bool_exp +} + +"""Ordering options when selecting data from "tournament_prizes".""" +input tournament_prizes_order_by { + created_at: order_by + id: order_by + order: order_by + place: order_by + prize: order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +"""primary key columns input for table: tournament_prizes""" +input tournament_prizes_pk_columns_input { + id: uuid! +} + +""" +select columns of table "tournament_prizes" +""" +enum tournament_prizes_select_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + order + + """column name""" + place + + """column name""" + prize + + """column name""" + tournament_id +} + +""" +input type for updating data in table "tournament_prizes" +""" +input tournament_prizes_set_input { + created_at: timestamptz + id: uuid + order: Int + place: String + prize: String + tournament_id: uuid +} + +"""aggregate stddev on columns""" +type tournament_prizes_stddev_fields { + order: Float +} + +""" +order by stddev() on columns of table "tournament_prizes" +""" +input tournament_prizes_stddev_order_by { + order: order_by +} + +"""aggregate stddev_pop on columns""" +type tournament_prizes_stddev_pop_fields { + order: Float +} + +""" +order by stddev_pop() on columns of table "tournament_prizes" +""" +input tournament_prizes_stddev_pop_order_by { + order: order_by +} + +"""aggregate stddev_samp on columns""" +type tournament_prizes_stddev_samp_fields { + order: Float +} + +""" +order by stddev_samp() on columns of table "tournament_prizes" +""" +input tournament_prizes_stddev_samp_order_by { + order: order_by +} + +""" +Streaming cursor of the table "tournament_prizes" +""" +input tournament_prizes_stream_cursor_input { + """Stream column input with initial value""" + initial_value: tournament_prizes_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input tournament_prizes_stream_cursor_value_input { + created_at: timestamptz + id: uuid + order: Int + place: String + prize: String + tournament_id: uuid +} + +"""aggregate sum on columns""" +type tournament_prizes_sum_fields { + order: Int +} + +""" +order by sum() on columns of table "tournament_prizes" +""" +input tournament_prizes_sum_order_by { + order: order_by +} + +""" +update columns of table "tournament_prizes" +""" +enum tournament_prizes_update_column { + """column name""" + created_at + + """column name""" + id + + """column name""" + order + + """column name""" + place + + """column name""" + prize + + """column name""" + tournament_id +} + +input tournament_prizes_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: tournament_prizes_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: tournament_prizes_set_input + + """filter the rows which have to be updated""" + where: tournament_prizes_bool_exp! +} + +"""aggregate var_pop on columns""" +type tournament_prizes_var_pop_fields { + order: Float +} + +""" +order by var_pop() on columns of table "tournament_prizes" +""" +input tournament_prizes_var_pop_order_by { + order: order_by +} + +"""aggregate var_samp on columns""" +type tournament_prizes_var_samp_fields { + order: Float +} + +""" +order by var_samp() on columns of table "tournament_prizes" +""" +input tournament_prizes_var_samp_order_by { + order: order_by +} + +"""aggregate variance on columns""" +type tournament_prizes_variance_fields { + order: Float +} + +""" +order by variance() on columns of table "tournament_prizes" +""" +input tournament_prizes_variance_order_by { + order: order_by +} + """ columns and relationships of "tournament_stage_windows" """ @@ -92606,6 +94977,7 @@ type tournament_stages { """An object relationship""" e_tournament_stage_type: e_tournament_stage_types! + final_map_advantage: Int! groups: Int id: uuid! match_options_id: uuid @@ -92789,6 +95161,7 @@ input tournament_stages_arr_rel_insert_input { type tournament_stages_avg_fields { decider_best_of: Float default_best_of: Float + final_map_advantage: Float groups: Float max_rounds: Float max_teams: Float @@ -92802,6 +95175,7 @@ order by avg() on columns of table "tournament_stages" input tournament_stages_avg_order_by { decider_best_of: order_by default_best_of: order_by + final_map_advantage: order_by groups: order_by max_rounds: order_by max_teams: order_by @@ -92821,6 +95195,7 @@ input tournament_stages_bool_exp { decider_best_of: Int_comparison_exp default_best_of: Int_comparison_exp e_tournament_stage_type: e_tournament_stage_types_bool_exp + final_map_advantage: Int_comparison_exp groups: Int_comparison_exp id: uuid_comparison_exp match_options_id: uuid_comparison_exp @@ -92878,6 +95253,7 @@ input type for incrementing numeric columns in table "tournament_stages" input tournament_stages_inc_input { decider_best_of: Int default_best_of: Int + final_map_advantage: Int groups: Int max_rounds: Int max_teams: Int @@ -92893,6 +95269,7 @@ input tournament_stages_insert_input { decider_best_of: Int default_best_of: Int e_tournament_stage_type: e_tournament_stage_types_obj_rel_insert_input + final_map_advantage: Int groups: Int id: uuid match_options_id: uuid @@ -92915,6 +95292,7 @@ input tournament_stages_insert_input { type tournament_stages_max_fields { decider_best_of: Int default_best_of: Int + final_map_advantage: Int groups: Int id: uuid match_options_id: uuid @@ -92931,6 +95309,7 @@ order by max() on columns of table "tournament_stages" input tournament_stages_max_order_by { decider_best_of: order_by default_best_of: order_by + final_map_advantage: order_by groups: order_by id: order_by match_options_id: order_by @@ -92945,6 +95324,7 @@ input tournament_stages_max_order_by { type tournament_stages_min_fields { decider_best_of: Int default_best_of: Int + final_map_advantage: Int groups: Int id: uuid match_options_id: uuid @@ -92961,6 +95341,7 @@ order by min() on columns of table "tournament_stages" input tournament_stages_min_order_by { decider_best_of: order_by default_best_of: order_by + final_map_advantage: order_by groups: order_by id: order_by match_options_id: order_by @@ -93007,6 +95388,7 @@ input tournament_stages_order_by { decider_best_of: order_by default_best_of: order_by e_tournament_stage_type: e_tournament_stage_types_order_by + final_map_advantage: order_by groups: order_by id: order_by match_options_id: order_by @@ -93045,6 +95427,9 @@ enum tournament_stages_select_column { """column name""" default_best_of + """column name""" + final_map_advantage + """column name""" groups @@ -93110,6 +95495,7 @@ input type for updating data in table "tournament_stages" input tournament_stages_set_input { decider_best_of: Int default_best_of: Int + final_map_advantage: Int groups: Int id: uuid match_options_id: uuid @@ -93128,6 +95514,7 @@ input tournament_stages_set_input { type tournament_stages_stddev_fields { decider_best_of: Float default_best_of: Float + final_map_advantage: Float groups: Float max_rounds: Float max_teams: Float @@ -93141,6 +95528,7 @@ order by stddev() on columns of table "tournament_stages" input tournament_stages_stddev_order_by { decider_best_of: order_by default_best_of: order_by + final_map_advantage: order_by groups: order_by max_rounds: order_by max_teams: order_by @@ -93152,6 +95540,7 @@ input tournament_stages_stddev_order_by { type tournament_stages_stddev_pop_fields { decider_best_of: Float default_best_of: Float + final_map_advantage: Float groups: Float max_rounds: Float max_teams: Float @@ -93165,6 +95554,7 @@ order by stddev_pop() on columns of table "tournament_stages" input tournament_stages_stddev_pop_order_by { decider_best_of: order_by default_best_of: order_by + final_map_advantage: order_by groups: order_by max_rounds: order_by max_teams: order_by @@ -93176,6 +95566,7 @@ input tournament_stages_stddev_pop_order_by { type tournament_stages_stddev_samp_fields { decider_best_of: Float default_best_of: Float + final_map_advantage: Float groups: Float max_rounds: Float max_teams: Float @@ -93189,6 +95580,7 @@ order by stddev_samp() on columns of table "tournament_stages" input tournament_stages_stddev_samp_order_by { decider_best_of: order_by default_best_of: order_by + final_map_advantage: order_by groups: order_by max_rounds: order_by max_teams: order_by @@ -93211,6 +95603,7 @@ input tournament_stages_stream_cursor_input { input tournament_stages_stream_cursor_value_input { decider_best_of: Int default_best_of: Int + final_map_advantage: Int groups: Int id: uuid match_options_id: uuid @@ -93229,6 +95622,7 @@ input tournament_stages_stream_cursor_value_input { type tournament_stages_sum_fields { decider_best_of: Int default_best_of: Int + final_map_advantage: Int groups: Int max_rounds: Int max_teams: Int @@ -93242,6 +95636,7 @@ order by sum() on columns of table "tournament_stages" input tournament_stages_sum_order_by { decider_best_of: order_by default_best_of: order_by + final_map_advantage: order_by groups: order_by max_rounds: order_by max_teams: order_by @@ -93259,6 +95654,9 @@ enum tournament_stages_update_column { """column name""" default_best_of + """column name""" + final_map_advantage + """column name""" groups @@ -93332,6 +95730,7 @@ input tournament_stages_updates { type tournament_stages_var_pop_fields { decider_best_of: Float default_best_of: Float + final_map_advantage: Float groups: Float max_rounds: Float max_teams: Float @@ -93345,6 +95744,7 @@ order by var_pop() on columns of table "tournament_stages" input tournament_stages_var_pop_order_by { decider_best_of: order_by default_best_of: order_by + final_map_advantage: order_by groups: order_by max_rounds: order_by max_teams: order_by @@ -93356,6 +95756,7 @@ input tournament_stages_var_pop_order_by { type tournament_stages_var_samp_fields { decider_best_of: Float default_best_of: Float + final_map_advantage: Float groups: Float max_rounds: Float max_teams: Float @@ -93369,6 +95770,7 @@ order by var_samp() on columns of table "tournament_stages" input tournament_stages_var_samp_order_by { decider_best_of: order_by default_best_of: order_by + final_map_advantage: order_by groups: order_by max_rounds: order_by max_teams: order_by @@ -93380,6 +95782,7 @@ input tournament_stages_var_samp_order_by { type tournament_stages_variance_fields { decider_best_of: Float default_best_of: Float + final_map_advantage: Float groups: Float max_rounds: Float max_teams: Float @@ -93393,6 +95796,7 @@ order by variance() on columns of table "tournament_stages" input tournament_stages_variance_order_by { decider_best_of: order_by default_best_of: order_by + final_map_advantage: order_by groups: order_by max_rounds: order_by max_teams: order_by @@ -95791,6 +98195,7 @@ type tournaments { """An object relationship""" admin: players! auto_start: Boolean! + banner: String """ A computed field, executes function "can_cancel_tournament" @@ -95831,6 +98236,42 @@ type tournaments { A computed field, executes function "can_start_tournament" """ can_start: Boolean + + """An array relationship""" + categories( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): [tournament_categories!]! + + """An aggregate relationship""" + categories_aggregate( + """distinct select on columns""" + distinct_on: [tournament_categories_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_categories_order_by!] + + """filter the rows returned""" + where: tournament_categories_bool_exp + ): tournament_categories_aggregate! created_at: timestamptz description: String discord_guild_id: String @@ -95858,6 +98299,7 @@ type tournaments { A computed field, executes function "tournament_has_min_teams" """ has_min_teams: Boolean + homepage: String id: uuid! is_league: Boolean! @@ -95870,9 +98312,13 @@ type tournaments { A computed field, executes function "joined_tournament" """ joined_tournament: Boolean + latitude: float8 """An object relationship""" league_season_division: league_season_divisions + location: String + logo: String + longitude: float8 match_options_id: uuid! """ @@ -95890,6 +98336,42 @@ type tournaments { options: match_options! organizer_steam_id: bigint! + """An array relationship""" + organizer_teams( + """distinct select on columns""" + distinct_on: [tournament_organizer_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizer_teams_order_by!] + + """filter the rows returned""" + where: tournament_organizer_teams_bool_exp + ): [tournament_organizer_teams!]! + + """An aggregate relationship""" + organizer_teams_aggregate( + """distinct select on columns""" + distinct_on: [tournament_organizer_teams_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_organizer_teams_order_by!] + + """filter the rows returned""" + where: tournament_organizer_teams_bool_exp + ): tournament_organizer_teams_aggregate! + """An array relationship""" organizers( """distinct select on columns""" @@ -95962,6 +98444,42 @@ type tournaments { where: v_tournament_player_stats_bool_exp ): v_tournament_player_stats_aggregate! + """An array relationship""" + prizes( + """distinct select on columns""" + distinct_on: [tournament_prizes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_prizes_order_by!] + + """filter the rows returned""" + where: tournament_prizes_bool_exp + ): [tournament_prizes!]! + + """An aggregate relationship""" + prizes_aggregate( + """distinct select on columns""" + distinct_on: [tournament_prizes_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [tournament_prizes_order_by!] + + """filter the rows returned""" + where: tournament_prizes_bool_exp + ): tournament_prizes_aggregate! + """An array relationship""" results( """distinct select on columns""" @@ -96192,9 +98710,24 @@ type tournaments_aggregate { } input tournaments_aggregate_bool_exp { + avg: tournaments_aggregate_bool_exp_avg bool_and: tournaments_aggregate_bool_exp_bool_and bool_or: tournaments_aggregate_bool_exp_bool_or + corr: tournaments_aggregate_bool_exp_corr count: tournaments_aggregate_bool_exp_count + covar_samp: tournaments_aggregate_bool_exp_covar_samp + max: tournaments_aggregate_bool_exp_max + min: tournaments_aggregate_bool_exp_min + stddev_samp: tournaments_aggregate_bool_exp_stddev_samp + sum: tournaments_aggregate_bool_exp_sum + var_samp: tournaments_aggregate_bool_exp_var_samp +} + +input tournaments_aggregate_bool_exp_avg { + arguments: tournaments_select_column_tournaments_aggregate_bool_exp_avg_arguments_columns! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! } input tournaments_aggregate_bool_exp_bool_and { @@ -96211,6 +98744,18 @@ input tournaments_aggregate_bool_exp_bool_or { predicate: Boolean_comparison_exp! } +input tournaments_aggregate_bool_exp_corr { + arguments: tournaments_aggregate_bool_exp_corr_arguments! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! +} + +input tournaments_aggregate_bool_exp_corr_arguments { + X: tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns! + Y: tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns! +} + input tournaments_aggregate_bool_exp_count { arguments: [tournaments_select_column!] distinct: Boolean @@ -96218,6 +98763,53 @@ input tournaments_aggregate_bool_exp_count { predicate: Int_comparison_exp! } +input tournaments_aggregate_bool_exp_covar_samp { + arguments: tournaments_aggregate_bool_exp_covar_samp_arguments! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! +} + +input tournaments_aggregate_bool_exp_covar_samp_arguments { + X: tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns! + Y: tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns! +} + +input tournaments_aggregate_bool_exp_max { + arguments: tournaments_select_column_tournaments_aggregate_bool_exp_max_arguments_columns! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! +} + +input tournaments_aggregate_bool_exp_min { + arguments: tournaments_select_column_tournaments_aggregate_bool_exp_min_arguments_columns! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! +} + +input tournaments_aggregate_bool_exp_stddev_samp { + arguments: tournaments_select_column_tournaments_aggregate_bool_exp_stddev_samp_arguments_columns! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! +} + +input tournaments_aggregate_bool_exp_sum { + arguments: tournaments_select_column_tournaments_aggregate_bool_exp_sum_arguments_columns! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! +} + +input tournaments_aggregate_bool_exp_var_samp { + arguments: tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns! + distinct: Boolean + filter: tournaments_bool_exp + predicate: float8_comparison_exp! +} + """ aggregate fields of "tournaments" """ @@ -96264,6 +98856,9 @@ input tournaments_arr_rel_insert_input { """aggregate avg on columns""" type tournaments_avg_fields { + latitude: Float + longitude: Float + """ A computed field, executes function "tournament_max_players_per_lineup" """ @@ -96280,6 +98875,8 @@ type tournaments_avg_fields { order by avg() on columns of table "tournaments" """ input tournaments_avg_order_by { + latitude: order_by + longitude: order_by organizer_steam_id: order_by } @@ -96292,6 +98889,7 @@ input tournaments_bool_exp { _or: [tournaments_bool_exp!] admin: players_bool_exp auto_start: Boolean_comparison_exp + banner: String_comparison_exp can_cancel: Boolean_comparison_exp can_close_registration: Boolean_comparison_exp can_join: Boolean_comparison_exp @@ -96300,6 +98898,8 @@ input tournaments_bool_exp { can_resume: Boolean_comparison_exp can_setup: Boolean_comparison_exp can_start: Boolean_comparison_exp + categories: tournament_categories_bool_exp + categories_aggregate: tournament_categories_aggregate_bool_exp created_at: timestamptz_comparison_exp description: String_comparison_exp discord_guild_id: String_comparison_exp @@ -96321,21 +98921,30 @@ input tournaments_bool_exp { discord_webhook: String_comparison_exp e_tournament_status: e_tournament_status_bool_exp has_min_teams: Boolean_comparison_exp + homepage: String_comparison_exp id: uuid_comparison_exp is_league: Boolean_comparison_exp is_organizer: Boolean_comparison_exp joined_tournament: Boolean_comparison_exp + latitude: float8_comparison_exp league_season_division: league_season_divisions_bool_exp + location: String_comparison_exp + logo: String_comparison_exp + longitude: float8_comparison_exp match_options_id: uuid_comparison_exp max_players_per_lineup: Int_comparison_exp min_players_per_lineup: Int_comparison_exp name: String_comparison_exp options: match_options_bool_exp organizer_steam_id: bigint_comparison_exp + organizer_teams: tournament_organizer_teams_bool_exp + organizer_teams_aggregate: tournament_organizer_teams_aggregate_bool_exp organizers: tournament_organizers_bool_exp organizers_aggregate: tournament_organizers_aggregate_bool_exp player_stats: v_tournament_player_stats_bool_exp player_stats_aggregate: v_tournament_player_stats_aggregate_bool_exp + prizes: tournament_prizes_bool_exp + prizes_aggregate: tournament_prizes_aggregate_bool_exp results: v_team_tournament_results_bool_exp results_aggregate: v_team_tournament_results_aggregate_bool_exp rosters: tournament_team_roster_bool_exp @@ -96373,6 +98982,8 @@ enum tournaments_constraint { input type for incrementing numeric columns in table "tournaments" """ input tournaments_inc_input { + latitude: float8 + longitude: float8 organizer_steam_id: bigint } @@ -96382,6 +98993,8 @@ input type for inserting data into table "tournaments" input tournaments_insert_input { admin: players_obj_rel_insert_input auto_start: Boolean + banner: String + categories: tournament_categories_arr_rel_insert_input created_at: timestamptz description: String discord_guild_id: String @@ -96402,15 +99015,22 @@ input tournaments_insert_input { discord_voice_enabled: Boolean discord_webhook: String e_tournament_status: e_tournament_status_obj_rel_insert_input + homepage: String id: uuid is_league: Boolean + latitude: float8 league_season_division: league_season_divisions_obj_rel_insert_input + location: String + logo: String + longitude: float8 match_options_id: uuid name: String options: match_options_obj_rel_insert_input organizer_steam_id: bigint + organizer_teams: tournament_organizer_teams_arr_rel_insert_input organizers: tournament_organizers_arr_rel_insert_input player_stats: v_tournament_player_stats_arr_rel_insert_input + prizes: tournament_prizes_arr_rel_insert_input results: v_team_tournament_results_arr_rel_insert_input rosters: tournament_team_roster_arr_rel_insert_input scheduling_mode: String @@ -96425,12 +99045,18 @@ input tournaments_insert_input { """aggregate max on columns""" type tournaments_max_fields { + banner: String created_at: timestamptz description: String discord_guild_id: String discord_role_id: String discord_webhook: String + homepage: String id: uuid + latitude: float8 + location: String + logo: String + longitude: float8 match_options_id: uuid """ @@ -96452,12 +99078,18 @@ type tournaments_max_fields { order by max() on columns of table "tournaments" """ input tournaments_max_order_by { + banner: order_by created_at: order_by description: order_by discord_guild_id: order_by discord_role_id: order_by discord_webhook: order_by + homepage: order_by id: order_by + latitude: order_by + location: order_by + logo: order_by + longitude: order_by match_options_id: order_by name: order_by organizer_steam_id: order_by @@ -96467,12 +99099,18 @@ input tournaments_max_order_by { """aggregate min on columns""" type tournaments_min_fields { + banner: String created_at: timestamptz description: String discord_guild_id: String discord_role_id: String discord_webhook: String + homepage: String id: uuid + latitude: float8 + location: String + logo: String + longitude: float8 match_options_id: uuid """ @@ -96494,12 +99132,18 @@ type tournaments_min_fields { order by min() on columns of table "tournaments" """ input tournaments_min_order_by { + banner: order_by created_at: order_by description: order_by discord_guild_id: order_by discord_role_id: order_by discord_webhook: order_by + homepage: order_by id: order_by + latitude: order_by + location: order_by + logo: order_by + longitude: order_by match_options_id: order_by name: order_by organizer_steam_id: order_by @@ -96541,6 +99185,7 @@ input tournaments_on_conflict { input tournaments_order_by { admin: players_order_by auto_start: order_by + banner: order_by can_cancel: order_by can_close_registration: order_by can_join: order_by @@ -96549,6 +99194,7 @@ input tournaments_order_by { can_resume: order_by can_setup: order_by can_start: order_by + categories_aggregate: tournament_categories_aggregate_order_by created_at: order_by description: order_by discord_guild_id: order_by @@ -96570,19 +99216,26 @@ input tournaments_order_by { discord_webhook: order_by e_tournament_status: e_tournament_status_order_by has_min_teams: order_by + homepage: order_by id: order_by is_league: order_by is_organizer: order_by joined_tournament: order_by + latitude: order_by league_season_division: league_season_divisions_order_by + location: order_by + logo: order_by + longitude: order_by match_options_id: order_by max_players_per_lineup: order_by min_players_per_lineup: order_by name: order_by options: match_options_order_by organizer_steam_id: order_by + organizer_teams_aggregate: tournament_organizer_teams_aggregate_order_by organizers_aggregate: tournament_organizers_aggregate_order_by player_stats_aggregate: v_tournament_player_stats_aggregate_order_by + prizes_aggregate: tournament_prizes_aggregate_order_by results_aggregate: v_team_tournament_results_aggregate_order_by rosters_aggregate: tournament_team_roster_aggregate_order_by scheduling_mode: order_by @@ -96607,6 +99260,9 @@ enum tournaments_select_column { """column name""" auto_start + """column name""" + banner + """column name""" created_at @@ -96664,12 +99320,27 @@ enum tournaments_select_column { """column name""" discord_webhook + """column name""" + homepage + """column name""" id """column name""" is_league + """column name""" + latitude + + """column name""" + location + + """column name""" + logo + + """column name""" + longitude + """column name""" match_options_id @@ -96692,6 +99363,17 @@ enum tournaments_select_column { trophies_enabled } +""" +select "tournaments_aggregate_bool_exp_avg_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_avg_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + """ select "tournaments_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournaments" """ @@ -96804,11 +99486,89 @@ enum tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_ trophies_enabled } +""" +select "tournaments_aggregate_bool_exp_corr_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + +""" +select "tournaments_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + +""" +select "tournaments_aggregate_bool_exp_max_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_max_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + +""" +select "tournaments_aggregate_bool_exp_min_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_min_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + +""" +select "tournaments_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_stddev_samp_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + +""" +select "tournaments_aggregate_bool_exp_sum_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_sum_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + +""" +select "tournaments_aggregate_bool_exp_var_samp_arguments_columns" columns of table "tournaments" +""" +enum tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns { + """column name""" + latitude + + """column name""" + longitude +} + """ input type for updating data in table "tournaments" """ input tournaments_set_input { auto_start: Boolean + banner: String created_at: timestamptz description: String discord_guild_id: String @@ -96828,8 +99588,13 @@ input tournaments_set_input { discord_role_id: String discord_voice_enabled: Boolean discord_webhook: String + homepage: String id: uuid is_league: Boolean + latitude: float8 + location: String + logo: String + longitude: float8 match_options_id: uuid name: String organizer_steam_id: bigint @@ -96841,6 +99606,9 @@ input tournaments_set_input { """aggregate stddev on columns""" type tournaments_stddev_fields { + latitude: Float + longitude: Float + """ A computed field, executes function "tournament_max_players_per_lineup" """ @@ -96857,11 +99625,16 @@ type tournaments_stddev_fields { order by stddev() on columns of table "tournaments" """ input tournaments_stddev_order_by { + latitude: order_by + longitude: order_by organizer_steam_id: order_by } """aggregate stddev_pop on columns""" type tournaments_stddev_pop_fields { + latitude: Float + longitude: Float + """ A computed field, executes function "tournament_max_players_per_lineup" """ @@ -96878,11 +99651,16 @@ type tournaments_stddev_pop_fields { order by stddev_pop() on columns of table "tournaments" """ input tournaments_stddev_pop_order_by { + latitude: order_by + longitude: order_by organizer_steam_id: order_by } """aggregate stddev_samp on columns""" type tournaments_stddev_samp_fields { + latitude: Float + longitude: Float + """ A computed field, executes function "tournament_max_players_per_lineup" """ @@ -96899,6 +99677,8 @@ type tournaments_stddev_samp_fields { order by stddev_samp() on columns of table "tournaments" """ input tournaments_stddev_samp_order_by { + latitude: order_by + longitude: order_by organizer_steam_id: order_by } @@ -96916,6 +99696,7 @@ input tournaments_stream_cursor_input { """Initial value of the column from where the streaming should start""" input tournaments_stream_cursor_value_input { auto_start: Boolean + banner: String created_at: timestamptz description: String discord_guild_id: String @@ -96935,8 +99716,13 @@ input tournaments_stream_cursor_value_input { discord_role_id: String discord_voice_enabled: Boolean discord_webhook: String + homepage: String id: uuid is_league: Boolean + latitude: float8 + location: String + logo: String + longitude: float8 match_options_id: uuid name: String organizer_steam_id: bigint @@ -96948,6 +99734,9 @@ input tournaments_stream_cursor_value_input { """aggregate sum on columns""" type tournaments_sum_fields { + latitude: float8 + longitude: float8 + """ A computed field, executes function "tournament_max_players_per_lineup" """ @@ -96964,6 +99753,8 @@ type tournaments_sum_fields { order by sum() on columns of table "tournaments" """ input tournaments_sum_order_by { + latitude: order_by + longitude: order_by organizer_steam_id: order_by } @@ -96974,6 +99765,9 @@ enum tournaments_update_column { """column name""" auto_start + """column name""" + banner + """column name""" created_at @@ -97031,12 +99825,27 @@ enum tournaments_update_column { """column name""" discord_webhook + """column name""" + homepage + """column name""" id """column name""" is_league + """column name""" + latitude + + """column name""" + location + + """column name""" + logo + + """column name""" + longitude + """column name""" match_options_id @@ -97072,6 +99881,9 @@ input tournaments_updates { """aggregate var_pop on columns""" type tournaments_var_pop_fields { + latitude: Float + longitude: Float + """ A computed field, executes function "tournament_max_players_per_lineup" """ @@ -97088,11 +99900,16 @@ type tournaments_var_pop_fields { order by var_pop() on columns of table "tournaments" """ input tournaments_var_pop_order_by { + latitude: order_by + longitude: order_by organizer_steam_id: order_by } """aggregate var_samp on columns""" type tournaments_var_samp_fields { + latitude: Float + longitude: Float + """ A computed field, executes function "tournament_max_players_per_lineup" """ @@ -97109,11 +99926,16 @@ type tournaments_var_samp_fields { order by var_samp() on columns of table "tournaments" """ input tournaments_var_samp_order_by { + latitude: order_by + longitude: order_by organizer_steam_id: order_by } """aggregate variance on columns""" type tournaments_variance_fields { + latitude: Float + longitude: Float + """ A computed field, executes function "tournament_max_players_per_lineup" """ @@ -97130,6 +99952,8 @@ type tournaments_variance_fields { order by variance() on columns of table "tournaments" """ input tournaments_variance_order_by { + latitude: order_by + longitude: order_by organizer_steam_id: order_by } diff --git a/generated/schema.ts b/generated/schema.ts index 9834da64a..c1aaad43c 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -1250,6 +1250,163 @@ export interface clip_render_jobs_variance_fields { export type cursor_ordering = 'ASC' | 'DESC' +/** columns and relationships of "custom_pages" */ +export interface custom_pages { + created_at: Scalars['timestamptz'] + enabled: Scalars['Boolean'] + exposed_module: Scalars['String'] + icon: (Scalars['String'] | null) + id: Scalars['uuid'] + is_default: Scalars['Boolean'] + nav_group: (Scalars['String'] | null) + nav_order: Scalars['Int'] + remote_entry_url: Scalars['String'] + remote_scope: Scalars['String'] + required_role: (e_player_roles_enum | null) + slug: Scalars['String'] + title: Scalars['String'] + updated_at: Scalars['timestamptz'] + __typename: 'custom_pages' +} + + +/** aggregated selection of "custom_pages" */ +export interface custom_pages_aggregate { + aggregate: (custom_pages_aggregate_fields | null) + nodes: custom_pages[] + __typename: 'custom_pages_aggregate' +} + + +/** aggregate fields of "custom_pages" */ +export interface custom_pages_aggregate_fields { + avg: (custom_pages_avg_fields | null) + count: Scalars['Int'] + max: (custom_pages_max_fields | null) + min: (custom_pages_min_fields | null) + stddev: (custom_pages_stddev_fields | null) + stddev_pop: (custom_pages_stddev_pop_fields | null) + stddev_samp: (custom_pages_stddev_samp_fields | null) + sum: (custom_pages_sum_fields | null) + var_pop: (custom_pages_var_pop_fields | null) + var_samp: (custom_pages_var_samp_fields | null) + variance: (custom_pages_variance_fields | null) + __typename: 'custom_pages_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface custom_pages_avg_fields { + nav_order: (Scalars['Float'] | null) + __typename: 'custom_pages_avg_fields' +} + + +/** unique or primary key constraints on table "custom_pages" */ +export type custom_pages_constraint = 'custom_pages_pkey' | 'custom_pages_single_default_idx' | 'custom_pages_slug_key' + + +/** aggregate max on columns */ +export interface custom_pages_max_fields { + created_at: (Scalars['timestamptz'] | null) + exposed_module: (Scalars['String'] | null) + icon: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + nav_group: (Scalars['String'] | null) + nav_order: (Scalars['Int'] | null) + remote_entry_url: (Scalars['String'] | null) + remote_scope: (Scalars['String'] | null) + slug: (Scalars['String'] | null) + title: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'custom_pages_max_fields' +} + + +/** aggregate min on columns */ +export interface custom_pages_min_fields { + created_at: (Scalars['timestamptz'] | null) + exposed_module: (Scalars['String'] | null) + icon: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + nav_group: (Scalars['String'] | null) + nav_order: (Scalars['Int'] | null) + remote_entry_url: (Scalars['String'] | null) + remote_scope: (Scalars['String'] | null) + slug: (Scalars['String'] | null) + title: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'custom_pages_min_fields' +} + + +/** response of any mutation on the table "custom_pages" */ +export interface custom_pages_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: custom_pages[] + __typename: 'custom_pages_mutation_response' +} + + +/** select columns of table "custom_pages" */ +export type custom_pages_select_column = 'created_at' | 'enabled' | 'exposed_module' | 'icon' | 'id' | 'is_default' | 'nav_group' | 'nav_order' | 'remote_entry_url' | 'remote_scope' | 'required_role' | 'slug' | 'title' | 'updated_at' + + +/** aggregate stddev on columns */ +export interface custom_pages_stddev_fields { + nav_order: (Scalars['Float'] | null) + __typename: 'custom_pages_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface custom_pages_stddev_pop_fields { + nav_order: (Scalars['Float'] | null) + __typename: 'custom_pages_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface custom_pages_stddev_samp_fields { + nav_order: (Scalars['Float'] | null) + __typename: 'custom_pages_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface custom_pages_sum_fields { + nav_order: (Scalars['Int'] | null) + __typename: 'custom_pages_sum_fields' +} + + +/** update columns of table "custom_pages" */ +export type custom_pages_update_column = 'created_at' | 'enabled' | 'exposed_module' | 'icon' | 'id' | 'is_default' | 'nav_group' | 'nav_order' | 'remote_entry_url' | 'remote_scope' | 'required_role' | 'slug' | 'title' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface custom_pages_var_pop_fields { + nav_order: (Scalars['Float'] | null) + __typename: 'custom_pages_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface custom_pages_var_samp_fields { + nav_order: (Scalars['Float'] | null) + __typename: 'custom_pages_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface custom_pages_variance_fields { + nav_order: (Scalars['Float'] | null) + __typename: 'custom_pages_variance_fields' +} + + /** columns and relationships of "db_backups" */ export interface db_backups { created_at: Scalars['timestamptz'] @@ -4374,6 +4531,75 @@ export type e_timeout_settings_select_column = 'description' | 'value' export type e_timeout_settings_update_column = 'description' | 'value' +/** columns and relationships of "e_tournament_categories" */ +export interface e_tournament_categories { + description: Scalars['String'] + /** An array relationship */ + tournament_categories: tournament_categories[] + /** An aggregate relationship */ + tournament_categories_aggregate: tournament_categories_aggregate + value: Scalars['String'] + __typename: 'e_tournament_categories' +} + + +/** aggregated selection of "e_tournament_categories" */ +export interface e_tournament_categories_aggregate { + aggregate: (e_tournament_categories_aggregate_fields | null) + nodes: e_tournament_categories[] + __typename: 'e_tournament_categories_aggregate' +} + + +/** aggregate fields of "e_tournament_categories" */ +export interface e_tournament_categories_aggregate_fields { + count: Scalars['Int'] + max: (e_tournament_categories_max_fields | null) + min: (e_tournament_categories_min_fields | null) + __typename: 'e_tournament_categories_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_tournament_categories" */ +export type e_tournament_categories_constraint = 'e_tournament_categories_pkey' + +export type e_tournament_categories_enum = 'LAN' | 'League' | 'LocationEvent' | 'OnlineEvent' + + +/** aggregate max on columns */ +export interface e_tournament_categories_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_tournament_categories_max_fields' +} + + +/** aggregate min on columns */ +export interface e_tournament_categories_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_tournament_categories_min_fields' +} + + +/** response of any mutation on the table "e_tournament_categories" */ +export interface e_tournament_categories_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_tournament_categories[] + __typename: 'e_tournament_categories_mutation_response' +} + + +/** select columns of table "e_tournament_categories" */ +export type e_tournament_categories_select_column = 'description' | 'value' + + +/** update columns of table "e_tournament_categories" */ +export type e_tournament_categories_update_column = 'description' | 'value' + + /** columns and relationships of "e_tournament_stage_types" */ export interface e_tournament_stage_types { description: Scalars['String'] @@ -10212,6 +10438,7 @@ export interface match_options { check_in_setting: e_check_in_settings_enum coaches: Scalars['Boolean'] default_models: (Scalars['Boolean'] | null) + halftime_pausematch: Scalars['Boolean'] /** A computed field, executes function "has_active_matches" */ has_active_matches: (Scalars['Boolean'] | null) id: Scalars['uuid'] @@ -10234,6 +10461,7 @@ export interface match_options { ready_setting: e_ready_settings_enum region_veto: Scalars['Boolean'] regions: (Scalars['String'][] | null) + round_restart_delay: (Scalars['Int'] | null) tech_timeout_setting: e_timeout_settings_enum timeout_setting: e_timeout_settings_enum /** An object relationship */ @@ -10280,6 +10508,7 @@ export interface match_options_avg_fields { live_match_timeout: (Scalars['Float'] | null) mr: (Scalars['Float'] | null) number_of_substitutes: (Scalars['Float'] | null) + round_restart_delay: (Scalars['Float'] | null) tv_delay: (Scalars['Float'] | null) __typename: 'match_options_avg_fields' } @@ -10300,6 +10529,7 @@ export interface match_options_max_fields { mr: (Scalars['Int'] | null) number_of_substitutes: (Scalars['Int'] | null) regions: (Scalars['String'][] | null) + round_restart_delay: (Scalars['Int'] | null) tv_delay: (Scalars['Int'] | null) __typename: 'match_options_max_fields' } @@ -10316,6 +10546,7 @@ export interface match_options_min_fields { mr: (Scalars['Int'] | null) number_of_substitutes: (Scalars['Int'] | null) regions: (Scalars['String'][] | null) + round_restart_delay: (Scalars['Int'] | null) tv_delay: (Scalars['Int'] | null) __typename: 'match_options_min_fields' } @@ -10332,7 +10563,7 @@ export interface match_options_mutation_response { /** select columns of table "match_options" */ -export type match_options_select_column = 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'check_in_setting' | 'coaches' | 'default_models' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' +export type match_options_select_column = 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'check_in_setting' | 'coaches' | 'default_models' | 'halftime_pausematch' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'round_restart_delay' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' /** aggregate stddev on columns */ @@ -10342,6 +10573,7 @@ export interface match_options_stddev_fields { live_match_timeout: (Scalars['Float'] | null) mr: (Scalars['Float'] | null) number_of_substitutes: (Scalars['Float'] | null) + round_restart_delay: (Scalars['Float'] | null) tv_delay: (Scalars['Float'] | null) __typename: 'match_options_stddev_fields' } @@ -10354,6 +10586,7 @@ export interface match_options_stddev_pop_fields { live_match_timeout: (Scalars['Float'] | null) mr: (Scalars['Float'] | null) number_of_substitutes: (Scalars['Float'] | null) + round_restart_delay: (Scalars['Float'] | null) tv_delay: (Scalars['Float'] | null) __typename: 'match_options_stddev_pop_fields' } @@ -10366,6 +10599,7 @@ export interface match_options_stddev_samp_fields { live_match_timeout: (Scalars['Float'] | null) mr: (Scalars['Float'] | null) number_of_substitutes: (Scalars['Float'] | null) + round_restart_delay: (Scalars['Float'] | null) tv_delay: (Scalars['Float'] | null) __typename: 'match_options_stddev_samp_fields' } @@ -10378,13 +10612,14 @@ export interface match_options_sum_fields { live_match_timeout: (Scalars['Int'] | null) mr: (Scalars['Int'] | null) number_of_substitutes: (Scalars['Int'] | null) + round_restart_delay: (Scalars['Int'] | null) tv_delay: (Scalars['Int'] | null) __typename: 'match_options_sum_fields' } /** update columns of table "match_options" */ -export type match_options_update_column = 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'check_in_setting' | 'coaches' | 'default_models' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' +export type match_options_update_column = 'auto_cancel_duration' | 'auto_cancellation' | 'best_of' | 'check_in_setting' | 'coaches' | 'default_models' | 'halftime_pausematch' | 'id' | 'invite_code' | 'knife_round' | 'live_match_timeout' | 'map_pool_id' | 'map_veto' | 'match_mode' | 'mr' | 'number_of_substitutes' | 'overtime' | 'prefer_dedicated_server' | 'ready_setting' | 'region_veto' | 'regions' | 'round_restart_delay' | 'tech_timeout_setting' | 'timeout_setting' | 'tv_delay' | 'type' /** aggregate var_pop on columns */ @@ -10394,6 +10629,7 @@ export interface match_options_var_pop_fields { live_match_timeout: (Scalars['Float'] | null) mr: (Scalars['Float'] | null) number_of_substitutes: (Scalars['Float'] | null) + round_restart_delay: (Scalars['Float'] | null) tv_delay: (Scalars['Float'] | null) __typename: 'match_options_var_pop_fields' } @@ -10406,6 +10642,7 @@ export interface match_options_var_samp_fields { live_match_timeout: (Scalars['Float'] | null) mr: (Scalars['Float'] | null) number_of_substitutes: (Scalars['Float'] | null) + round_restart_delay: (Scalars['Float'] | null) tv_delay: (Scalars['Float'] | null) __typename: 'match_options_var_samp_fields' } @@ -10418,6 +10655,7 @@ export interface match_options_variance_fields { live_match_timeout: (Scalars['Float'] | null) mr: (Scalars['Float'] | null) number_of_substitutes: (Scalars['Float'] | null) + round_restart_delay: (Scalars['Float'] | null) tv_delay: (Scalars['Float'] | null) __typename: 'match_options_variance_fields' } @@ -11301,6 +11539,10 @@ export interface mutation_root { delete_clip_render_jobs: (clip_render_jobs_mutation_response | null) /** delete single row from the table: "clip_render_jobs" */ delete_clip_render_jobs_by_pk: (clip_render_jobs | null) + /** delete data from the table: "custom_pages" */ + delete_custom_pages: (custom_pages_mutation_response | null) + /** delete single row from the table: "custom_pages" */ + delete_custom_pages_by_pk: (custom_pages | null) /** delete data from the table: "db_backups" */ delete_db_backups: (db_backups_mutation_response | null) /** delete single row from the table: "db_backups" */ @@ -11461,6 +11703,10 @@ export interface mutation_root { delete_e_timeout_settings: (e_timeout_settings_mutation_response | null) /** delete single row from the table: "e_timeout_settings" */ delete_e_timeout_settings_by_pk: (e_timeout_settings | null) + /** delete data from the table: "e_tournament_categories" */ + delete_e_tournament_categories: (e_tournament_categories_mutation_response | null) + /** delete single row from the table: "e_tournament_categories" */ + delete_e_tournament_categories_by_pk: (e_tournament_categories | null) /** delete data from the table: "e_tournament_stage_types" */ delete_e_tournament_stage_types: (e_tournament_stage_types_mutation_response | null) /** delete single row from the table: "e_tournament_stage_types" */ @@ -11815,10 +12061,22 @@ export interface mutation_root { delete_tournament_brackets: (tournament_brackets_mutation_response | null) /** delete single row from the table: "tournament_brackets" */ delete_tournament_brackets_by_pk: (tournament_brackets | null) + /** delete data from the table: "tournament_categories" */ + delete_tournament_categories: (tournament_categories_mutation_response | null) + /** delete single row from the table: "tournament_categories" */ + delete_tournament_categories_by_pk: (tournament_categories | null) + /** delete data from the table: "tournament_organizer_teams" */ + delete_tournament_organizer_teams: (tournament_organizer_teams_mutation_response | null) + /** delete single row from the table: "tournament_organizer_teams" */ + delete_tournament_organizer_teams_by_pk: (tournament_organizer_teams | null) /** delete data from the table: "tournament_organizers" */ delete_tournament_organizers: (tournament_organizers_mutation_response | null) /** delete single row from the table: "tournament_organizers" */ delete_tournament_organizers_by_pk: (tournament_organizers | null) + /** delete data from the table: "tournament_prizes" */ + delete_tournament_prizes: (tournament_prizes_mutation_response | null) + /** delete single row from the table: "tournament_prizes" */ + delete_tournament_prizes_by_pk: (tournament_prizes | null) /** delete data from the table: "tournament_stage_windows" */ delete_tournament_stage_windows: (tournament_stage_windows_mutation_response | null) /** delete single row from the table: "tournament_stage_windows" */ @@ -11884,6 +12142,10 @@ export interface mutation_root { insert_clip_render_jobs: (clip_render_jobs_mutation_response | null) /** insert a single row into the table: "clip_render_jobs" */ insert_clip_render_jobs_one: (clip_render_jobs | null) + /** insert data into the table: "custom_pages" */ + insert_custom_pages: (custom_pages_mutation_response | null) + /** insert a single row into the table: "custom_pages" */ + insert_custom_pages_one: (custom_pages | null) /** insert data into the table: "db_backups" */ insert_db_backups: (db_backups_mutation_response | null) /** insert a single row into the table: "db_backups" */ @@ -12044,6 +12306,10 @@ export interface mutation_root { insert_e_timeout_settings: (e_timeout_settings_mutation_response | null) /** insert a single row into the table: "e_timeout_settings" */ insert_e_timeout_settings_one: (e_timeout_settings | null) + /** insert data into the table: "e_tournament_categories" */ + insert_e_tournament_categories: (e_tournament_categories_mutation_response | null) + /** insert a single row into the table: "e_tournament_categories" */ + insert_e_tournament_categories_one: (e_tournament_categories | null) /** insert data into the table: "e_tournament_stage_types" */ insert_e_tournament_stage_types: (e_tournament_stage_types_mutation_response | null) /** insert a single row into the table: "e_tournament_stage_types" */ @@ -12404,10 +12670,22 @@ export interface mutation_root { insert_tournament_brackets: (tournament_brackets_mutation_response | null) /** insert a single row into the table: "tournament_brackets" */ insert_tournament_brackets_one: (tournament_brackets | null) + /** insert data into the table: "tournament_categories" */ + insert_tournament_categories: (tournament_categories_mutation_response | null) + /** insert a single row into the table: "tournament_categories" */ + insert_tournament_categories_one: (tournament_categories | null) + /** insert data into the table: "tournament_organizer_teams" */ + insert_tournament_organizer_teams: (tournament_organizer_teams_mutation_response | null) + /** insert a single row into the table: "tournament_organizer_teams" */ + insert_tournament_organizer_teams_one: (tournament_organizer_teams | null) /** insert data into the table: "tournament_organizers" */ insert_tournament_organizers: (tournament_organizers_mutation_response | null) /** insert a single row into the table: "tournament_organizers" */ insert_tournament_organizers_one: (tournament_organizers | null) + /** insert data into the table: "tournament_prizes" */ + insert_tournament_prizes: (tournament_prizes_mutation_response | null) + /** insert a single row into the table: "tournament_prizes" */ + insert_tournament_prizes_one: (tournament_prizes | null) /** insert data into the table: "tournament_stage_windows" */ insert_tournament_stage_windows: (tournament_stage_windows_mutation_response | null) /** insert a single row into the table: "tournament_stage_windows" */ @@ -12611,6 +12889,12 @@ export interface mutation_root { update_clip_render_jobs_by_pk: (clip_render_jobs | null) /** update multiples rows of table: "clip_render_jobs" */ update_clip_render_jobs_many: ((clip_render_jobs_mutation_response | null)[] | null) + /** update data of the table: "custom_pages" */ + update_custom_pages: (custom_pages_mutation_response | null) + /** update single row of the table: "custom_pages" */ + update_custom_pages_by_pk: (custom_pages | null) + /** update multiples rows of table: "custom_pages" */ + update_custom_pages_many: ((custom_pages_mutation_response | null)[] | null) /** update data of the table: "db_backups" */ update_db_backups: (db_backups_mutation_response | null) /** update single row of the table: "db_backups" */ @@ -12851,6 +13135,12 @@ export interface mutation_root { update_e_timeout_settings_by_pk: (e_timeout_settings | null) /** update multiples rows of table: "e_timeout_settings" */ update_e_timeout_settings_many: ((e_timeout_settings_mutation_response | null)[] | null) + /** update data of the table: "e_tournament_categories" */ + update_e_tournament_categories: (e_tournament_categories_mutation_response | null) + /** update single row of the table: "e_tournament_categories" */ + update_e_tournament_categories_by_pk: (e_tournament_categories | null) + /** update multiples rows of table: "e_tournament_categories" */ + update_e_tournament_categories_many: ((e_tournament_categories_mutation_response | null)[] | null) /** update data of the table: "e_tournament_stage_types" */ update_e_tournament_stage_types: (e_tournament_stage_types_mutation_response | null) /** update single row of the table: "e_tournament_stage_types" */ @@ -13385,12 +13675,30 @@ export interface mutation_root { update_tournament_brackets_by_pk: (tournament_brackets | null) /** update multiples rows of table: "tournament_brackets" */ update_tournament_brackets_many: ((tournament_brackets_mutation_response | null)[] | null) + /** update data of the table: "tournament_categories" */ + update_tournament_categories: (tournament_categories_mutation_response | null) + /** update single row of the table: "tournament_categories" */ + update_tournament_categories_by_pk: (tournament_categories | null) + /** update multiples rows of table: "tournament_categories" */ + update_tournament_categories_many: ((tournament_categories_mutation_response | null)[] | null) + /** update data of the table: "tournament_organizer_teams" */ + update_tournament_organizer_teams: (tournament_organizer_teams_mutation_response | null) + /** update single row of the table: "tournament_organizer_teams" */ + update_tournament_organizer_teams_by_pk: (tournament_organizer_teams | null) + /** update multiples rows of table: "tournament_organizer_teams" */ + update_tournament_organizer_teams_many: ((tournament_organizer_teams_mutation_response | null)[] | null) /** update data of the table: "tournament_organizers" */ update_tournament_organizers: (tournament_organizers_mutation_response | null) /** update single row of the table: "tournament_organizers" */ update_tournament_organizers_by_pk: (tournament_organizers | null) /** update multiples rows of table: "tournament_organizers" */ update_tournament_organizers_many: ((tournament_organizers_mutation_response | null)[] | null) + /** update data of the table: "tournament_prizes" */ + update_tournament_prizes: (tournament_prizes_mutation_response | null) + /** update single row of the table: "tournament_prizes" */ + update_tournament_prizes_by_pk: (tournament_prizes | null) + /** update multiples rows of table: "tournament_prizes" */ + update_tournament_prizes_many: ((tournament_prizes_mutation_response | null)[] | null) /** update data of the table: "tournament_stage_windows" */ update_tournament_stage_windows: (tournament_stage_windows_mutation_response | null) /** update single row of the table: "tournament_stage_windows" */ @@ -21613,6 +21921,12 @@ export interface query_root { clip_render_jobs_aggregate: clip_render_jobs_aggregate /** fetch data from the table: "clip_render_jobs" using primary key columns */ clip_render_jobs_by_pk: (clip_render_jobs | null) + /** fetch data from the table: "custom_pages" */ + custom_pages: custom_pages[] + /** fetch aggregated fields from the table: "custom_pages" */ + custom_pages_aggregate: custom_pages_aggregate + /** fetch data from the table: "custom_pages" using primary key columns */ + custom_pages_by_pk: (custom_pages | null) dbStats: ((DbStats | null)[] | null) /** fetch data from the table: "db_backups" */ db_backups: db_backups[] @@ -21854,6 +22168,12 @@ export interface query_root { e_timeout_settings_aggregate: e_timeout_settings_aggregate /** fetch data from the table: "e_timeout_settings" using primary key columns */ e_timeout_settings_by_pk: (e_timeout_settings | null) + /** fetch data from the table: "e_tournament_categories" */ + e_tournament_categories: e_tournament_categories[] + /** fetch aggregated fields from the table: "e_tournament_categories" */ + e_tournament_categories_aggregate: e_tournament_categories_aggregate + /** fetch data from the table: "e_tournament_categories" using primary key columns */ + e_tournament_categories_by_pk: (e_tournament_categories | null) /** fetch data from the table: "e_tournament_stage_types" */ e_tournament_stage_types: e_tournament_stage_types[] /** fetch aggregated fields from the table: "e_tournament_stage_types" */ @@ -22474,11 +22794,29 @@ export interface query_root { /** fetch data from the table: "tournament_brackets" using primary key columns */ tournament_brackets_by_pk: (tournament_brackets | null) /** An array relationship */ + tournament_categories: tournament_categories[] + /** An aggregate relationship */ + tournament_categories_aggregate: tournament_categories_aggregate + /** fetch data from the table: "tournament_categories" using primary key columns */ + tournament_categories_by_pk: (tournament_categories | null) + /** fetch data from the table: "tournament_organizer_teams" */ + tournament_organizer_teams: tournament_organizer_teams[] + /** fetch aggregated fields from the table: "tournament_organizer_teams" */ + tournament_organizer_teams_aggregate: tournament_organizer_teams_aggregate + /** fetch data from the table: "tournament_organizer_teams" using primary key columns */ + tournament_organizer_teams_by_pk: (tournament_organizer_teams | null) + /** An array relationship */ tournament_organizers: tournament_organizers[] /** An aggregate relationship */ tournament_organizers_aggregate: tournament_organizers_aggregate /** fetch data from the table: "tournament_organizers" using primary key columns */ tournament_organizers_by_pk: (tournament_organizers | null) + /** fetch data from the table: "tournament_prizes" */ + tournament_prizes: tournament_prizes[] + /** fetch aggregated fields from the table: "tournament_prizes" */ + tournament_prizes_aggregate: tournament_prizes_aggregate + /** fetch data from the table: "tournament_prizes" using primary key columns */ + tournament_prizes_by_pk: (tournament_prizes | null) /** fetch data from the table: "tournament_stage_windows" */ tournament_stage_windows: tournament_stage_windows[] /** fetch aggregated fields from the table: "tournament_stage_windows" */ @@ -23557,6 +23895,14 @@ export interface subscription_root { clip_render_jobs_by_pk: (clip_render_jobs | null) /** fetch data from the table in a streaming manner: "clip_render_jobs" */ clip_render_jobs_stream: clip_render_jobs[] + /** fetch data from the table: "custom_pages" */ + custom_pages: custom_pages[] + /** fetch aggregated fields from the table: "custom_pages" */ + custom_pages_aggregate: custom_pages_aggregate + /** fetch data from the table: "custom_pages" using primary key columns */ + custom_pages_by_pk: (custom_pages | null) + /** fetch data from the table in a streaming manner: "custom_pages" */ + custom_pages_stream: custom_pages[] /** fetch data from the table: "db_backups" */ db_backups: db_backups[] /** fetch aggregated fields from the table: "db_backups" */ @@ -23877,6 +24223,14 @@ export interface subscription_root { e_timeout_settings_by_pk: (e_timeout_settings | null) /** fetch data from the table in a streaming manner: "e_timeout_settings" */ e_timeout_settings_stream: e_timeout_settings[] + /** fetch data from the table: "e_tournament_categories" */ + e_tournament_categories: e_tournament_categories[] + /** fetch aggregated fields from the table: "e_tournament_categories" */ + e_tournament_categories_aggregate: e_tournament_categories_aggregate + /** fetch data from the table: "e_tournament_categories" using primary key columns */ + e_tournament_categories_by_pk: (e_tournament_categories | null) + /** fetch data from the table in a streaming manner: "e_tournament_categories" */ + e_tournament_categories_stream: e_tournament_categories[] /** fetch data from the table: "e_tournament_stage_types" */ e_tournament_stage_types: e_tournament_stage_types[] /** fetch aggregated fields from the table: "e_tournament_stage_types" */ @@ -24638,6 +24992,22 @@ export interface subscription_root { /** fetch data from the table in a streaming manner: "tournament_brackets" */ tournament_brackets_stream: tournament_brackets[] /** An array relationship */ + tournament_categories: tournament_categories[] + /** An aggregate relationship */ + tournament_categories_aggregate: tournament_categories_aggregate + /** fetch data from the table: "tournament_categories" using primary key columns */ + tournament_categories_by_pk: (tournament_categories | null) + /** fetch data from the table in a streaming manner: "tournament_categories" */ + tournament_categories_stream: tournament_categories[] + /** fetch data from the table: "tournament_organizer_teams" */ + tournament_organizer_teams: tournament_organizer_teams[] + /** fetch aggregated fields from the table: "tournament_organizer_teams" */ + tournament_organizer_teams_aggregate: tournament_organizer_teams_aggregate + /** fetch data from the table: "tournament_organizer_teams" using primary key columns */ + tournament_organizer_teams_by_pk: (tournament_organizer_teams | null) + /** fetch data from the table in a streaming manner: "tournament_organizer_teams" */ + tournament_organizer_teams_stream: tournament_organizer_teams[] + /** An array relationship */ tournament_organizers: tournament_organizers[] /** An aggregate relationship */ tournament_organizers_aggregate: tournament_organizers_aggregate @@ -24645,6 +25015,14 @@ export interface subscription_root { tournament_organizers_by_pk: (tournament_organizers | null) /** fetch data from the table in a streaming manner: "tournament_organizers" */ tournament_organizers_stream: tournament_organizers[] + /** fetch data from the table: "tournament_prizes" */ + tournament_prizes: tournament_prizes[] + /** fetch aggregated fields from the table: "tournament_prizes" */ + tournament_prizes_aggregate: tournament_prizes_aggregate + /** fetch data from the table: "tournament_prizes" using primary key columns */ + tournament_prizes_by_pk: (tournament_prizes | null) + /** fetch data from the table in a streaming manner: "tournament_prizes" */ + tournament_prizes_stream: tournament_prizes[] /** fetch data from the table: "tournament_stage_windows" */ tournament_stage_windows: tournament_stage_windows[] /** fetch aggregated fields from the table: "tournament_stage_windows" */ @@ -26244,6 +26622,7 @@ export interface teams { invites: team_invites[] /** An aggregate relationship */ invites_aggregate: team_invites_aggregate + is_organization: Scalars['Boolean'] /** An array relationship */ match_lineups: match_lineups[] /** An aggregate relationship */ @@ -26355,7 +26734,15 @@ export interface teams_mutation_response { /** select columns of table "teams" */ -export type teams_select_column = 'avatar_url' | 'captain_steam_id' | 'id' | 'name' | 'owner_steam_id' | 'short_name' +export type teams_select_column = 'avatar_url' | 'captain_steam_id' | 'id' | 'is_organization' | 'name' | 'owner_steam_id' | 'short_name' + + +/** select "teams_aggregate_bool_exp_bool_and_arguments_columns" columns of table "teams" */ +export type teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns = 'is_organization' + + +/** select "teams_aggregate_bool_exp_bool_or_arguments_columns" columns of table "teams" */ +export type teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns = 'is_organization' /** aggregate stddev on columns */ @@ -26391,7 +26778,7 @@ export interface teams_sum_fields { /** update columns of table "teams" */ -export type teams_update_column = 'avatar_url' | 'captain_steam_id' | 'id' | 'name' | 'owner_steam_id' | 'short_name' +export type teams_update_column = 'avatar_url' | 'captain_steam_id' | 'id' | 'is_organization' | 'name' | 'owner_steam_id' | 'short_name' /** aggregate var_pop on columns */ @@ -26652,8 +27039,146 @@ export interface tournament_brackets_variance_fields { } +/** columns and relationships of "tournament_categories" */ +export interface tournament_categories { + category: e_tournament_categories_enum + /** An object relationship */ + e_tournament_category: e_tournament_categories + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + __typename: 'tournament_categories' +} + + +/** aggregated selection of "tournament_categories" */ +export interface tournament_categories_aggregate { + aggregate: (tournament_categories_aggregate_fields | null) + nodes: tournament_categories[] + __typename: 'tournament_categories_aggregate' +} + + +/** aggregate fields of "tournament_categories" */ +export interface tournament_categories_aggregate_fields { + count: Scalars['Int'] + max: (tournament_categories_max_fields | null) + min: (tournament_categories_min_fields | null) + __typename: 'tournament_categories_aggregate_fields' +} + + +/** unique or primary key constraints on table "tournament_categories" */ +export type tournament_categories_constraint = 'tournament_categories_pkey' + + +/** aggregate max on columns */ +export interface tournament_categories_max_fields { + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_categories_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_categories_min_fields { + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_categories_min_fields' +} + + +/** response of any mutation on the table "tournament_categories" */ +export interface tournament_categories_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_categories[] + __typename: 'tournament_categories_mutation_response' +} + + +/** select columns of table "tournament_categories" */ +export type tournament_categories_select_column = 'category' | 'tournament_id' + + +/** update columns of table "tournament_categories" */ +export type tournament_categories_update_column = 'category' | 'tournament_id' + + +/** columns and relationships of "tournament_organizer_teams" */ +export interface tournament_organizer_teams { + created_at: Scalars['timestamptz'] + /** An object relationship */ + team: teams + team_id: Scalars['uuid'] + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + __typename: 'tournament_organizer_teams' +} + + +/** aggregated selection of "tournament_organizer_teams" */ +export interface tournament_organizer_teams_aggregate { + aggregate: (tournament_organizer_teams_aggregate_fields | null) + nodes: tournament_organizer_teams[] + __typename: 'tournament_organizer_teams_aggregate' +} + + +/** aggregate fields of "tournament_organizer_teams" */ +export interface tournament_organizer_teams_aggregate_fields { + count: Scalars['Int'] + max: (tournament_organizer_teams_max_fields | null) + min: (tournament_organizer_teams_min_fields | null) + __typename: 'tournament_organizer_teams_aggregate_fields' +} + + +/** unique or primary key constraints on table "tournament_organizer_teams" */ +export type tournament_organizer_teams_constraint = 'tournament_organizer_teams_pkey' + + +/** aggregate max on columns */ +export interface tournament_organizer_teams_max_fields { + created_at: (Scalars['timestamptz'] | null) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_organizer_teams_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_organizer_teams_min_fields { + created_at: (Scalars['timestamptz'] | null) + team_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_organizer_teams_min_fields' +} + + +/** response of any mutation on the table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_organizer_teams[] + __typename: 'tournament_organizer_teams_mutation_response' +} + + +/** select columns of table "tournament_organizer_teams" */ +export type tournament_organizer_teams_select_column = 'created_at' | 'team_id' | 'tournament_id' + + +/** update columns of table "tournament_organizer_teams" */ +export type tournament_organizer_teams_update_column = 'created_at' | 'team_id' | 'tournament_id' + + /** columns and relationships of "tournament_organizers" */ export interface tournament_organizers { + /** An object relationship */ + organization_team: (teams | null) + organization_team_id: (Scalars['uuid'] | null) /** An object relationship */ organizer: players steam_id: Scalars['bigint'] @@ -26702,6 +27227,7 @@ export type tournament_organizers_constraint = 'tournament_organizers_pkey' /** aggregate max on columns */ export interface tournament_organizers_max_fields { + organization_team_id: (Scalars['uuid'] | null) steam_id: (Scalars['bigint'] | null) tournament_id: (Scalars['uuid'] | null) __typename: 'tournament_organizers_max_fields' @@ -26710,6 +27236,7 @@ export interface tournament_organizers_max_fields { /** aggregate min on columns */ export interface tournament_organizers_min_fields { + organization_team_id: (Scalars['uuid'] | null) steam_id: (Scalars['bigint'] | null) tournament_id: (Scalars['uuid'] | null) __typename: 'tournament_organizers_min_fields' @@ -26727,7 +27254,7 @@ export interface tournament_organizers_mutation_response { /** select columns of table "tournament_organizers" */ -export type tournament_organizers_select_column = 'steam_id' | 'tournament_id' +export type tournament_organizers_select_column = 'organization_team_id' | 'steam_id' | 'tournament_id' /** aggregate stddev on columns */ @@ -26759,7 +27286,7 @@ export interface tournament_organizers_sum_fields { /** update columns of table "tournament_organizers" */ -export type tournament_organizers_update_column = 'steam_id' | 'tournament_id' +export type tournament_organizers_update_column = 'organization_team_id' | 'steam_id' | 'tournament_id' /** aggregate var_pop on columns */ @@ -26783,6 +27310,147 @@ export interface tournament_organizers_variance_fields { } +/** columns and relationships of "tournament_prizes" */ +export interface tournament_prizes { + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + order: Scalars['Int'] + place: Scalars['String'] + prize: Scalars['String'] + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + __typename: 'tournament_prizes' +} + + +/** aggregated selection of "tournament_prizes" */ +export interface tournament_prizes_aggregate { + aggregate: (tournament_prizes_aggregate_fields | null) + nodes: tournament_prizes[] + __typename: 'tournament_prizes_aggregate' +} + + +/** aggregate fields of "tournament_prizes" */ +export interface tournament_prizes_aggregate_fields { + avg: (tournament_prizes_avg_fields | null) + count: Scalars['Int'] + max: (tournament_prizes_max_fields | null) + min: (tournament_prizes_min_fields | null) + stddev: (tournament_prizes_stddev_fields | null) + stddev_pop: (tournament_prizes_stddev_pop_fields | null) + stddev_samp: (tournament_prizes_stddev_samp_fields | null) + sum: (tournament_prizes_sum_fields | null) + var_pop: (tournament_prizes_var_pop_fields | null) + var_samp: (tournament_prizes_var_samp_fields | null) + variance: (tournament_prizes_variance_fields | null) + __typename: 'tournament_prizes_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface tournament_prizes_avg_fields { + order: (Scalars['Float'] | null) + __typename: 'tournament_prizes_avg_fields' +} + + +/** unique or primary key constraints on table "tournament_prizes" */ +export type tournament_prizes_constraint = 'tournament_prizes_pkey' + + +/** aggregate max on columns */ +export interface tournament_prizes_max_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + order: (Scalars['Int'] | null) + place: (Scalars['String'] | null) + prize: (Scalars['String'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_prizes_max_fields' +} + + +/** aggregate min on columns */ +export interface tournament_prizes_min_fields { + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + order: (Scalars['Int'] | null) + place: (Scalars['String'] | null) + prize: (Scalars['String'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'tournament_prizes_min_fields' +} + + +/** response of any mutation on the table "tournament_prizes" */ +export interface tournament_prizes_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: tournament_prizes[] + __typename: 'tournament_prizes_mutation_response' +} + + +/** select columns of table "tournament_prizes" */ +export type tournament_prizes_select_column = 'created_at' | 'id' | 'order' | 'place' | 'prize' | 'tournament_id' + + +/** aggregate stddev on columns */ +export interface tournament_prizes_stddev_fields { + order: (Scalars['Float'] | null) + __typename: 'tournament_prizes_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface tournament_prizes_stddev_pop_fields { + order: (Scalars['Float'] | null) + __typename: 'tournament_prizes_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface tournament_prizes_stddev_samp_fields { + order: (Scalars['Float'] | null) + __typename: 'tournament_prizes_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface tournament_prizes_sum_fields { + order: (Scalars['Int'] | null) + __typename: 'tournament_prizes_sum_fields' +} + + +/** update columns of table "tournament_prizes" */ +export type tournament_prizes_update_column = 'created_at' | 'id' | 'order' | 'place' | 'prize' | 'tournament_id' + + +/** aggregate var_pop on columns */ +export interface tournament_prizes_var_pop_fields { + order: (Scalars['Float'] | null) + __typename: 'tournament_prizes_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface tournament_prizes_var_samp_fields { + order: (Scalars['Float'] | null) + __typename: 'tournament_prizes_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface tournament_prizes_variance_fields { + order: (Scalars['Float'] | null) + __typename: 'tournament_prizes_variance_fields' +} + + /** columns and relationships of "tournament_stage_windows" */ export interface tournament_stage_windows { closes_at: (Scalars['timestamptz'] | null) @@ -26937,6 +27605,7 @@ export interface tournament_stages { default_best_of: Scalars['Int'] /** An object relationship */ e_tournament_stage_type: e_tournament_stage_types + final_map_advantage: Scalars['Int'] groups: (Scalars['Int'] | null) id: Scalars['uuid'] match_options_id: (Scalars['uuid'] | null) @@ -26994,6 +27663,7 @@ export interface tournament_stages_aggregate_fields { export interface tournament_stages_avg_fields { decider_best_of: (Scalars['Float'] | null) default_best_of: (Scalars['Float'] | null) + final_map_advantage: (Scalars['Float'] | null) groups: (Scalars['Float'] | null) max_rounds: (Scalars['Float'] | null) max_teams: (Scalars['Float'] | null) @@ -27011,6 +27681,7 @@ export type tournament_stages_constraint = 'tournament_stages_pkey' export interface tournament_stages_max_fields { decider_best_of: (Scalars['Int'] | null) default_best_of: (Scalars['Int'] | null) + final_map_advantage: (Scalars['Int'] | null) groups: (Scalars['Int'] | null) id: (Scalars['uuid'] | null) match_options_id: (Scalars['uuid'] | null) @@ -27027,6 +27698,7 @@ export interface tournament_stages_max_fields { export interface tournament_stages_min_fields { decider_best_of: (Scalars['Int'] | null) default_best_of: (Scalars['Int'] | null) + final_map_advantage: (Scalars['Int'] | null) groups: (Scalars['Int'] | null) id: (Scalars['uuid'] | null) match_options_id: (Scalars['uuid'] | null) @@ -27050,7 +27722,7 @@ export interface tournament_stages_mutation_response { /** select columns of table "tournament_stages" */ -export type tournament_stages_select_column = 'decider_best_of' | 'default_best_of' | 'groups' | 'id' | 'match_options_id' | 'max_rounds' | 'max_teams' | 'min_teams' | 'order' | 'settings' | 'swiss_no_elimination' | 'third_place_match' | 'tournament_id' | 'type' +export type tournament_stages_select_column = 'decider_best_of' | 'default_best_of' | 'final_map_advantage' | 'groups' | 'id' | 'match_options_id' | 'max_rounds' | 'max_teams' | 'min_teams' | 'order' | 'settings' | 'swiss_no_elimination' | 'third_place_match' | 'tournament_id' | 'type' /** select "tournament_stages_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournament_stages" */ @@ -27065,6 +27737,7 @@ export type tournament_stages_select_column_tournament_stages_aggregate_bool_exp export interface tournament_stages_stddev_fields { decider_best_of: (Scalars['Float'] | null) default_best_of: (Scalars['Float'] | null) + final_map_advantage: (Scalars['Float'] | null) groups: (Scalars['Float'] | null) max_rounds: (Scalars['Float'] | null) max_teams: (Scalars['Float'] | null) @@ -27078,6 +27751,7 @@ export interface tournament_stages_stddev_fields { export interface tournament_stages_stddev_pop_fields { decider_best_of: (Scalars['Float'] | null) default_best_of: (Scalars['Float'] | null) + final_map_advantage: (Scalars['Float'] | null) groups: (Scalars['Float'] | null) max_rounds: (Scalars['Float'] | null) max_teams: (Scalars['Float'] | null) @@ -27091,6 +27765,7 @@ export interface tournament_stages_stddev_pop_fields { export interface tournament_stages_stddev_samp_fields { decider_best_of: (Scalars['Float'] | null) default_best_of: (Scalars['Float'] | null) + final_map_advantage: (Scalars['Float'] | null) groups: (Scalars['Float'] | null) max_rounds: (Scalars['Float'] | null) max_teams: (Scalars['Float'] | null) @@ -27104,6 +27779,7 @@ export interface tournament_stages_stddev_samp_fields { export interface tournament_stages_sum_fields { decider_best_of: (Scalars['Int'] | null) default_best_of: (Scalars['Int'] | null) + final_map_advantage: (Scalars['Int'] | null) groups: (Scalars['Int'] | null) max_rounds: (Scalars['Int'] | null) max_teams: (Scalars['Int'] | null) @@ -27114,13 +27790,14 @@ export interface tournament_stages_sum_fields { /** update columns of table "tournament_stages" */ -export type tournament_stages_update_column = 'decider_best_of' | 'default_best_of' | 'groups' | 'id' | 'match_options_id' | 'max_rounds' | 'max_teams' | 'min_teams' | 'order' | 'settings' | 'swiss_no_elimination' | 'third_place_match' | 'tournament_id' | 'type' +export type tournament_stages_update_column = 'decider_best_of' | 'default_best_of' | 'final_map_advantage' | 'groups' | 'id' | 'match_options_id' | 'max_rounds' | 'max_teams' | 'min_teams' | 'order' | 'settings' | 'swiss_no_elimination' | 'third_place_match' | 'tournament_id' | 'type' /** aggregate var_pop on columns */ export interface tournament_stages_var_pop_fields { decider_best_of: (Scalars['Float'] | null) default_best_of: (Scalars['Float'] | null) + final_map_advantage: (Scalars['Float'] | null) groups: (Scalars['Float'] | null) max_rounds: (Scalars['Float'] | null) max_teams: (Scalars['Float'] | null) @@ -27134,6 +27811,7 @@ export interface tournament_stages_var_pop_fields { export interface tournament_stages_var_samp_fields { decider_best_of: (Scalars['Float'] | null) default_best_of: (Scalars['Float'] | null) + final_map_advantage: (Scalars['Float'] | null) groups: (Scalars['Float'] | null) max_rounds: (Scalars['Float'] | null) max_teams: (Scalars['Float'] | null) @@ -27147,6 +27825,7 @@ export interface tournament_stages_var_samp_fields { export interface tournament_stages_variance_fields { decider_best_of: (Scalars['Float'] | null) default_best_of: (Scalars['Float'] | null) + final_map_advantage: (Scalars['Float'] | null) groups: (Scalars['Float'] | null) max_rounds: (Scalars['Float'] | null) max_teams: (Scalars['Float'] | null) @@ -27964,6 +28643,7 @@ export interface tournaments { /** An object relationship */ admin: players auto_start: Scalars['Boolean'] + banner: (Scalars['String'] | null) /** A computed field, executes function "can_cancel_tournament" */ can_cancel: (Scalars['Boolean'] | null) /** A computed field, executes function "can_close_tournament_registration" */ @@ -27980,6 +28660,10 @@ export interface tournaments { can_setup: (Scalars['Boolean'] | null) /** A computed field, executes function "can_start_tournament" */ can_start: (Scalars['Boolean'] | null) + /** An array relationship */ + categories: tournament_categories[] + /** An aggregate relationship */ + categories_aggregate: tournament_categories_aggregate created_at: (Scalars['timestamptz'] | null) description: (Scalars['String'] | null) discord_guild_id: (Scalars['String'] | null) @@ -28003,14 +28687,19 @@ export interface tournaments { e_tournament_status: e_tournament_status /** A computed field, executes function "tournament_has_min_teams" */ has_min_teams: (Scalars['Boolean'] | null) + homepage: (Scalars['String'] | null) id: Scalars['uuid'] is_league: Scalars['Boolean'] /** A computed field, executes function "is_tournament_organizer" */ is_organizer: (Scalars['Boolean'] | null) /** A computed field, executes function "joined_tournament" */ joined_tournament: (Scalars['Boolean'] | null) + latitude: (Scalars['float8'] | null) /** An object relationship */ league_season_division: (league_season_divisions | null) + location: (Scalars['String'] | null) + logo: (Scalars['String'] | null) + longitude: (Scalars['float8'] | null) match_options_id: Scalars['uuid'] /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup: (Scalars['Int'] | null) @@ -28021,6 +28710,10 @@ export interface tournaments { options: match_options organizer_steam_id: Scalars['bigint'] /** An array relationship */ + organizer_teams: tournament_organizer_teams[] + /** An aggregate relationship */ + organizer_teams_aggregate: tournament_organizer_teams_aggregate + /** An array relationship */ organizers: tournament_organizers[] /** An aggregate relationship */ organizers_aggregate: tournament_organizers_aggregate @@ -28029,6 +28722,10 @@ export interface tournaments { /** An aggregate relationship */ player_stats_aggregate: v_tournament_player_stats_aggregate /** An array relationship */ + prizes: tournament_prizes[] + /** An aggregate relationship */ + prizes_aggregate: tournament_prizes_aggregate + /** An array relationship */ results: v_team_tournament_results[] /** An aggregate relationship */ results_aggregate: v_team_tournament_results_aggregate @@ -28087,6 +28784,8 @@ export interface tournaments_aggregate_fields { /** aggregate avg on columns */ export interface tournaments_avg_fields { + latitude: (Scalars['Float'] | null) + longitude: (Scalars['Float'] | null) /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup: (Scalars['Int'] | null) /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -28102,12 +28801,18 @@ export type tournaments_constraint = 'tournaments_match_options_id_key' | 'tourn /** aggregate max on columns */ export interface tournaments_max_fields { + banner: (Scalars['String'] | null) created_at: (Scalars['timestamptz'] | null) description: (Scalars['String'] | null) discord_guild_id: (Scalars['String'] | null) discord_role_id: (Scalars['String'] | null) discord_webhook: (Scalars['String'] | null) + homepage: (Scalars['String'] | null) id: (Scalars['uuid'] | null) + latitude: (Scalars['float8'] | null) + location: (Scalars['String'] | null) + logo: (Scalars['String'] | null) + longitude: (Scalars['float8'] | null) match_options_id: (Scalars['uuid'] | null) /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup: (Scalars['Int'] | null) @@ -28123,12 +28828,18 @@ export interface tournaments_max_fields { /** aggregate min on columns */ export interface tournaments_min_fields { + banner: (Scalars['String'] | null) created_at: (Scalars['timestamptz'] | null) description: (Scalars['String'] | null) discord_guild_id: (Scalars['String'] | null) discord_role_id: (Scalars['String'] | null) discord_webhook: (Scalars['String'] | null) + homepage: (Scalars['String'] | null) id: (Scalars['uuid'] | null) + latitude: (Scalars['float8'] | null) + location: (Scalars['String'] | null) + logo: (Scalars['String'] | null) + longitude: (Scalars['float8'] | null) match_options_id: (Scalars['uuid'] | null) /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup: (Scalars['Int'] | null) @@ -28153,7 +28864,11 @@ export interface tournaments_mutation_response { /** select columns of table "tournaments" */ -export type tournaments_select_column = 'auto_start' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'id' | 'is_league' | 'match_options_id' | 'name' | 'organizer_steam_id' | 'scheduling_mode' | 'start' | 'status' | 'trophies_enabled' +export type tournaments_select_column = 'auto_start' | 'banner' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'homepage' | 'id' | 'is_league' | 'latitude' | 'location' | 'logo' | 'longitude' | 'match_options_id' | 'name' | 'organizer_steam_id' | 'scheduling_mode' | 'start' | 'status' | 'trophies_enabled' + + +/** select "tournaments_aggregate_bool_exp_avg_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_avg_arguments_columns = 'latitude' | 'longitude' /** select "tournaments_aggregate_bool_exp_bool_and_arguments_columns" columns of table "tournaments" */ @@ -28164,8 +28879,38 @@ export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_ar export type tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns = 'auto_start' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_voice_enabled' | 'is_league' | 'trophies_enabled' +/** select "tournaments_aggregate_bool_exp_corr_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns = 'latitude' | 'longitude' + + +/** select "tournaments_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns = 'latitude' | 'longitude' + + +/** select "tournaments_aggregate_bool_exp_max_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_max_arguments_columns = 'latitude' | 'longitude' + + +/** select "tournaments_aggregate_bool_exp_min_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_min_arguments_columns = 'latitude' | 'longitude' + + +/** select "tournaments_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_stddev_samp_arguments_columns = 'latitude' | 'longitude' + + +/** select "tournaments_aggregate_bool_exp_sum_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_sum_arguments_columns = 'latitude' | 'longitude' + + +/** select "tournaments_aggregate_bool_exp_var_samp_arguments_columns" columns of table "tournaments" */ +export type tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns = 'latitude' | 'longitude' + + /** aggregate stddev on columns */ export interface tournaments_stddev_fields { + latitude: (Scalars['Float'] | null) + longitude: (Scalars['Float'] | null) /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup: (Scalars['Int'] | null) /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -28177,6 +28922,8 @@ export interface tournaments_stddev_fields { /** aggregate stddev_pop on columns */ export interface tournaments_stddev_pop_fields { + latitude: (Scalars['Float'] | null) + longitude: (Scalars['Float'] | null) /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup: (Scalars['Int'] | null) /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -28188,6 +28935,8 @@ export interface tournaments_stddev_pop_fields { /** aggregate stddev_samp on columns */ export interface tournaments_stddev_samp_fields { + latitude: (Scalars['Float'] | null) + longitude: (Scalars['Float'] | null) /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup: (Scalars['Int'] | null) /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -28199,6 +28948,8 @@ export interface tournaments_stddev_samp_fields { /** aggregate sum on columns */ export interface tournaments_sum_fields { + latitude: (Scalars['float8'] | null) + longitude: (Scalars['float8'] | null) /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup: (Scalars['Int'] | null) /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -28209,11 +28960,13 @@ export interface tournaments_sum_fields { /** update columns of table "tournaments" */ -export type tournaments_update_column = 'auto_start' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'id' | 'is_league' | 'match_options_id' | 'name' | 'organizer_steam_id' | 'scheduling_mode' | 'start' | 'status' | 'trophies_enabled' +export type tournaments_update_column = 'auto_start' | 'banner' | 'created_at' | 'description' | 'discord_guild_id' | 'discord_notifications_enabled' | 'discord_notify_Canceled' | 'discord_notify_Finished' | 'discord_notify_Forfeit' | 'discord_notify_Live' | 'discord_notify_MapPaused' | 'discord_notify_PickingPlayers' | 'discord_notify_Scheduled' | 'discord_notify_Surrendered' | 'discord_notify_Tie' | 'discord_notify_Veto' | 'discord_notify_WaitingForCheckIn' | 'discord_notify_WaitingForServer' | 'discord_role_id' | 'discord_voice_enabled' | 'discord_webhook' | 'homepage' | 'id' | 'is_league' | 'latitude' | 'location' | 'logo' | 'longitude' | 'match_options_id' | 'name' | 'organizer_steam_id' | 'scheduling_mode' | 'start' | 'status' | 'trophies_enabled' /** aggregate var_pop on columns */ export interface tournaments_var_pop_fields { + latitude: (Scalars['Float'] | null) + longitude: (Scalars['Float'] | null) /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup: (Scalars['Int'] | null) /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -28225,6 +28978,8 @@ export interface tournaments_var_pop_fields { /** aggregate var_samp on columns */ export interface tournaments_var_samp_fields { + latitude: (Scalars['Float'] | null) + longitude: (Scalars['Float'] | null) /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup: (Scalars['Int'] | null) /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -28236,6 +28991,8 @@ export interface tournaments_var_samp_fields { /** aggregate variance on columns */ export interface tournaments_variance_fields { + latitude: (Scalars['Float'] | null) + longitude: (Scalars['Float'] | null) /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup: (Scalars['Int'] | null) /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -35905,6 +36662,213 @@ export interface clip_render_jobs_variance_order_by {progress?: (order_by | null export interface clone_league_season_args {_league_season_id?: (Scalars['uuid'] | null)} +/** columns and relationships of "custom_pages" */ +export interface custom_pagesGenqlSelection{ + created_at?: boolean | number + enabled?: boolean | number + exposed_module?: boolean | number + icon?: boolean | number + id?: boolean | number + is_default?: boolean | number + nav_group?: boolean | number + nav_order?: boolean | number + remote_entry_url?: boolean | number + remote_scope?: boolean | number + required_role?: boolean | number + slug?: boolean | number + title?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "custom_pages" */ +export interface custom_pages_aggregateGenqlSelection{ + aggregate?: custom_pages_aggregate_fieldsGenqlSelection + nodes?: custom_pagesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "custom_pages" */ +export interface custom_pages_aggregate_fieldsGenqlSelection{ + avg?: custom_pages_avg_fieldsGenqlSelection + count?: { __args: {columns?: (custom_pages_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: custom_pages_max_fieldsGenqlSelection + min?: custom_pages_min_fieldsGenqlSelection + stddev?: custom_pages_stddev_fieldsGenqlSelection + stddev_pop?: custom_pages_stddev_pop_fieldsGenqlSelection + stddev_samp?: custom_pages_stddev_samp_fieldsGenqlSelection + sum?: custom_pages_sum_fieldsGenqlSelection + var_pop?: custom_pages_var_pop_fieldsGenqlSelection + var_samp?: custom_pages_var_samp_fieldsGenqlSelection + variance?: custom_pages_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface custom_pages_avg_fieldsGenqlSelection{ + nav_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "custom_pages". All fields are combined with a logical 'AND'. */ +export interface custom_pages_bool_exp {_and?: (custom_pages_bool_exp[] | null),_not?: (custom_pages_bool_exp | null),_or?: (custom_pages_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),enabled?: (Boolean_comparison_exp | null),exposed_module?: (String_comparison_exp | null),icon?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),is_default?: (Boolean_comparison_exp | null),nav_group?: (String_comparison_exp | null),nav_order?: (Int_comparison_exp | null),remote_entry_url?: (String_comparison_exp | null),remote_scope?: (String_comparison_exp | null),required_role?: (e_player_roles_enum_comparison_exp | null),slug?: (String_comparison_exp | null),title?: (String_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "custom_pages" */ +export interface custom_pages_inc_input {nav_order?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "custom_pages" */ +export interface custom_pages_insert_input {created_at?: (Scalars['timestamptz'] | null),enabled?: (Scalars['Boolean'] | null),exposed_module?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_default?: (Scalars['Boolean'] | null),nav_group?: (Scalars['String'] | null),nav_order?: (Scalars['Int'] | null),remote_entry_url?: (Scalars['String'] | null),remote_scope?: (Scalars['String'] | null),required_role?: (e_player_roles_enum | null),slug?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface custom_pages_max_fieldsGenqlSelection{ + created_at?: boolean | number + exposed_module?: boolean | number + icon?: boolean | number + id?: boolean | number + nav_group?: boolean | number + nav_order?: boolean | number + remote_entry_url?: boolean | number + remote_scope?: boolean | number + slug?: boolean | number + title?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface custom_pages_min_fieldsGenqlSelection{ + created_at?: boolean | number + exposed_module?: boolean | number + icon?: boolean | number + id?: boolean | number + nav_group?: boolean | number + nav_order?: boolean | number + remote_entry_url?: boolean | number + remote_scope?: boolean | number + slug?: boolean | number + title?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "custom_pages" */ +export interface custom_pages_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: custom_pagesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "custom_pages" */ +export interface custom_pages_on_conflict {constraint: custom_pages_constraint,update_columns?: custom_pages_update_column[],where?: (custom_pages_bool_exp | null)} + + +/** Ordering options when selecting data from "custom_pages". */ +export interface custom_pages_order_by {created_at?: (order_by | null),enabled?: (order_by | null),exposed_module?: (order_by | null),icon?: (order_by | null),id?: (order_by | null),is_default?: (order_by | null),nav_group?: (order_by | null),nav_order?: (order_by | null),remote_entry_url?: (order_by | null),remote_scope?: (order_by | null),required_role?: (order_by | null),slug?: (order_by | null),title?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: custom_pages */ +export interface custom_pages_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "custom_pages" */ +export interface custom_pages_set_input {created_at?: (Scalars['timestamptz'] | null),enabled?: (Scalars['Boolean'] | null),exposed_module?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_default?: (Scalars['Boolean'] | null),nav_group?: (Scalars['String'] | null),nav_order?: (Scalars['Int'] | null),remote_entry_url?: (Scalars['String'] | null),remote_scope?: (Scalars['String'] | null),required_role?: (e_player_roles_enum | null),slug?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface custom_pages_stddev_fieldsGenqlSelection{ + nav_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface custom_pages_stddev_pop_fieldsGenqlSelection{ + nav_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface custom_pages_stddev_samp_fieldsGenqlSelection{ + nav_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "custom_pages" */ +export interface custom_pages_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: custom_pages_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface custom_pages_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),enabled?: (Scalars['Boolean'] | null),exposed_module?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_default?: (Scalars['Boolean'] | null),nav_group?: (Scalars['String'] | null),nav_order?: (Scalars['Int'] | null),remote_entry_url?: (Scalars['String'] | null),remote_scope?: (Scalars['String'] | null),required_role?: (e_player_roles_enum | null),slug?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface custom_pages_sum_fieldsGenqlSelection{ + nav_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface custom_pages_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (custom_pages_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (custom_pages_set_input | null), +/** filter the rows which have to be updated */ +where: custom_pages_bool_exp} + + +/** aggregate var_pop on columns */ +export interface custom_pages_var_pop_fieldsGenqlSelection{ + nav_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface custom_pages_var_samp_fieldsGenqlSelection{ + nav_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface custom_pages_variance_fieldsGenqlSelection{ + nav_order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + /** columns and relationships of "db_backups" */ export interface db_backupsGenqlSelection{ created_at?: boolean | number @@ -41123,6 +42087,139 @@ _set?: (e_timeout_settings_set_input | null), where: e_timeout_settings_bool_exp} +/** columns and relationships of "e_tournament_categories" */ +export interface e_tournament_categoriesGenqlSelection{ + description?: boolean | number + /** An array relationship */ + tournament_categories?: (tournament_categoriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_categories_aggregate?: (tournament_categories_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_tournament_categories" */ +export interface e_tournament_categories_aggregateGenqlSelection{ + aggregate?: e_tournament_categories_aggregate_fieldsGenqlSelection + nodes?: e_tournament_categoriesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_tournament_categories" */ +export interface e_tournament_categories_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_tournament_categories_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_tournament_categories_max_fieldsGenqlSelection + min?: e_tournament_categories_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_tournament_categories". All fields are combined with a logical 'AND'. */ +export interface e_tournament_categories_bool_exp {_and?: (e_tournament_categories_bool_exp[] | null),_not?: (e_tournament_categories_bool_exp | null),_or?: (e_tournament_categories_bool_exp[] | null),description?: (String_comparison_exp | null),tournament_categories?: (tournament_categories_bool_exp | null),tournament_categories_aggregate?: (tournament_categories_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_tournament_categories_enum". All fields are combined with logical 'AND'. */ +export interface e_tournament_categories_enum_comparison_exp {_eq?: (e_tournament_categories_enum | null),_in?: (e_tournament_categories_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_tournament_categories_enum | null),_nin?: (e_tournament_categories_enum[] | null)} + + +/** input type for inserting data into table "e_tournament_categories" */ +export interface e_tournament_categories_insert_input {description?: (Scalars['String'] | null),tournament_categories?: (tournament_categories_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_tournament_categories_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_tournament_categories_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_tournament_categories" */ +export interface e_tournament_categories_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_tournament_categoriesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_tournament_categories" */ +export interface e_tournament_categories_obj_rel_insert_input {data: e_tournament_categories_insert_input, +/** upsert condition */ +on_conflict?: (e_tournament_categories_on_conflict | null)} + + +/** on_conflict condition type for table "e_tournament_categories" */ +export interface e_tournament_categories_on_conflict {constraint: e_tournament_categories_constraint,update_columns?: e_tournament_categories_update_column[],where?: (e_tournament_categories_bool_exp | null)} + + +/** Ordering options when selecting data from "e_tournament_categories". */ +export interface e_tournament_categories_order_by {description?: (order_by | null),tournament_categories_aggregate?: (tournament_categories_aggregate_order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_tournament_categories */ +export interface e_tournament_categories_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_tournament_categories" */ +export interface e_tournament_categories_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_tournament_categories" */ +export interface e_tournament_categories_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_tournament_categories_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_tournament_categories_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_tournament_categories_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_tournament_categories_set_input | null), +/** filter the rows which have to be updated */ +where: e_tournament_categories_bool_exp} + + /** columns and relationships of "e_tournament_stage_types" */ export interface e_tournament_stage_typesGenqlSelection{ description?: boolean | number @@ -51199,6 +52296,7 @@ export interface match_optionsGenqlSelection{ check_in_setting?: boolean | number coaches?: boolean | number default_models?: boolean | number + halftime_pausematch?: boolean | number /** A computed field, executes function "has_active_matches" */ has_active_matches?: boolean | number id?: boolean | number @@ -51241,6 +52339,7 @@ export interface match_optionsGenqlSelection{ ready_setting?: boolean | number region_veto?: boolean | number regions?: boolean | number + round_restart_delay?: boolean | number tech_timeout_setting?: boolean | number timeout_setting?: boolean | number /** An object relationship */ @@ -51290,6 +52389,7 @@ export interface match_options_avg_fieldsGenqlSelection{ live_match_timeout?: boolean | number mr?: boolean | number number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number tv_delay?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -51297,15 +52397,15 @@ export interface match_options_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "match_options". All fields are combined with a logical 'AND'. */ -export interface match_options_bool_exp {_and?: (match_options_bool_exp[] | null),_not?: (match_options_bool_exp | null),_or?: (match_options_bool_exp[] | null),auto_cancel_duration?: (Int_comparison_exp | null),auto_cancellation?: (Boolean_comparison_exp | null),best_of?: (Int_comparison_exp | null),check_in_setting?: (e_check_in_settings_enum_comparison_exp | null),coaches?: (Boolean_comparison_exp | null),default_models?: (Boolean_comparison_exp | null),has_active_matches?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),knife_round?: (Boolean_comparison_exp | null),live_match_timeout?: (Int_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),map_veto?: (Boolean_comparison_exp | null),match_mode?: (e_match_mode_enum_comparison_exp | null),matches?: (matches_bool_exp | null),matches_aggregate?: (matches_aggregate_bool_exp | null),mr?: (Int_comparison_exp | null),number_of_substitutes?: (Int_comparison_exp | null),overtime?: (Boolean_comparison_exp | null),prefer_dedicated_server?: (Boolean_comparison_exp | null),ready_setting?: (e_ready_settings_enum_comparison_exp | null),region_veto?: (Boolean_comparison_exp | null),regions?: (String_array_comparison_exp | null),tech_timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_bracket?: (tournament_brackets_bool_exp | null),tournament_stage?: (tournament_stages_bool_exp | null),tv_delay?: (Int_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null)} +export interface match_options_bool_exp {_and?: (match_options_bool_exp[] | null),_not?: (match_options_bool_exp | null),_or?: (match_options_bool_exp[] | null),auto_cancel_duration?: (Int_comparison_exp | null),auto_cancellation?: (Boolean_comparison_exp | null),best_of?: (Int_comparison_exp | null),check_in_setting?: (e_check_in_settings_enum_comparison_exp | null),coaches?: (Boolean_comparison_exp | null),default_models?: (Boolean_comparison_exp | null),halftime_pausematch?: (Boolean_comparison_exp | null),has_active_matches?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),knife_round?: (Boolean_comparison_exp | null),live_match_timeout?: (Int_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),map_veto?: (Boolean_comparison_exp | null),match_mode?: (e_match_mode_enum_comparison_exp | null),matches?: (matches_bool_exp | null),matches_aggregate?: (matches_aggregate_bool_exp | null),mr?: (Int_comparison_exp | null),number_of_substitutes?: (Int_comparison_exp | null),overtime?: (Boolean_comparison_exp | null),prefer_dedicated_server?: (Boolean_comparison_exp | null),ready_setting?: (e_ready_settings_enum_comparison_exp | null),region_veto?: (Boolean_comparison_exp | null),regions?: (String_array_comparison_exp | null),round_restart_delay?: (Int_comparison_exp | null),tech_timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),timeout_setting?: (e_timeout_settings_enum_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_bracket?: (tournament_brackets_bool_exp | null),tournament_stage?: (tournament_stages_bool_exp | null),tv_delay?: (Int_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null)} /** input type for incrementing numeric columns in table "match_options" */ -export interface match_options_inc_input {auto_cancel_duration?: (Scalars['Int'] | null),best_of?: (Scalars['Int'] | null),live_match_timeout?: (Scalars['Int'] | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),tv_delay?: (Scalars['Int'] | null)} +export interface match_options_inc_input {auto_cancel_duration?: (Scalars['Int'] | null),best_of?: (Scalars['Int'] | null),live_match_timeout?: (Scalars['Int'] | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),round_restart_delay?: (Scalars['Int'] | null),tv_delay?: (Scalars['Int'] | null)} /** input type for inserting data into table "match_options" */ -export interface match_options_insert_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),matches?: (matches_arr_rel_insert_input | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_bracket?: (tournament_brackets_obj_rel_insert_input | null),tournament_stage?: (tournament_stages_obj_rel_insert_input | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null)} +export interface match_options_insert_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),halftime_pausematch?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),matches?: (matches_arr_rel_insert_input | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),round_restart_delay?: (Scalars['Int'] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_bracket?: (tournament_brackets_obj_rel_insert_input | null),tournament_stage?: (tournament_stages_obj_rel_insert_input | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null)} /** aggregate max on columns */ @@ -51319,6 +52419,7 @@ export interface match_options_max_fieldsGenqlSelection{ mr?: boolean | number number_of_substitutes?: boolean | number regions?: boolean | number + round_restart_delay?: boolean | number tv_delay?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -51336,6 +52437,7 @@ export interface match_options_min_fieldsGenqlSelection{ mr?: boolean | number number_of_substitutes?: boolean | number regions?: boolean | number + round_restart_delay?: boolean | number tv_delay?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -51364,7 +52466,7 @@ export interface match_options_on_conflict {constraint: match_options_constraint /** Ordering options when selecting data from "match_options". */ -export interface match_options_order_by {auto_cancel_duration?: (order_by | null),auto_cancellation?: (order_by | null),best_of?: (order_by | null),check_in_setting?: (order_by | null),coaches?: (order_by | null),default_models?: (order_by | null),has_active_matches?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),knife_round?: (order_by | null),live_match_timeout?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),map_veto?: (order_by | null),match_mode?: (order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),overtime?: (order_by | null),prefer_dedicated_server?: (order_by | null),ready_setting?: (order_by | null),region_veto?: (order_by | null),regions?: (order_by | null),tech_timeout_setting?: (order_by | null),timeout_setting?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_bracket?: (tournament_brackets_order_by | null),tournament_stage?: (tournament_stages_order_by | null),tv_delay?: (order_by | null),type?: (order_by | null)} +export interface match_options_order_by {auto_cancel_duration?: (order_by | null),auto_cancellation?: (order_by | null),best_of?: (order_by | null),check_in_setting?: (order_by | null),coaches?: (order_by | null),default_models?: (order_by | null),halftime_pausematch?: (order_by | null),has_active_matches?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),knife_round?: (order_by | null),live_match_timeout?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),map_veto?: (order_by | null),match_mode?: (order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),mr?: (order_by | null),number_of_substitutes?: (order_by | null),overtime?: (order_by | null),prefer_dedicated_server?: (order_by | null),ready_setting?: (order_by | null),region_veto?: (order_by | null),regions?: (order_by | null),round_restart_delay?: (order_by | null),tech_timeout_setting?: (order_by | null),timeout_setting?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_bracket?: (tournament_brackets_order_by | null),tournament_stage?: (tournament_stages_order_by | null),tv_delay?: (order_by | null),type?: (order_by | null)} /** primary key columns input for table: match_options */ @@ -51372,7 +52474,7 @@ export interface match_options_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "match_options" */ -export interface match_options_set_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null)} +export interface match_options_set_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),halftime_pausematch?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),round_restart_delay?: (Scalars['Int'] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null)} /** aggregate stddev on columns */ @@ -51382,6 +52484,7 @@ export interface match_options_stddev_fieldsGenqlSelection{ live_match_timeout?: boolean | number mr?: boolean | number number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number tv_delay?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -51395,6 +52498,7 @@ export interface match_options_stddev_pop_fieldsGenqlSelection{ live_match_timeout?: boolean | number mr?: boolean | number number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number tv_delay?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -51408,6 +52512,7 @@ export interface match_options_stddev_samp_fieldsGenqlSelection{ live_match_timeout?: boolean | number mr?: boolean | number number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number tv_delay?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -51423,7 +52528,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface match_options_stream_cursor_value_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null)} +export interface match_options_stream_cursor_value_input {auto_cancel_duration?: (Scalars['Int'] | null),auto_cancellation?: (Scalars['Boolean'] | null),best_of?: (Scalars['Int'] | null),check_in_setting?: (e_check_in_settings_enum | null),coaches?: (Scalars['Boolean'] | null),default_models?: (Scalars['Boolean'] | null),halftime_pausematch?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),invite_code?: (Scalars['String'] | null),knife_round?: (Scalars['Boolean'] | null),live_match_timeout?: (Scalars['Int'] | null),map_pool_id?: (Scalars['uuid'] | null),map_veto?: (Scalars['Boolean'] | null),match_mode?: (e_match_mode_enum | null),mr?: (Scalars['Int'] | null),number_of_substitutes?: (Scalars['Int'] | null),overtime?: (Scalars['Boolean'] | null),prefer_dedicated_server?: (Scalars['Boolean'] | null),ready_setting?: (e_ready_settings_enum | null),region_veto?: (Scalars['Boolean'] | null),regions?: (Scalars['String'][] | null),round_restart_delay?: (Scalars['Int'] | null),tech_timeout_setting?: (e_timeout_settings_enum | null),timeout_setting?: (e_timeout_settings_enum | null),tv_delay?: (Scalars['Int'] | null),type?: (e_match_types_enum | null)} /** aggregate sum on columns */ @@ -51433,6 +52538,7 @@ export interface match_options_sum_fieldsGenqlSelection{ live_match_timeout?: boolean | number mr?: boolean | number number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number tv_delay?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -51454,6 +52560,7 @@ export interface match_options_var_pop_fieldsGenqlSelection{ live_match_timeout?: boolean | number mr?: boolean | number number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number tv_delay?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -51467,6 +52574,7 @@ export interface match_options_var_samp_fieldsGenqlSelection{ live_match_timeout?: boolean | number mr?: boolean | number number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number tv_delay?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -51480,6 +52588,7 @@ export interface match_options_variance_fieldsGenqlSelection{ live_match_timeout?: boolean | number mr?: boolean | number number_of_substitutes?: boolean | number + round_restart_delay?: boolean | number tv_delay?: boolean | number __typename?: boolean | number __scalar?: boolean | number @@ -53120,6 +54229,12 @@ export interface mutation_rootGenqlSelection{ where: clip_render_jobs_bool_exp} }) /** delete single row from the table: "clip_render_jobs" */ delete_clip_render_jobs_by_pk?: (clip_render_jobsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "custom_pages" */ + delete_custom_pages?: (custom_pages_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: custom_pages_bool_exp} }) + /** delete single row from the table: "custom_pages" */ + delete_custom_pages_by_pk?: (custom_pagesGenqlSelection & { __args: {id: Scalars['uuid']} }) /** delete data from the table: "db_backups" */ delete_db_backups?: (db_backups_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -53360,6 +54475,12 @@ export interface mutation_rootGenqlSelection{ where: e_timeout_settings_bool_exp} }) /** delete single row from the table: "e_timeout_settings" */ delete_e_timeout_settings_by_pk?: (e_timeout_settingsGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_tournament_categories" */ + delete_e_tournament_categories?: (e_tournament_categories_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_tournament_categories_bool_exp} }) + /** delete single row from the table: "e_tournament_categories" */ + delete_e_tournament_categories_by_pk?: (e_tournament_categoriesGenqlSelection & { __args: {value: Scalars['String']} }) /** delete data from the table: "e_tournament_stage_types" */ delete_e_tournament_stage_types?: (e_tournament_stage_types_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -53894,12 +55015,30 @@ export interface mutation_rootGenqlSelection{ where: tournament_brackets_bool_exp} }) /** delete single row from the table: "tournament_brackets" */ delete_tournament_brackets_by_pk?: (tournament_bracketsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "tournament_categories" */ + delete_tournament_categories?: (tournament_categories_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_categories_bool_exp} }) + /** delete single row from the table: "tournament_categories" */ + delete_tournament_categories_by_pk?: (tournament_categoriesGenqlSelection & { __args: {category: e_tournament_categories_enum, tournament_id: Scalars['uuid']} }) + /** delete data from the table: "tournament_organizer_teams" */ + delete_tournament_organizer_teams?: (tournament_organizer_teams_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_organizer_teams_bool_exp} }) + /** delete single row from the table: "tournament_organizer_teams" */ + delete_tournament_organizer_teams_by_pk?: (tournament_organizer_teamsGenqlSelection & { __args: {team_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) /** delete data from the table: "tournament_organizers" */ delete_tournament_organizers?: (tournament_organizers_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ where: tournament_organizers_bool_exp} }) /** delete single row from the table: "tournament_organizers" */ delete_tournament_organizers_by_pk?: (tournament_organizersGenqlSelection & { __args: {steam_id: Scalars['bigint'], tournament_id: Scalars['uuid']} }) + /** delete data from the table: "tournament_prizes" */ + delete_tournament_prizes?: (tournament_prizes_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: tournament_prizes_bool_exp} }) + /** delete single row from the table: "tournament_prizes" */ + delete_tournament_prizes_by_pk?: (tournament_prizesGenqlSelection & { __args: {id: Scalars['uuid']} }) /** delete data from the table: "tournament_stage_windows" */ delete_tournament_stage_windows?: (tournament_stage_windows_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -54023,6 +55162,18 @@ export interface mutation_rootGenqlSelection{ object: clip_render_jobs_insert_input, /** upsert condition */ on_conflict?: (clip_render_jobs_on_conflict | null)} }) + /** insert data into the table: "custom_pages" */ + insert_custom_pages?: (custom_pages_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: custom_pages_insert_input[], + /** upsert condition */ + on_conflict?: (custom_pages_on_conflict | null)} }) + /** insert a single row into the table: "custom_pages" */ + insert_custom_pages_one?: (custom_pagesGenqlSelection & { __args: { + /** the row to be inserted */ + object: custom_pages_insert_input, + /** upsert condition */ + on_conflict?: (custom_pages_on_conflict | null)} }) /** insert data into the table: "db_backups" */ insert_db_backups?: (db_backups_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -54503,6 +55654,18 @@ export interface mutation_rootGenqlSelection{ object: e_timeout_settings_insert_input, /** upsert condition */ on_conflict?: (e_timeout_settings_on_conflict | null)} }) + /** insert data into the table: "e_tournament_categories" */ + insert_e_tournament_categories?: (e_tournament_categories_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_tournament_categories_insert_input[], + /** upsert condition */ + on_conflict?: (e_tournament_categories_on_conflict | null)} }) + /** insert a single row into the table: "e_tournament_categories" */ + insert_e_tournament_categories_one?: (e_tournament_categoriesGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_tournament_categories_insert_input, + /** upsert condition */ + on_conflict?: (e_tournament_categories_on_conflict | null)} }) /** insert data into the table: "e_tournament_stage_types" */ insert_e_tournament_stage_types?: (e_tournament_stage_types_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -55571,6 +56734,30 @@ export interface mutation_rootGenqlSelection{ object: tournament_brackets_insert_input, /** upsert condition */ on_conflict?: (tournament_brackets_on_conflict | null)} }) + /** insert data into the table: "tournament_categories" */ + insert_tournament_categories?: (tournament_categories_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_categories_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_categories_on_conflict | null)} }) + /** insert a single row into the table: "tournament_categories" */ + insert_tournament_categories_one?: (tournament_categoriesGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_categories_insert_input, + /** upsert condition */ + on_conflict?: (tournament_categories_on_conflict | null)} }) + /** insert data into the table: "tournament_organizer_teams" */ + insert_tournament_organizer_teams?: (tournament_organizer_teams_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_organizer_teams_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_organizer_teams_on_conflict | null)} }) + /** insert a single row into the table: "tournament_organizer_teams" */ + insert_tournament_organizer_teams_one?: (tournament_organizer_teamsGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_organizer_teams_insert_input, + /** upsert condition */ + on_conflict?: (tournament_organizer_teams_on_conflict | null)} }) /** insert data into the table: "tournament_organizers" */ insert_tournament_organizers?: (tournament_organizers_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -55583,6 +56770,18 @@ export interface mutation_rootGenqlSelection{ object: tournament_organizers_insert_input, /** upsert condition */ on_conflict?: (tournament_organizers_on_conflict | null)} }) + /** insert data into the table: "tournament_prizes" */ + insert_tournament_prizes?: (tournament_prizes_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: tournament_prizes_insert_input[], + /** upsert condition */ + on_conflict?: (tournament_prizes_on_conflict | null)} }) + /** insert a single row into the table: "tournament_prizes" */ + insert_tournament_prizes_one?: (tournament_prizesGenqlSelection & { __args: { + /** the row to be inserted */ + object: tournament_prizes_insert_input, + /** upsert condition */ + on_conflict?: (tournament_prizes_on_conflict | null)} }) /** insert data into the table: "tournament_stage_windows" */ insert_tournament_stage_windows?: (tournament_stage_windows_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -55998,6 +57197,24 @@ export interface mutation_rootGenqlSelection{ update_clip_render_jobs_many?: (clip_render_jobs_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: clip_render_jobs_updates[]} }) + /** update data of the table: "custom_pages" */ + update_custom_pages?: (custom_pages_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (custom_pages_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (custom_pages_set_input | null), + /** filter the rows which have to be updated */ + where: custom_pages_bool_exp} }) + /** update single row of the table: "custom_pages" */ + update_custom_pages_by_pk?: (custom_pagesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (custom_pages_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (custom_pages_set_input | null), pk_columns: custom_pages_pk_columns_input} }) + /** update multiples rows of table: "custom_pages" */ + update_custom_pages_many?: (custom_pages_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: custom_pages_updates[]} }) /** update data of the table: "db_backups" */ update_db_backups?: (db_backups_mutation_responseGenqlSelection & { __args: { /** increments the numeric columns with given value of the filtered values */ @@ -56574,6 +57791,20 @@ export interface mutation_rootGenqlSelection{ update_e_timeout_settings_many?: (e_timeout_settings_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: e_timeout_settings_updates[]} }) + /** update data of the table: "e_tournament_categories" */ + update_e_tournament_categories?: (e_tournament_categories_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_tournament_categories_set_input | null), + /** filter the rows which have to be updated */ + where: e_tournament_categories_bool_exp} }) + /** update single row of the table: "e_tournament_categories" */ + update_e_tournament_categories_by_pk?: (e_tournament_categoriesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_tournament_categories_set_input | null), pk_columns: e_tournament_categories_pk_columns_input} }) + /** update multiples rows of table: "e_tournament_categories" */ + update_e_tournament_categories_many?: (e_tournament_categories_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_tournament_categories_updates[]} }) /** update data of the table: "e_tournament_stage_types" */ update_e_tournament_stage_types?: (e_tournament_stage_types_mutation_responseGenqlSelection & { __args: { /** sets the columns of the filtered rows to the given values */ @@ -58282,6 +59513,34 @@ export interface mutation_rootGenqlSelection{ update_tournament_brackets_many?: (tournament_brackets_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: tournament_brackets_updates[]} }) + /** update data of the table: "tournament_categories" */ + update_tournament_categories?: (tournament_categories_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_categories_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_categories_bool_exp} }) + /** update single row of the table: "tournament_categories" */ + update_tournament_categories_by_pk?: (tournament_categoriesGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_categories_set_input | null), pk_columns: tournament_categories_pk_columns_input} }) + /** update multiples rows of table: "tournament_categories" */ + update_tournament_categories_many?: (tournament_categories_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_categories_updates[]} }) + /** update data of the table: "tournament_organizer_teams" */ + update_tournament_organizer_teams?: (tournament_organizer_teams_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_organizer_teams_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_organizer_teams_bool_exp} }) + /** update single row of the table: "tournament_organizer_teams" */ + update_tournament_organizer_teams_by_pk?: (tournament_organizer_teamsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_organizer_teams_set_input | null), pk_columns: tournament_organizer_teams_pk_columns_input} }) + /** update multiples rows of table: "tournament_organizer_teams" */ + update_tournament_organizer_teams_many?: (tournament_organizer_teams_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_organizer_teams_updates[]} }) /** update data of the table: "tournament_organizers" */ update_tournament_organizers?: (tournament_organizers_mutation_responseGenqlSelection & { __args: { /** increments the numeric columns with given value of the filtered values */ @@ -58300,6 +59559,24 @@ export interface mutation_rootGenqlSelection{ update_tournament_organizers_many?: (tournament_organizers_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: tournament_organizers_updates[]} }) + /** update data of the table: "tournament_prizes" */ + update_tournament_prizes?: (tournament_prizes_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_prizes_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_prizes_set_input | null), + /** filter the rows which have to be updated */ + where: tournament_prizes_bool_exp} }) + /** update single row of the table: "tournament_prizes" */ + update_tournament_prizes_by_pk?: (tournament_prizesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (tournament_prizes_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (tournament_prizes_set_input | null), pk_columns: tournament_prizes_pk_columns_input} }) + /** update multiples rows of table: "tournament_prizes" */ + update_tournament_prizes_many?: (tournament_prizes_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: tournament_prizes_updates[]} }) /** update data of the table: "tournament_stage_windows" */ update_tournament_stage_windows?: (tournament_stage_windows_mutation_responseGenqlSelection & { __args: { /** increments the numeric columns with given value of the filtered values */ @@ -70192,6 +71469,32 @@ export interface query_rootGenqlSelection{ where?: (clip_render_jobs_bool_exp | null)} }) /** fetch data from the table: "clip_render_jobs" using primary key columns */ clip_render_jobs_by_pk?: (clip_render_jobsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "custom_pages" */ + custom_pages?: (custom_pagesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (custom_pages_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?: (custom_pages_order_by[] | null), + /** filter the rows returned */ + where?: (custom_pages_bool_exp | null)} }) + /** fetch aggregated fields from the table: "custom_pages" */ + custom_pages_aggregate?: (custom_pages_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (custom_pages_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?: (custom_pages_order_by[] | null), + /** filter the rows returned */ + where?: (custom_pages_bool_exp | null)} }) + /** fetch data from the table: "custom_pages" using primary key columns */ + custom_pages_by_pk?: (custom_pagesGenqlSelection & { __args: {id: Scalars['uuid']} }) dbStats?: DbStatsGenqlSelection /** fetch data from the table: "db_backups" */ db_backups?: (db_backupsGenqlSelection & { __args?: { @@ -71233,6 +72536,32 @@ export interface query_rootGenqlSelection{ where?: (e_timeout_settings_bool_exp | null)} }) /** fetch data from the table: "e_timeout_settings" using primary key columns */ e_timeout_settings_by_pk?: (e_timeout_settingsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_tournament_categories" */ + e_tournament_categories?: (e_tournament_categoriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_categories_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_tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_categories_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_tournament_categories" */ + e_tournament_categories_aggregate?: (e_tournament_categories_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_categories_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_tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_categories_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_categories" using primary key columns */ + e_tournament_categories_by_pk?: (e_tournament_categoriesGenqlSelection & { __args: {value: Scalars['String']} }) /** fetch data from the table: "e_tournament_stage_types" */ e_tournament_stage_types?: (e_tournament_stage_typesGenqlSelection & { __args?: { /** distinct select on columns */ @@ -73849,6 +75178,58 @@ export interface query_rootGenqlSelection{ /** fetch data from the table: "tournament_brackets" using primary key columns */ tournament_brackets_by_pk?: (tournament_bracketsGenqlSelection & { __args: {id: Scalars['uuid']} }) /** An array relationship */ + tournament_categories?: (tournament_categoriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_categories_aggregate?: (tournament_categories_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** fetch data from the table: "tournament_categories" using primary key columns */ + tournament_categories_by_pk?: (tournament_categoriesGenqlSelection & { __args: {category: e_tournament_categories_enum, tournament_id: Scalars['uuid']} }) + /** fetch data from the table: "tournament_organizer_teams" */ + tournament_organizer_teams?: (tournament_organizer_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_organizer_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_organizer_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizer_teams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_organizer_teams" */ + tournament_organizer_teams_aggregate?: (tournament_organizer_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_organizer_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_organizer_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizer_teams_bool_exp | null)} }) + /** fetch data from the table: "tournament_organizer_teams" using primary key columns */ + tournament_organizer_teams_by_pk?: (tournament_organizer_teamsGenqlSelection & { __args: {team_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) + /** An array relationship */ tournament_organizers?: (tournament_organizersGenqlSelection & { __args?: { /** distinct select on columns */ distinct_on?: (tournament_organizers_select_column[] | null), @@ -73874,6 +75255,32 @@ export interface query_rootGenqlSelection{ where?: (tournament_organizers_bool_exp | null)} }) /** fetch data from the table: "tournament_organizers" using primary key columns */ tournament_organizers_by_pk?: (tournament_organizersGenqlSelection & { __args: {steam_id: Scalars['bigint'], tournament_id: Scalars['uuid']} }) + /** fetch data from the table: "tournament_prizes" */ + tournament_prizes?: (tournament_prizesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_prizes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_prizes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_prizes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_prizes" */ + tournament_prizes_aggregate?: (tournament_prizes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_prizes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_prizes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_prizes_bool_exp | null)} }) + /** fetch data from the table: "tournament_prizes" using primary key columns */ + tournament_prizes_by_pk?: (tournament_prizesGenqlSelection & { __args: {id: Scalars['uuid']} }) /** fetch data from the table: "tournament_stage_windows" */ tournament_stage_windows?: (tournament_stage_windowsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -76311,6 +77718,40 @@ export interface subscription_rootGenqlSelection{ cursor: (clip_render_jobs_stream_cursor_input | null)[], /** filter the rows returned */ where?: (clip_render_jobs_bool_exp | null)} }) + /** fetch data from the table: "custom_pages" */ + custom_pages?: (custom_pagesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (custom_pages_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?: (custom_pages_order_by[] | null), + /** filter the rows returned */ + where?: (custom_pages_bool_exp | null)} }) + /** fetch aggregated fields from the table: "custom_pages" */ + custom_pages_aggregate?: (custom_pages_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (custom_pages_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?: (custom_pages_order_by[] | null), + /** filter the rows returned */ + where?: (custom_pages_bool_exp | null)} }) + /** fetch data from the table: "custom_pages" using primary key columns */ + custom_pages_by_pk?: (custom_pagesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "custom_pages" */ + custom_pages_stream?: (custom_pagesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (custom_pages_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (custom_pages_bool_exp | null)} }) /** fetch data from the table: "db_backups" */ db_backups?: (db_backupsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -77671,6 +79112,40 @@ export interface subscription_rootGenqlSelection{ cursor: (e_timeout_settings_stream_cursor_input | null)[], /** filter the rows returned */ where?: (e_timeout_settings_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_categories" */ + e_tournament_categories?: (e_tournament_categoriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_categories_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_tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_categories_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_tournament_categories" */ + e_tournament_categories_aggregate?: (e_tournament_categories_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_tournament_categories_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_tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (e_tournament_categories_bool_exp | null)} }) + /** fetch data from the table: "e_tournament_categories" using primary key columns */ + e_tournament_categories_by_pk?: (e_tournament_categoriesGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_tournament_categories" */ + e_tournament_categories_stream?: (e_tournament_categoriesGenqlSelection & { __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_tournament_categories_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_tournament_categories_bool_exp | null)} }) /** fetch data from the table: "e_tournament_stage_types" */ e_tournament_stage_types?: (e_tournament_stage_typesGenqlSelection & { __args?: { /** distinct select on columns */ @@ -80998,6 +82473,74 @@ export interface subscription_rootGenqlSelection{ /** filter the rows returned */ where?: (tournament_brackets_bool_exp | null)} }) /** An array relationship */ + tournament_categories?: (tournament_categoriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** An aggregate relationship */ + tournament_categories_aggregate?: (tournament_categories_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** fetch data from the table: "tournament_categories" using primary key columns */ + tournament_categories_by_pk?: (tournament_categoriesGenqlSelection & { __args: {category: e_tournament_categories_enum, tournament_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_categories" */ + tournament_categories_stream?: (tournament_categoriesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_categories_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** fetch data from the table: "tournament_organizer_teams" */ + tournament_organizer_teams?: (tournament_organizer_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_organizer_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_organizer_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizer_teams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_organizer_teams" */ + tournament_organizer_teams_aggregate?: (tournament_organizer_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_organizer_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_organizer_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizer_teams_bool_exp | null)} }) + /** fetch data from the table: "tournament_organizer_teams" using primary key columns */ + tournament_organizer_teams_by_pk?: (tournament_organizer_teamsGenqlSelection & { __args: {team_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_organizer_teams" */ + tournament_organizer_teams_stream?: (tournament_organizer_teamsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_organizer_teams_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_organizer_teams_bool_exp | null)} }) + /** An array relationship */ tournament_organizers?: (tournament_organizersGenqlSelection & { __args?: { /** distinct select on columns */ distinct_on?: (tournament_organizers_select_column[] | null), @@ -81031,6 +82574,40 @@ export interface subscription_rootGenqlSelection{ cursor: (tournament_organizers_stream_cursor_input | null)[], /** filter the rows returned */ where?: (tournament_organizers_bool_exp | null)} }) + /** fetch data from the table: "tournament_prizes" */ + tournament_prizes?: (tournament_prizesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_prizes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_prizes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_prizes_bool_exp | null)} }) + /** fetch aggregated fields from the table: "tournament_prizes" */ + tournament_prizes_aggregate?: (tournament_prizes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_prizes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_prizes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_prizes_bool_exp | null)} }) + /** fetch data from the table: "tournament_prizes" using primary key columns */ + tournament_prizes_by_pk?: (tournament_prizesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "tournament_prizes" */ + tournament_prizes_stream?: (tournament_prizesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (tournament_prizes_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (tournament_prizes_bool_exp | null)} }) /** fetch data from the table: "tournament_stage_windows" */ tournament_stage_windows?: (tournament_stage_windowsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -84395,6 +85972,7 @@ export interface teamsGenqlSelection{ order_by?: (team_invites_order_by[] | null), /** filter the rows returned */ where?: (team_invites_bool_exp | null)} }) + is_organization?: boolean | number /** An array relationship */ match_lineups?: (match_lineupsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -84529,7 +86107,11 @@ export interface teams_aggregateGenqlSelection{ __scalar?: boolean | number } -export interface teams_aggregate_bool_exp {count?: (teams_aggregate_bool_exp_count | null)} +export interface teams_aggregate_bool_exp {bool_and?: (teams_aggregate_bool_exp_bool_and | null),bool_or?: (teams_aggregate_bool_exp_bool_or | null),count?: (teams_aggregate_bool_exp_count | null)} + +export interface teams_aggregate_bool_exp_bool_and {arguments: teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (teams_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface teams_aggregate_bool_exp_bool_or {arguments: teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (teams_bool_exp | null),predicate: Boolean_comparison_exp} export interface teams_aggregate_bool_exp_count {arguments?: (teams_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (teams_bool_exp | null),predicate: Int_comparison_exp} @@ -84576,7 +86158,7 @@ export interface teams_avg_order_by {captain_steam_id?: (order_by | null),owner_ /** Boolean expression to filter rows from the table "teams". All fields are combined with a logical 'AND'. */ -export interface teams_bool_exp {_and?: (teams_bool_exp[] | null),_not?: (teams_bool_exp | null),_or?: (teams_bool_exp[] | null),avatar_url?: (String_comparison_exp | null),can_change_role?: (Boolean_comparison_exp | null),can_invite?: (Boolean_comparison_exp | null),can_manage_scrims?: (Boolean_comparison_exp | null),can_remove?: (Boolean_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),invites?: (team_invites_bool_exp | null),invites_aggregate?: (team_invites_aggregate_bool_exp | null),match_lineups?: (match_lineups_bool_exp | null),match_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),name?: (String_comparison_exp | null),owner?: (players_bool_exp | null),owner_steam_id?: (bigint_comparison_exp | null),ranks?: (v_team_ranks_bool_exp | null),reputation?: (v_team_reputation_bool_exp | null),role?: (String_comparison_exp | null),roster?: (team_roster_bool_exp | null),roster_aggregate?: (team_roster_aggregate_bool_exp | null),scrim_availability?: (team_scrim_availability_bool_exp | null),scrim_availability_aggregate?: (team_scrim_availability_aggregate_bool_exp | null),scrim_settings?: (team_scrim_settings_bool_exp | null),short_name?: (String_comparison_exp | null),tournament_teams?: (tournament_teams_bool_exp | null),tournament_teams_aggregate?: (tournament_teams_aggregate_bool_exp | null)} +export interface teams_bool_exp {_and?: (teams_bool_exp[] | null),_not?: (teams_bool_exp | null),_or?: (teams_bool_exp[] | null),avatar_url?: (String_comparison_exp | null),can_change_role?: (Boolean_comparison_exp | null),can_invite?: (Boolean_comparison_exp | null),can_manage_scrims?: (Boolean_comparison_exp | null),can_remove?: (Boolean_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),invites?: (team_invites_bool_exp | null),invites_aggregate?: (team_invites_aggregate_bool_exp | null),is_organization?: (Boolean_comparison_exp | null),match_lineups?: (match_lineups_bool_exp | null),match_lineups_aggregate?: (match_lineups_aggregate_bool_exp | null),matches?: (matches_bool_exp | null),name?: (String_comparison_exp | null),owner?: (players_bool_exp | null),owner_steam_id?: (bigint_comparison_exp | null),ranks?: (v_team_ranks_bool_exp | null),reputation?: (v_team_reputation_bool_exp | null),role?: (String_comparison_exp | null),roster?: (team_roster_bool_exp | null),roster_aggregate?: (team_roster_aggregate_bool_exp | null),scrim_availability?: (team_scrim_availability_bool_exp | null),scrim_availability_aggregate?: (team_scrim_availability_aggregate_bool_exp | null),scrim_settings?: (team_scrim_settings_bool_exp | null),short_name?: (String_comparison_exp | null),tournament_teams?: (tournament_teams_bool_exp | null),tournament_teams_aggregate?: (tournament_teams_aggregate_bool_exp | null)} /** input type for incrementing numeric columns in table "teams" */ @@ -84584,7 +86166,7 @@ export interface teams_inc_input {captain_steam_id?: (Scalars['bigint'] | null), /** input type for inserting data into table "teams" */ -export interface teams_insert_input {avatar_url?: (Scalars['String'] | null),captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),invites?: (team_invites_arr_rel_insert_input | null),match_lineups?: (match_lineups_arr_rel_insert_input | null),name?: (Scalars['String'] | null),owner?: (players_obj_rel_insert_input | null),owner_steam_id?: (Scalars['bigint'] | null),ranks?: (v_team_ranks_obj_rel_insert_input | null),reputation?: (v_team_reputation_obj_rel_insert_input | null),roster?: (team_roster_arr_rel_insert_input | null),scrim_availability?: (team_scrim_availability_arr_rel_insert_input | null),scrim_settings?: (team_scrim_settings_obj_rel_insert_input | null),short_name?: (Scalars['String'] | null),tournament_teams?: (tournament_teams_arr_rel_insert_input | null)} +export interface teams_insert_input {avatar_url?: (Scalars['String'] | null),captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),invites?: (team_invites_arr_rel_insert_input | null),is_organization?: (Scalars['Boolean'] | null),match_lineups?: (match_lineups_arr_rel_insert_input | null),name?: (Scalars['String'] | null),owner?: (players_obj_rel_insert_input | null),owner_steam_id?: (Scalars['bigint'] | null),ranks?: (v_team_ranks_obj_rel_insert_input | null),reputation?: (v_team_reputation_obj_rel_insert_input | null),roster?: (team_roster_arr_rel_insert_input | null),scrim_availability?: (team_scrim_availability_arr_rel_insert_input | null),scrim_settings?: (team_scrim_settings_obj_rel_insert_input | null),short_name?: (Scalars['String'] | null),tournament_teams?: (tournament_teams_arr_rel_insert_input | null)} /** aggregate max on columns */ @@ -84647,7 +86229,7 @@ export interface teams_on_conflict {constraint: teams_constraint,update_columns? /** Ordering options when selecting data from "teams". */ -export interface teams_order_by {avatar_url?: (order_by | null),can_change_role?: (order_by | null),can_invite?: (order_by | null),can_manage_scrims?: (order_by | null),can_remove?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),id?: (order_by | null),invites_aggregate?: (team_invites_aggregate_order_by | null),match_lineups_aggregate?: (match_lineups_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),name?: (order_by | null),owner?: (players_order_by | null),owner_steam_id?: (order_by | null),ranks?: (v_team_ranks_order_by | null),reputation?: (v_team_reputation_order_by | null),role?: (order_by | null),roster_aggregate?: (team_roster_aggregate_order_by | null),scrim_availability_aggregate?: (team_scrim_availability_aggregate_order_by | null),scrim_settings?: (team_scrim_settings_order_by | null),short_name?: (order_by | null),tournament_teams_aggregate?: (tournament_teams_aggregate_order_by | null)} +export interface teams_order_by {avatar_url?: (order_by | null),can_change_role?: (order_by | null),can_invite?: (order_by | null),can_manage_scrims?: (order_by | null),can_remove?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),id?: (order_by | null),invites_aggregate?: (team_invites_aggregate_order_by | null),is_organization?: (order_by | null),match_lineups_aggregate?: (match_lineups_aggregate_order_by | null),matches_aggregate?: (matches_aggregate_order_by | null),name?: (order_by | null),owner?: (players_order_by | null),owner_steam_id?: (order_by | null),ranks?: (v_team_ranks_order_by | null),reputation?: (v_team_reputation_order_by | null),role?: (order_by | null),roster_aggregate?: (team_roster_aggregate_order_by | null),scrim_availability_aggregate?: (team_scrim_availability_aggregate_order_by | null),scrim_settings?: (team_scrim_settings_order_by | null),short_name?: (order_by | null),tournament_teams_aggregate?: (tournament_teams_aggregate_order_by | null)} /** primary key columns input for table: teams */ @@ -84655,7 +86237,7 @@ export interface teams_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "teams" */ -export interface teams_set_input {avatar_url?: (Scalars['String'] | null),captain_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),short_name?: (Scalars['String'] | null)} +export interface teams_set_input {avatar_url?: (Scalars['String'] | null),captain_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),is_organization?: (Scalars['Boolean'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),short_name?: (Scalars['String'] | null)} /** aggregate stddev on columns */ @@ -84706,7 +86288,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface teams_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),captain_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),short_name?: (Scalars['String'] | null)} +export interface teams_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),captain_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),is_organization?: (Scalars['Boolean'] | null),name?: (Scalars['String'] | null),owner_steam_id?: (Scalars['bigint'] | null),short_name?: (Scalars['String'] | null)} /** aggregate sum on columns */ @@ -85143,8 +86725,262 @@ export interface tournament_brackets_variance_fieldsGenqlSelection{ export interface tournament_brackets_variance_order_by {group?: (order_by | null),match_number?: (order_by | null),round?: (order_by | null),team_1_seed?: (order_by | null),team_2_seed?: (order_by | null)} +/** columns and relationships of "tournament_categories" */ +export interface tournament_categoriesGenqlSelection{ + category?: boolean | number + /** An object relationship */ + e_tournament_category?: e_tournament_categoriesGenqlSelection + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_categories" */ +export interface tournament_categories_aggregateGenqlSelection{ + aggregate?: tournament_categories_aggregate_fieldsGenqlSelection + nodes?: tournament_categoriesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_categories_aggregate_bool_exp {count?: (tournament_categories_aggregate_bool_exp_count | null)} + +export interface tournament_categories_aggregate_bool_exp_count {arguments?: (tournament_categories_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_categories_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_categories" */ +export interface tournament_categories_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (tournament_categories_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_categories_max_fieldsGenqlSelection + min?: tournament_categories_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_categories" */ +export interface tournament_categories_aggregate_order_by {count?: (order_by | null),max?: (tournament_categories_max_order_by | null),min?: (tournament_categories_min_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_categories" */ +export interface tournament_categories_arr_rel_insert_input {data: tournament_categories_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_categories_on_conflict | null)} + + +/** Boolean expression to filter rows from the table "tournament_categories". All fields are combined with a logical 'AND'. */ +export interface tournament_categories_bool_exp {_and?: (tournament_categories_bool_exp[] | null),_not?: (tournament_categories_bool_exp | null),_or?: (tournament_categories_bool_exp[] | null),category?: (e_tournament_categories_enum_comparison_exp | null),e_tournament_category?: (e_tournament_categories_bool_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "tournament_categories" */ +export interface tournament_categories_insert_input {category?: (e_tournament_categories_enum | null),e_tournament_category?: (e_tournament_categories_obj_rel_insert_input | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface tournament_categories_max_fieldsGenqlSelection{ + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_categories" */ +export interface tournament_categories_max_order_by {tournament_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_categories_min_fieldsGenqlSelection{ + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_categories" */ +export interface tournament_categories_min_order_by {tournament_id?: (order_by | null)} + + +/** response of any mutation on the table "tournament_categories" */ +export interface tournament_categories_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_categoriesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "tournament_categories" */ +export interface tournament_categories_on_conflict {constraint: tournament_categories_constraint,update_columns?: tournament_categories_update_column[],where?: (tournament_categories_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_categories". */ +export interface tournament_categories_order_by {category?: (order_by | null),e_tournament_category?: (e_tournament_categories_order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + + +/** primary key columns input for table: tournament_categories */ +export interface tournament_categories_pk_columns_input {category: e_tournament_categories_enum,tournament_id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_categories" */ +export interface tournament_categories_set_input {category?: (e_tournament_categories_enum | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** Streaming cursor of the table "tournament_categories" */ +export interface tournament_categories_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_categories_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_categories_stream_cursor_value_input {category?: (e_tournament_categories_enum | null),tournament_id?: (Scalars['uuid'] | null)} + +export interface tournament_categories_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_categories_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_categories_bool_exp} + + +/** columns and relationships of "tournament_organizer_teams" */ +export interface tournament_organizer_teamsGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_organizer_teams" */ +export interface tournament_organizer_teams_aggregateGenqlSelection{ + aggregate?: tournament_organizer_teams_aggregate_fieldsGenqlSelection + nodes?: tournament_organizer_teamsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_organizer_teams_aggregate_bool_exp {count?: (tournament_organizer_teams_aggregate_bool_exp_count | null)} + +export interface tournament_organizer_teams_aggregate_bool_exp_count {arguments?: (tournament_organizer_teams_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_organizer_teams_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_organizer_teams" */ +export interface tournament_organizer_teams_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (tournament_organizer_teams_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_organizer_teams_max_fieldsGenqlSelection + min?: tournament_organizer_teams_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_aggregate_order_by {count?: (order_by | null),max?: (tournament_organizer_teams_max_order_by | null),min?: (tournament_organizer_teams_min_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_arr_rel_insert_input {data: tournament_organizer_teams_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_organizer_teams_on_conflict | null)} + + +/** Boolean expression to filter rows from the table "tournament_organizer_teams". All fields are combined with a logical 'AND'. */ +export interface tournament_organizer_teams_bool_exp {_and?: (tournament_organizer_teams_bool_exp[] | null),_not?: (tournament_organizer_teams_bool_exp | null),_or?: (tournament_organizer_teams_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_insert_input {created_at?: (Scalars['timestamptz'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface tournament_organizer_teams_max_fieldsGenqlSelection{ + created_at?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_max_order_by {created_at?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_organizer_teams_min_fieldsGenqlSelection{ + created_at?: boolean | number + team_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_min_order_by {created_at?: (order_by | null),team_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** response of any mutation on the table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_organizer_teamsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_on_conflict {constraint: tournament_organizer_teams_constraint,update_columns?: tournament_organizer_teams_update_column[],where?: (tournament_organizer_teams_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_organizer_teams". */ +export interface tournament_organizer_teams_order_by {created_at?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + + +/** primary key columns input for table: tournament_organizer_teams */ +export interface tournament_organizer_teams_pk_columns_input {team_id: Scalars['uuid'],tournament_id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_set_input {created_at?: (Scalars['timestamptz'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** Streaming cursor of the table "tournament_organizer_teams" */ +export interface tournament_organizer_teams_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_organizer_teams_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_organizer_teams_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),team_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} + +export interface tournament_organizer_teams_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_organizer_teams_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_organizer_teams_bool_exp} + + /** columns and relationships of "tournament_organizers" */ export interface tournament_organizersGenqlSelection{ + /** An object relationship */ + organization_team?: teamsGenqlSelection + organization_team_id?: boolean | number /** An object relationship */ organizer?: playersGenqlSelection steam_id?: boolean | number @@ -85210,7 +87046,7 @@ export interface tournament_organizers_avg_order_by {steam_id?: (order_by | null /** Boolean expression to filter rows from the table "tournament_organizers". All fields are combined with a logical 'AND'. */ -export interface tournament_organizers_bool_exp {_and?: (tournament_organizers_bool_exp[] | null),_not?: (tournament_organizers_bool_exp | null),_or?: (tournament_organizers_bool_exp[] | null),organizer?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} +export interface tournament_organizers_bool_exp {_and?: (tournament_organizers_bool_exp[] | null),_not?: (tournament_organizers_bool_exp | null),_or?: (tournament_organizers_bool_exp[] | null),organization_team?: (teams_bool_exp | null),organization_team_id?: (uuid_comparison_exp | null),organizer?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} /** input type for incrementing numeric columns in table "tournament_organizers" */ @@ -85218,11 +87054,12 @@ export interface tournament_organizers_inc_input {steam_id?: (Scalars['bigint'] /** input type for inserting data into table "tournament_organizers" */ -export interface tournament_organizers_insert_input {organizer?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} +export interface tournament_organizers_insert_input {organization_team?: (teams_obj_rel_insert_input | null),organization_team_id?: (Scalars['uuid'] | null),organizer?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} /** aggregate max on columns */ export interface tournament_organizers_max_fieldsGenqlSelection{ + organization_team_id?: boolean | number steam_id?: boolean | number tournament_id?: boolean | number __typename?: boolean | number @@ -85231,11 +87068,12 @@ export interface tournament_organizers_max_fieldsGenqlSelection{ /** order by max() on columns of table "tournament_organizers" */ -export interface tournament_organizers_max_order_by {steam_id?: (order_by | null),tournament_id?: (order_by | null)} +export interface tournament_organizers_max_order_by {organization_team_id?: (order_by | null),steam_id?: (order_by | null),tournament_id?: (order_by | null)} /** aggregate min on columns */ export interface tournament_organizers_min_fieldsGenqlSelection{ + organization_team_id?: boolean | number steam_id?: boolean | number tournament_id?: boolean | number __typename?: boolean | number @@ -85244,7 +87082,7 @@ export interface tournament_organizers_min_fieldsGenqlSelection{ /** order by min() on columns of table "tournament_organizers" */ -export interface tournament_organizers_min_order_by {steam_id?: (order_by | null),tournament_id?: (order_by | null)} +export interface tournament_organizers_min_order_by {organization_team_id?: (order_by | null),steam_id?: (order_by | null),tournament_id?: (order_by | null)} /** response of any mutation on the table "tournament_organizers" */ @@ -85263,7 +87101,7 @@ export interface tournament_organizers_on_conflict {constraint: tournament_organ /** Ordering options when selecting data from "tournament_organizers". */ -export interface tournament_organizers_order_by {organizer?: (players_order_by | null),steam_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} +export interface tournament_organizers_order_by {organization_team?: (teams_order_by | null),organization_team_id?: (order_by | null),organizer?: (players_order_by | null),steam_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} /** primary key columns input for table: tournament_organizers */ @@ -85271,7 +87109,7 @@ export interface tournament_organizers_pk_columns_input {steam_id: Scalars['bigi /** input type for updating data in table "tournament_organizers" */ -export interface tournament_organizers_set_input {steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null)} +export interface tournament_organizers_set_input {organization_team_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null)} /** aggregate stddev on columns */ @@ -85319,7 +87157,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface tournament_organizers_stream_cursor_value_input {steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null)} +export interface tournament_organizers_stream_cursor_value_input {organization_team_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null),tournament_id?: (Scalars['uuid'] | null)} /** aggregate sum on columns */ @@ -85378,6 +87216,251 @@ export interface tournament_organizers_variance_fieldsGenqlSelection{ export interface tournament_organizers_variance_order_by {steam_id?: (order_by | null)} +/** columns and relationships of "tournament_prizes" */ +export interface tournament_prizesGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + order?: boolean | number + place?: boolean | number + prize?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "tournament_prizes" */ +export interface tournament_prizes_aggregateGenqlSelection{ + aggregate?: tournament_prizes_aggregate_fieldsGenqlSelection + nodes?: tournament_prizesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface tournament_prizes_aggregate_bool_exp {count?: (tournament_prizes_aggregate_bool_exp_count | null)} + +export interface tournament_prizes_aggregate_bool_exp_count {arguments?: (tournament_prizes_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournament_prizes_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "tournament_prizes" */ +export interface tournament_prizes_aggregate_fieldsGenqlSelection{ + avg?: tournament_prizes_avg_fieldsGenqlSelection + count?: { __args: {columns?: (tournament_prizes_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: tournament_prizes_max_fieldsGenqlSelection + min?: tournament_prizes_min_fieldsGenqlSelection + stddev?: tournament_prizes_stddev_fieldsGenqlSelection + stddev_pop?: tournament_prizes_stddev_pop_fieldsGenqlSelection + stddev_samp?: tournament_prizes_stddev_samp_fieldsGenqlSelection + sum?: tournament_prizes_sum_fieldsGenqlSelection + var_pop?: tournament_prizes_var_pop_fieldsGenqlSelection + var_samp?: tournament_prizes_var_samp_fieldsGenqlSelection + variance?: tournament_prizes_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "tournament_prizes" */ +export interface tournament_prizes_aggregate_order_by {avg?: (tournament_prizes_avg_order_by | null),count?: (order_by | null),max?: (tournament_prizes_max_order_by | null),min?: (tournament_prizes_min_order_by | null),stddev?: (tournament_prizes_stddev_order_by | null),stddev_pop?: (tournament_prizes_stddev_pop_order_by | null),stddev_samp?: (tournament_prizes_stddev_samp_order_by | null),sum?: (tournament_prizes_sum_order_by | null),var_pop?: (tournament_prizes_var_pop_order_by | null),var_samp?: (tournament_prizes_var_samp_order_by | null),variance?: (tournament_prizes_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "tournament_prizes" */ +export interface tournament_prizes_arr_rel_insert_input {data: tournament_prizes_insert_input[], +/** upsert condition */ +on_conflict?: (tournament_prizes_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface tournament_prizes_avg_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "tournament_prizes" */ +export interface tournament_prizes_avg_order_by {order?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "tournament_prizes". All fields are combined with a logical 'AND'. */ +export interface tournament_prizes_bool_exp {_and?: (tournament_prizes_bool_exp[] | null),_not?: (tournament_prizes_bool_exp | null),_or?: (tournament_prizes_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),order?: (Int_comparison_exp | null),place?: (String_comparison_exp | null),prize?: (String_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "tournament_prizes" */ +export interface tournament_prizes_inc_input {order?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "tournament_prizes" */ +export interface tournament_prizes_insert_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),order?: (Scalars['Int'] | null),place?: (Scalars['String'] | null),prize?: (Scalars['String'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface tournament_prizes_max_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + order?: boolean | number + place?: boolean | number + prize?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "tournament_prizes" */ +export interface tournament_prizes_max_order_by {created_at?: (order_by | null),id?: (order_by | null),order?: (order_by | null),place?: (order_by | null),prize?: (order_by | null),tournament_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface tournament_prizes_min_fieldsGenqlSelection{ + created_at?: boolean | number + id?: boolean | number + order?: boolean | number + place?: boolean | number + prize?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "tournament_prizes" */ +export interface tournament_prizes_min_order_by {created_at?: (order_by | null),id?: (order_by | null),order?: (order_by | null),place?: (order_by | null),prize?: (order_by | null),tournament_id?: (order_by | null)} + + +/** response of any mutation on the table "tournament_prizes" */ +export interface tournament_prizes_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: tournament_prizesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "tournament_prizes" */ +export interface tournament_prizes_on_conflict {constraint: tournament_prizes_constraint,update_columns?: tournament_prizes_update_column[],where?: (tournament_prizes_bool_exp | null)} + + +/** Ordering options when selecting data from "tournament_prizes". */ +export interface tournament_prizes_order_by {created_at?: (order_by | null),id?: (order_by | null),order?: (order_by | null),place?: (order_by | null),prize?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + + +/** primary key columns input for table: tournament_prizes */ +export interface tournament_prizes_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "tournament_prizes" */ +export interface tournament_prizes_set_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),order?: (Scalars['Int'] | null),place?: (Scalars['String'] | null),prize?: (Scalars['String'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate stddev on columns */ +export interface tournament_prizes_stddev_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "tournament_prizes" */ +export interface tournament_prizes_stddev_order_by {order?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface tournament_prizes_stddev_pop_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "tournament_prizes" */ +export interface tournament_prizes_stddev_pop_order_by {order?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface tournament_prizes_stddev_samp_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "tournament_prizes" */ +export interface tournament_prizes_stddev_samp_order_by {order?: (order_by | null)} + + +/** Streaming cursor of the table "tournament_prizes" */ +export interface tournament_prizes_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: tournament_prizes_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface tournament_prizes_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),order?: (Scalars['Int'] | null),place?: (Scalars['String'] | null),prize?: (Scalars['String'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate sum on columns */ +export interface tournament_prizes_sum_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "tournament_prizes" */ +export interface tournament_prizes_sum_order_by {order?: (order_by | null)} + +export interface tournament_prizes_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (tournament_prizes_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (tournament_prizes_set_input | null), +/** filter the rows which have to be updated */ +where: tournament_prizes_bool_exp} + + +/** aggregate var_pop on columns */ +export interface tournament_prizes_var_pop_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "tournament_prizes" */ +export interface tournament_prizes_var_pop_order_by {order?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface tournament_prizes_var_samp_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "tournament_prizes" */ +export interface tournament_prizes_var_samp_order_by {order?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface tournament_prizes_variance_fieldsGenqlSelection{ + order?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "tournament_prizes" */ +export interface tournament_prizes_variance_order_by {order?: (order_by | null)} + + /** columns and relationships of "tournament_stage_windows" */ export interface tournament_stage_windowsGenqlSelection{ closes_at?: boolean | number @@ -85656,6 +87739,7 @@ export interface tournament_stagesGenqlSelection{ default_best_of?: boolean | number /** An object relationship */ e_tournament_stage_type?: e_tournament_stage_typesGenqlSelection + final_map_advantage?: boolean | number groups?: boolean | number id?: boolean | number match_options_id?: boolean | number @@ -85780,6 +87864,7 @@ on_conflict?: (tournament_stages_on_conflict | null)} export interface tournament_stages_avg_fieldsGenqlSelection{ decider_best_of?: boolean | number default_best_of?: boolean | number + final_map_advantage?: boolean | number groups?: boolean | number max_rounds?: boolean | number max_teams?: boolean | number @@ -85791,11 +87876,11 @@ export interface tournament_stages_avg_fieldsGenqlSelection{ /** order by avg() on columns of table "tournament_stages" */ -export interface tournament_stages_avg_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} +export interface tournament_stages_avg_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} /** Boolean expression to filter rows from the table "tournament_stages". All fields are combined with a logical 'AND'. */ -export interface tournament_stages_bool_exp {_and?: (tournament_stages_bool_exp[] | null),_not?: (tournament_stages_bool_exp | null),_or?: (tournament_stages_bool_exp[] | null),brackets?: (tournament_brackets_bool_exp | null),brackets_aggregate?: (tournament_brackets_aggregate_bool_exp | null),decider_best_of?: (Int_comparison_exp | null),default_best_of?: (Int_comparison_exp | null),e_tournament_stage_type?: (e_tournament_stage_types_bool_exp | null),groups?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),max_rounds?: (Int_comparison_exp | null),max_teams?: (Int_comparison_exp | null),min_teams?: (Int_comparison_exp | null),options?: (match_options_bool_exp | null),order?: (Int_comparison_exp | null),results?: (v_team_stage_results_bool_exp | null),results_aggregate?: (v_team_stage_results_aggregate_bool_exp | null),settings?: (jsonb_comparison_exp | null),swiss_no_elimination?: (Boolean_comparison_exp | null),third_place_match?: (Boolean_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),type?: (e_tournament_stage_types_enum_comparison_exp | null),windows?: (tournament_stage_windows_bool_exp | null),windows_aggregate?: (tournament_stage_windows_aggregate_bool_exp | null)} +export interface tournament_stages_bool_exp {_and?: (tournament_stages_bool_exp[] | null),_not?: (tournament_stages_bool_exp | null),_or?: (tournament_stages_bool_exp[] | null),brackets?: (tournament_brackets_bool_exp | null),brackets_aggregate?: (tournament_brackets_aggregate_bool_exp | null),decider_best_of?: (Int_comparison_exp | null),default_best_of?: (Int_comparison_exp | null),e_tournament_stage_type?: (e_tournament_stage_types_bool_exp | null),final_map_advantage?: (Int_comparison_exp | null),groups?: (Int_comparison_exp | null),id?: (uuid_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),max_rounds?: (Int_comparison_exp | null),max_teams?: (Int_comparison_exp | null),min_teams?: (Int_comparison_exp | null),options?: (match_options_bool_exp | null),order?: (Int_comparison_exp | null),results?: (v_team_stage_results_bool_exp | null),results_aggregate?: (v_team_stage_results_aggregate_bool_exp | null),settings?: (jsonb_comparison_exp | null),swiss_no_elimination?: (Boolean_comparison_exp | null),third_place_match?: (Boolean_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null),type?: (e_tournament_stage_types_enum_comparison_exp | null),windows?: (tournament_stage_windows_bool_exp | null),windows_aggregate?: (tournament_stage_windows_aggregate_bool_exp | null)} /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ @@ -85811,17 +87896,18 @@ export interface tournament_stages_delete_key_input {settings?: (Scalars['String /** input type for incrementing numeric columns in table "tournament_stages" */ -export interface tournament_stages_inc_input {decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),groups?: (Scalars['Int'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),order?: (Scalars['Int'] | null)} +export interface tournament_stages_inc_input {decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),final_map_advantage?: (Scalars['Int'] | null),groups?: (Scalars['Int'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),order?: (Scalars['Int'] | null)} /** input type for inserting data into table "tournament_stages" */ -export interface tournament_stages_insert_input {brackets?: (tournament_brackets_arr_rel_insert_input | null),decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),e_tournament_stage_type?: (e_tournament_stage_types_obj_rel_insert_input | null),groups?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),options?: (match_options_obj_rel_insert_input | null),order?: (Scalars['Int'] | null),results?: (v_team_stage_results_arr_rel_insert_input | null),settings?: (Scalars['jsonb'] | null),swiss_no_elimination?: (Scalars['Boolean'] | null),third_place_match?: (Scalars['Boolean'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),type?: (e_tournament_stage_types_enum | null),windows?: (tournament_stage_windows_arr_rel_insert_input | null)} +export interface tournament_stages_insert_input {brackets?: (tournament_brackets_arr_rel_insert_input | null),decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),e_tournament_stage_type?: (e_tournament_stage_types_obj_rel_insert_input | null),final_map_advantage?: (Scalars['Int'] | null),groups?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),options?: (match_options_obj_rel_insert_input | null),order?: (Scalars['Int'] | null),results?: (v_team_stage_results_arr_rel_insert_input | null),settings?: (Scalars['jsonb'] | null),swiss_no_elimination?: (Scalars['Boolean'] | null),third_place_match?: (Scalars['Boolean'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null),type?: (e_tournament_stage_types_enum | null),windows?: (tournament_stage_windows_arr_rel_insert_input | null)} /** aggregate max on columns */ export interface tournament_stages_max_fieldsGenqlSelection{ decider_best_of?: boolean | number default_best_of?: boolean | number + final_map_advantage?: boolean | number groups?: boolean | number id?: boolean | number match_options_id?: boolean | number @@ -85836,13 +87922,14 @@ export interface tournament_stages_max_fieldsGenqlSelection{ /** order by max() on columns of table "tournament_stages" */ -export interface tournament_stages_max_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),groups?: (order_by | null),id?: (order_by | null),match_options_id?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null),tournament_id?: (order_by | null)} +export interface tournament_stages_max_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),id?: (order_by | null),match_options_id?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null),tournament_id?: (order_by | null)} /** aggregate min on columns */ export interface tournament_stages_min_fieldsGenqlSelection{ decider_best_of?: boolean | number default_best_of?: boolean | number + final_map_advantage?: boolean | number groups?: boolean | number id?: boolean | number match_options_id?: boolean | number @@ -85857,7 +87944,7 @@ export interface tournament_stages_min_fieldsGenqlSelection{ /** order by min() on columns of table "tournament_stages" */ -export interface tournament_stages_min_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),groups?: (order_by | null),id?: (order_by | null),match_options_id?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null),tournament_id?: (order_by | null)} +export interface tournament_stages_min_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),id?: (order_by | null),match_options_id?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null),tournament_id?: (order_by | null)} /** response of any mutation on the table "tournament_stages" */ @@ -85882,7 +87969,7 @@ export interface tournament_stages_on_conflict {constraint: tournament_stages_co /** Ordering options when selecting data from "tournament_stages". */ -export interface tournament_stages_order_by {brackets_aggregate?: (tournament_brackets_aggregate_order_by | null),decider_best_of?: (order_by | null),default_best_of?: (order_by | null),e_tournament_stage_type?: (e_tournament_stage_types_order_by | null),groups?: (order_by | null),id?: (order_by | null),match_options_id?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),options?: (match_options_order_by | null),order?: (order_by | null),results_aggregate?: (v_team_stage_results_aggregate_order_by | null),settings?: (order_by | null),swiss_no_elimination?: (order_by | null),third_place_match?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null),type?: (order_by | null),windows_aggregate?: (tournament_stage_windows_aggregate_order_by | null)} +export interface tournament_stages_order_by {brackets_aggregate?: (tournament_brackets_aggregate_order_by | null),decider_best_of?: (order_by | null),default_best_of?: (order_by | null),e_tournament_stage_type?: (e_tournament_stage_types_order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),id?: (order_by | null),match_options_id?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),options?: (match_options_order_by | null),order?: (order_by | null),results_aggregate?: (v_team_stage_results_aggregate_order_by | null),settings?: (order_by | null),swiss_no_elimination?: (order_by | null),third_place_match?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null),type?: (order_by | null),windows_aggregate?: (tournament_stage_windows_aggregate_order_by | null)} /** primary key columns input for table: tournament_stages */ @@ -85894,13 +87981,14 @@ export interface tournament_stages_prepend_input {settings?: (Scalars['jsonb'] | /** input type for updating data in table "tournament_stages" */ -export interface tournament_stages_set_input {decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),groups?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),order?: (Scalars['Int'] | null),settings?: (Scalars['jsonb'] | null),swiss_no_elimination?: (Scalars['Boolean'] | null),third_place_match?: (Scalars['Boolean'] | null),tournament_id?: (Scalars['uuid'] | null),type?: (e_tournament_stage_types_enum | null)} +export interface tournament_stages_set_input {decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),final_map_advantage?: (Scalars['Int'] | null),groups?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),order?: (Scalars['Int'] | null),settings?: (Scalars['jsonb'] | null),swiss_no_elimination?: (Scalars['Boolean'] | null),third_place_match?: (Scalars['Boolean'] | null),tournament_id?: (Scalars['uuid'] | null),type?: (e_tournament_stage_types_enum | null)} /** aggregate stddev on columns */ export interface tournament_stages_stddev_fieldsGenqlSelection{ decider_best_of?: boolean | number default_best_of?: boolean | number + final_map_advantage?: boolean | number groups?: boolean | number max_rounds?: boolean | number max_teams?: boolean | number @@ -85912,13 +88000,14 @@ export interface tournament_stages_stddev_fieldsGenqlSelection{ /** order by stddev() on columns of table "tournament_stages" */ -export interface tournament_stages_stddev_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} +export interface tournament_stages_stddev_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} /** aggregate stddev_pop on columns */ export interface tournament_stages_stddev_pop_fieldsGenqlSelection{ decider_best_of?: boolean | number default_best_of?: boolean | number + final_map_advantage?: boolean | number groups?: boolean | number max_rounds?: boolean | number max_teams?: boolean | number @@ -85930,13 +88019,14 @@ export interface tournament_stages_stddev_pop_fieldsGenqlSelection{ /** order by stddev_pop() on columns of table "tournament_stages" */ -export interface tournament_stages_stddev_pop_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} +export interface tournament_stages_stddev_pop_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} /** aggregate stddev_samp on columns */ export interface tournament_stages_stddev_samp_fieldsGenqlSelection{ decider_best_of?: boolean | number default_best_of?: boolean | number + final_map_advantage?: boolean | number groups?: boolean | number max_rounds?: boolean | number max_teams?: boolean | number @@ -85948,7 +88038,7 @@ export interface tournament_stages_stddev_samp_fieldsGenqlSelection{ /** order by stddev_samp() on columns of table "tournament_stages" */ -export interface tournament_stages_stddev_samp_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} +export interface tournament_stages_stddev_samp_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} /** Streaming cursor of the table "tournament_stages" */ @@ -85960,13 +88050,14 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface tournament_stages_stream_cursor_value_input {decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),groups?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),order?: (Scalars['Int'] | null),settings?: (Scalars['jsonb'] | null),swiss_no_elimination?: (Scalars['Boolean'] | null),third_place_match?: (Scalars['Boolean'] | null),tournament_id?: (Scalars['uuid'] | null),type?: (e_tournament_stage_types_enum | null)} +export interface tournament_stages_stream_cursor_value_input {decider_best_of?: (Scalars['Int'] | null),default_best_of?: (Scalars['Int'] | null),final_map_advantage?: (Scalars['Int'] | null),groups?: (Scalars['Int'] | null),id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_rounds?: (Scalars['Int'] | null),max_teams?: (Scalars['Int'] | null),min_teams?: (Scalars['Int'] | null),order?: (Scalars['Int'] | null),settings?: (Scalars['jsonb'] | null),swiss_no_elimination?: (Scalars['Boolean'] | null),third_place_match?: (Scalars['Boolean'] | null),tournament_id?: (Scalars['uuid'] | null),type?: (e_tournament_stage_types_enum | null)} /** aggregate sum on columns */ export interface tournament_stages_sum_fieldsGenqlSelection{ decider_best_of?: boolean | number default_best_of?: boolean | number + final_map_advantage?: boolean | number groups?: boolean | number max_rounds?: boolean | number max_teams?: boolean | number @@ -85978,7 +88069,7 @@ export interface tournament_stages_sum_fieldsGenqlSelection{ /** order by sum() on columns of table "tournament_stages" */ -export interface tournament_stages_sum_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} +export interface tournament_stages_sum_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} export interface tournament_stages_updates { /** append existing jsonb value of filtered columns with new jsonb value */ @@ -86003,6 +88094,7 @@ where: tournament_stages_bool_exp} export interface tournament_stages_var_pop_fieldsGenqlSelection{ decider_best_of?: boolean | number default_best_of?: boolean | number + final_map_advantage?: boolean | number groups?: boolean | number max_rounds?: boolean | number max_teams?: boolean | number @@ -86014,13 +88106,14 @@ export interface tournament_stages_var_pop_fieldsGenqlSelection{ /** order by var_pop() on columns of table "tournament_stages" */ -export interface tournament_stages_var_pop_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} +export interface tournament_stages_var_pop_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} /** aggregate var_samp on columns */ export interface tournament_stages_var_samp_fieldsGenqlSelection{ decider_best_of?: boolean | number default_best_of?: boolean | number + final_map_advantage?: boolean | number groups?: boolean | number max_rounds?: boolean | number max_teams?: boolean | number @@ -86032,13 +88125,14 @@ export interface tournament_stages_var_samp_fieldsGenqlSelection{ /** order by var_samp() on columns of table "tournament_stages" */ -export interface tournament_stages_var_samp_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} +export interface tournament_stages_var_samp_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} /** aggregate variance on columns */ export interface tournament_stages_variance_fieldsGenqlSelection{ decider_best_of?: boolean | number default_best_of?: boolean | number + final_map_advantage?: boolean | number groups?: boolean | number max_rounds?: boolean | number max_teams?: boolean | number @@ -86050,7 +88144,7 @@ export interface tournament_stages_variance_fieldsGenqlSelection{ /** order by variance() on columns of table "tournament_stages" */ -export interface tournament_stages_variance_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} +export interface tournament_stages_variance_order_by {decider_best_of?: (order_by | null),default_best_of?: (order_by | null),final_map_advantage?: (order_by | null),groups?: (order_by | null),max_rounds?: (order_by | null),max_teams?: (order_by | null),min_teams?: (order_by | null),order?: (order_by | null)} /** columns and relationships of "tournament_team_invites" */ @@ -87429,6 +89523,7 @@ export interface tournamentsGenqlSelection{ /** An object relationship */ admin?: playersGenqlSelection auto_start?: boolean | number + banner?: boolean | number /** A computed field, executes function "can_cancel_tournament" */ can_cancel?: boolean | number /** A computed field, executes function "can_close_tournament_registration" */ @@ -87445,6 +89540,30 @@ export interface tournamentsGenqlSelection{ can_setup?: boolean | number /** A computed field, executes function "can_start_tournament" */ can_start?: boolean | number + /** An array relationship */ + categories?: (tournament_categoriesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) + /** An aggregate relationship */ + categories_aggregate?: (tournament_categories_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_categories_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_categories_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_categories_bool_exp | null)} }) created_at?: boolean | number description?: boolean | number discord_guild_id?: boolean | number @@ -87468,14 +89587,19 @@ export interface tournamentsGenqlSelection{ e_tournament_status?: e_tournament_statusGenqlSelection /** A computed field, executes function "tournament_has_min_teams" */ has_min_teams?: boolean | number + homepage?: boolean | number id?: boolean | number is_league?: boolean | number /** A computed field, executes function "is_tournament_organizer" */ is_organizer?: boolean | number /** A computed field, executes function "joined_tournament" */ joined_tournament?: boolean | number + latitude?: boolean | number /** An object relationship */ league_season_division?: league_season_divisionsGenqlSelection + location?: boolean | number + logo?: boolean | number + longitude?: boolean | number match_options_id?: boolean | number /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup?: boolean | number @@ -87486,6 +89610,30 @@ export interface tournamentsGenqlSelection{ options?: match_optionsGenqlSelection organizer_steam_id?: boolean | number /** An array relationship */ + organizer_teams?: (tournament_organizer_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_organizer_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_organizer_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizer_teams_bool_exp | null)} }) + /** An aggregate relationship */ + organizer_teams_aggregate?: (tournament_organizer_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_organizer_teams_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_organizer_teams_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_organizer_teams_bool_exp | null)} }) + /** An array relationship */ organizers?: (tournament_organizersGenqlSelection & { __args?: { /** distinct select on columns */ distinct_on?: (tournament_organizers_select_column[] | null), @@ -87534,6 +89682,30 @@ export interface tournamentsGenqlSelection{ /** filter the rows returned */ where?: (v_tournament_player_stats_bool_exp | null)} }) /** An array relationship */ + prizes?: (tournament_prizesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_prizes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_prizes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_prizes_bool_exp | null)} }) + /** An aggregate relationship */ + prizes_aggregate?: (tournament_prizes_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (tournament_prizes_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (tournament_prizes_order_by[] | null), + /** filter the rows returned */ + where?: (tournament_prizes_bool_exp | null)} }) + /** An array relationship */ results?: (v_team_tournament_resultsGenqlSelection & { __args?: { /** distinct select on columns */ distinct_on?: (v_team_tournament_results_select_column[] | null), @@ -87694,14 +89866,34 @@ export interface tournaments_aggregateGenqlSelection{ __scalar?: boolean | number } -export interface tournaments_aggregate_bool_exp {bool_and?: (tournaments_aggregate_bool_exp_bool_and | null),bool_or?: (tournaments_aggregate_bool_exp_bool_or | null),count?: (tournaments_aggregate_bool_exp_count | null)} +export interface tournaments_aggregate_bool_exp {avg?: (tournaments_aggregate_bool_exp_avg | null),bool_and?: (tournaments_aggregate_bool_exp_bool_and | null),bool_or?: (tournaments_aggregate_bool_exp_bool_or | null),corr?: (tournaments_aggregate_bool_exp_corr | null),count?: (tournaments_aggregate_bool_exp_count | null),covar_samp?: (tournaments_aggregate_bool_exp_covar_samp | null),max?: (tournaments_aggregate_bool_exp_max | null),min?: (tournaments_aggregate_bool_exp_min | null),stddev_samp?: (tournaments_aggregate_bool_exp_stddev_samp | null),sum?: (tournaments_aggregate_bool_exp_sum | null),var_samp?: (tournaments_aggregate_bool_exp_var_samp | null)} + +export interface tournaments_aggregate_bool_exp_avg {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} export interface tournaments_aggregate_bool_exp_bool_and {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: Boolean_comparison_exp} export interface tournaments_aggregate_bool_exp_bool_or {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: Boolean_comparison_exp} +export interface tournaments_aggregate_bool_exp_corr {arguments: tournaments_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} + +export interface tournaments_aggregate_bool_exp_corr_arguments {X: tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns,Y: tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns} + export interface tournaments_aggregate_bool_exp_count {arguments?: (tournaments_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: Int_comparison_exp} +export interface tournaments_aggregate_bool_exp_covar_samp {arguments: tournaments_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} + +export interface tournaments_aggregate_bool_exp_covar_samp_arguments {X: tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns,Y: tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface tournaments_aggregate_bool_exp_max {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} + +export interface tournaments_aggregate_bool_exp_min {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} + +export interface tournaments_aggregate_bool_exp_stddev_samp {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} + +export interface tournaments_aggregate_bool_exp_sum {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} + +export interface tournaments_aggregate_bool_exp_var_samp {arguments: tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (tournaments_bool_exp | null),predicate: float8_comparison_exp} + /** aggregate fields of "tournaments" */ export interface tournaments_aggregate_fieldsGenqlSelection{ @@ -87733,6 +89925,8 @@ on_conflict?: (tournaments_on_conflict | null)} /** aggregate avg on columns */ export interface tournaments_avg_fieldsGenqlSelection{ + latitude?: boolean | number + longitude?: boolean | number /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup?: boolean | number /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -87744,29 +89938,35 @@ export interface tournaments_avg_fieldsGenqlSelection{ /** order by avg() on columns of table "tournaments" */ -export interface tournaments_avg_order_by {organizer_steam_id?: (order_by | null)} +export interface tournaments_avg_order_by {latitude?: (order_by | null),longitude?: (order_by | null),organizer_steam_id?: (order_by | null)} /** Boolean expression to filter rows from the table "tournaments". All fields are combined with a logical 'AND'. */ -export interface tournaments_bool_exp {_and?: (tournaments_bool_exp[] | null),_not?: (tournaments_bool_exp | null),_or?: (tournaments_bool_exp[] | null),admin?: (players_bool_exp | null),auto_start?: (Boolean_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_close_registration?: (Boolean_comparison_exp | null),can_join?: (Boolean_comparison_exp | null),can_open_registration?: (Boolean_comparison_exp | null),can_pause?: (Boolean_comparison_exp | null),can_resume?: (Boolean_comparison_exp | null),can_setup?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),discord_guild_id?: (String_comparison_exp | null),discord_notifications_enabled?: (Boolean_comparison_exp | null),discord_notify_Canceled?: (Boolean_comparison_exp | null),discord_notify_Finished?: (Boolean_comparison_exp | null),discord_notify_Forfeit?: (Boolean_comparison_exp | null),discord_notify_Live?: (Boolean_comparison_exp | null),discord_notify_MapPaused?: (Boolean_comparison_exp | null),discord_notify_PickingPlayers?: (Boolean_comparison_exp | null),discord_notify_Scheduled?: (Boolean_comparison_exp | null),discord_notify_Surrendered?: (Boolean_comparison_exp | null),discord_notify_Tie?: (Boolean_comparison_exp | null),discord_notify_Veto?: (Boolean_comparison_exp | null),discord_notify_WaitingForCheckIn?: (Boolean_comparison_exp | null),discord_notify_WaitingForServer?: (Boolean_comparison_exp | null),discord_role_id?: (String_comparison_exp | null),discord_voice_enabled?: (Boolean_comparison_exp | null),discord_webhook?: (String_comparison_exp | null),e_tournament_status?: (e_tournament_status_bool_exp | null),has_min_teams?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),is_league?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),joined_tournament?: (Boolean_comparison_exp | null),league_season_division?: (league_season_divisions_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),name?: (String_comparison_exp | null),options?: (match_options_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),organizers?: (tournament_organizers_bool_exp | null),organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),player_stats?: (v_tournament_player_stats_bool_exp | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_bool_exp | null),results?: (v_team_tournament_results_bool_exp | null),results_aggregate?: (v_team_tournament_results_aggregate_bool_exp | null),rosters?: (tournament_team_roster_bool_exp | null),rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),scheduling_mode?: (String_comparison_exp | null),stages?: (tournament_stages_bool_exp | null),stages_aggregate?: (tournament_stages_aggregate_bool_exp | null),start?: (timestamptz_comparison_exp | null),status?: (e_tournament_status_enum_comparison_exp | null),teams?: (tournament_teams_bool_exp | null),teams_aggregate?: (tournament_teams_aggregate_bool_exp | null),trophies?: (tournament_trophies_bool_exp | null),trophies_aggregate?: (tournament_trophies_aggregate_bool_exp | null),trophies_enabled?: (Boolean_comparison_exp | null),trophy_configs?: (tournament_trophy_configs_bool_exp | null),trophy_configs_aggregate?: (tournament_trophy_configs_aggregate_bool_exp | null)} +export interface tournaments_bool_exp {_and?: (tournaments_bool_exp[] | null),_not?: (tournaments_bool_exp | null),_or?: (tournaments_bool_exp[] | null),admin?: (players_bool_exp | null),auto_start?: (Boolean_comparison_exp | null),banner?: (String_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_close_registration?: (Boolean_comparison_exp | null),can_join?: (Boolean_comparison_exp | null),can_open_registration?: (Boolean_comparison_exp | null),can_pause?: (Boolean_comparison_exp | null),can_resume?: (Boolean_comparison_exp | null),can_setup?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),categories?: (tournament_categories_bool_exp | null),categories_aggregate?: (tournament_categories_aggregate_bool_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),discord_guild_id?: (String_comparison_exp | null),discord_notifications_enabled?: (Boolean_comparison_exp | null),discord_notify_Canceled?: (Boolean_comparison_exp | null),discord_notify_Finished?: (Boolean_comparison_exp | null),discord_notify_Forfeit?: (Boolean_comparison_exp | null),discord_notify_Live?: (Boolean_comparison_exp | null),discord_notify_MapPaused?: (Boolean_comparison_exp | null),discord_notify_PickingPlayers?: (Boolean_comparison_exp | null),discord_notify_Scheduled?: (Boolean_comparison_exp | null),discord_notify_Surrendered?: (Boolean_comparison_exp | null),discord_notify_Tie?: (Boolean_comparison_exp | null),discord_notify_Veto?: (Boolean_comparison_exp | null),discord_notify_WaitingForCheckIn?: (Boolean_comparison_exp | null),discord_notify_WaitingForServer?: (Boolean_comparison_exp | null),discord_role_id?: (String_comparison_exp | null),discord_voice_enabled?: (Boolean_comparison_exp | null),discord_webhook?: (String_comparison_exp | null),e_tournament_status?: (e_tournament_status_bool_exp | null),has_min_teams?: (Boolean_comparison_exp | null),homepage?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),is_league?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),joined_tournament?: (Boolean_comparison_exp | null),latitude?: (float8_comparison_exp | null),league_season_division?: (league_season_divisions_bool_exp | null),location?: (String_comparison_exp | null),logo?: (String_comparison_exp | null),longitude?: (float8_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),max_players_per_lineup?: (Int_comparison_exp | null),min_players_per_lineup?: (Int_comparison_exp | null),name?: (String_comparison_exp | null),options?: (match_options_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),organizer_teams?: (tournament_organizer_teams_bool_exp | null),organizer_teams_aggregate?: (tournament_organizer_teams_aggregate_bool_exp | null),organizers?: (tournament_organizers_bool_exp | null),organizers_aggregate?: (tournament_organizers_aggregate_bool_exp | null),player_stats?: (v_tournament_player_stats_bool_exp | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_bool_exp | null),prizes?: (tournament_prizes_bool_exp | null),prizes_aggregate?: (tournament_prizes_aggregate_bool_exp | null),results?: (v_team_tournament_results_bool_exp | null),results_aggregate?: (v_team_tournament_results_aggregate_bool_exp | null),rosters?: (tournament_team_roster_bool_exp | null),rosters_aggregate?: (tournament_team_roster_aggregate_bool_exp | null),scheduling_mode?: (String_comparison_exp | null),stages?: (tournament_stages_bool_exp | null),stages_aggregate?: (tournament_stages_aggregate_bool_exp | null),start?: (timestamptz_comparison_exp | null),status?: (e_tournament_status_enum_comparison_exp | null),teams?: (tournament_teams_bool_exp | null),teams_aggregate?: (tournament_teams_aggregate_bool_exp | null),trophies?: (tournament_trophies_bool_exp | null),trophies_aggregate?: (tournament_trophies_aggregate_bool_exp | null),trophies_enabled?: (Boolean_comparison_exp | null),trophy_configs?: (tournament_trophy_configs_bool_exp | null),trophy_configs_aggregate?: (tournament_trophy_configs_aggregate_bool_exp | null)} /** input type for incrementing numeric columns in table "tournaments" */ -export interface tournaments_inc_input {organizer_steam_id?: (Scalars['bigint'] | null)} +export interface tournaments_inc_input {latitude?: (Scalars['float8'] | null),longitude?: (Scalars['float8'] | null),organizer_steam_id?: (Scalars['bigint'] | null)} /** input type for inserting data into table "tournaments" */ -export interface tournaments_insert_input {admin?: (players_obj_rel_insert_input | null),auto_start?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),e_tournament_status?: (e_tournament_status_obj_rel_insert_input | null),id?: (Scalars['uuid'] | null),is_league?: (Scalars['Boolean'] | null),league_season_division?: (league_season_divisions_obj_rel_insert_input | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),options?: (match_options_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),organizers?: (tournament_organizers_arr_rel_insert_input | null),player_stats?: (v_tournament_player_stats_arr_rel_insert_input | null),results?: (v_team_tournament_results_arr_rel_insert_input | null),rosters?: (tournament_team_roster_arr_rel_insert_input | null),scheduling_mode?: (Scalars['String'] | null),stages?: (tournament_stages_arr_rel_insert_input | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),teams?: (tournament_teams_arr_rel_insert_input | null),trophies?: (tournament_trophies_arr_rel_insert_input | null),trophies_enabled?: (Scalars['Boolean'] | null),trophy_configs?: (tournament_trophy_configs_arr_rel_insert_input | null)} +export interface tournaments_insert_input {admin?: (players_obj_rel_insert_input | null),auto_start?: (Scalars['Boolean'] | null),banner?: (Scalars['String'] | null),categories?: (tournament_categories_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),e_tournament_status?: (e_tournament_status_obj_rel_insert_input | null),homepage?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_league?: (Scalars['Boolean'] | null),latitude?: (Scalars['float8'] | null),league_season_division?: (league_season_divisions_obj_rel_insert_input | null),location?: (Scalars['String'] | null),logo?: (Scalars['String'] | null),longitude?: (Scalars['float8'] | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),options?: (match_options_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),organizer_teams?: (tournament_organizer_teams_arr_rel_insert_input | null),organizers?: (tournament_organizers_arr_rel_insert_input | null),player_stats?: (v_tournament_player_stats_arr_rel_insert_input | null),prizes?: (tournament_prizes_arr_rel_insert_input | null),results?: (v_team_tournament_results_arr_rel_insert_input | null),rosters?: (tournament_team_roster_arr_rel_insert_input | null),scheduling_mode?: (Scalars['String'] | null),stages?: (tournament_stages_arr_rel_insert_input | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),teams?: (tournament_teams_arr_rel_insert_input | null),trophies?: (tournament_trophies_arr_rel_insert_input | null),trophies_enabled?: (Scalars['Boolean'] | null),trophy_configs?: (tournament_trophy_configs_arr_rel_insert_input | null)} /** aggregate max on columns */ export interface tournaments_max_fieldsGenqlSelection{ + banner?: boolean | number created_at?: boolean | number description?: boolean | number discord_guild_id?: boolean | number discord_role_id?: boolean | number discord_webhook?: boolean | number + homepage?: boolean | number id?: boolean | number + latitude?: boolean | number + location?: boolean | number + logo?: boolean | number + longitude?: boolean | number match_options_id?: boolean | number /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup?: boolean | number @@ -87782,17 +89982,23 @@ export interface tournaments_max_fieldsGenqlSelection{ /** order by max() on columns of table "tournaments" */ -export interface tournaments_max_order_by {created_at?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_role_id?: (order_by | null),discord_webhook?: (order_by | null),id?: (order_by | null),match_options_id?: (order_by | null),name?: (order_by | null),organizer_steam_id?: (order_by | null),scheduling_mode?: (order_by | null),start?: (order_by | null)} +export interface tournaments_max_order_by {banner?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_role_id?: (order_by | null),discord_webhook?: (order_by | null),homepage?: (order_by | null),id?: (order_by | null),latitude?: (order_by | null),location?: (order_by | null),logo?: (order_by | null),longitude?: (order_by | null),match_options_id?: (order_by | null),name?: (order_by | null),organizer_steam_id?: (order_by | null),scheduling_mode?: (order_by | null),start?: (order_by | null)} /** aggregate min on columns */ export interface tournaments_min_fieldsGenqlSelection{ + banner?: boolean | number created_at?: boolean | number description?: boolean | number discord_guild_id?: boolean | number discord_role_id?: boolean | number discord_webhook?: boolean | number + homepage?: boolean | number id?: boolean | number + latitude?: boolean | number + location?: boolean | number + logo?: boolean | number + longitude?: boolean | number match_options_id?: boolean | number /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup?: boolean | number @@ -87808,7 +90014,7 @@ export interface tournaments_min_fieldsGenqlSelection{ /** order by min() on columns of table "tournaments" */ -export interface tournaments_min_order_by {created_at?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_role_id?: (order_by | null),discord_webhook?: (order_by | null),id?: (order_by | null),match_options_id?: (order_by | null),name?: (order_by | null),organizer_steam_id?: (order_by | null),scheduling_mode?: (order_by | null),start?: (order_by | null)} +export interface tournaments_min_order_by {banner?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_role_id?: (order_by | null),discord_webhook?: (order_by | null),homepage?: (order_by | null),id?: (order_by | null),latitude?: (order_by | null),location?: (order_by | null),logo?: (order_by | null),longitude?: (order_by | null),match_options_id?: (order_by | null),name?: (order_by | null),organizer_steam_id?: (order_by | null),scheduling_mode?: (order_by | null),start?: (order_by | null)} /** response of any mutation on the table "tournaments" */ @@ -87833,7 +90039,7 @@ export interface tournaments_on_conflict {constraint: tournaments_constraint,upd /** Ordering options when selecting data from "tournaments". */ -export interface tournaments_order_by {admin?: (players_order_by | null),auto_start?: (order_by | null),can_cancel?: (order_by | null),can_close_registration?: (order_by | null),can_join?: (order_by | null),can_open_registration?: (order_by | null),can_pause?: (order_by | null),can_resume?: (order_by | null),can_setup?: (order_by | null),can_start?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_notifications_enabled?: (order_by | null),discord_notify_Canceled?: (order_by | null),discord_notify_Finished?: (order_by | null),discord_notify_Forfeit?: (order_by | null),discord_notify_Live?: (order_by | null),discord_notify_MapPaused?: (order_by | null),discord_notify_PickingPlayers?: (order_by | null),discord_notify_Scheduled?: (order_by | null),discord_notify_Surrendered?: (order_by | null),discord_notify_Tie?: (order_by | null),discord_notify_Veto?: (order_by | null),discord_notify_WaitingForCheckIn?: (order_by | null),discord_notify_WaitingForServer?: (order_by | null),discord_role_id?: (order_by | null),discord_voice_enabled?: (order_by | null),discord_webhook?: (order_by | null),e_tournament_status?: (e_tournament_status_order_by | null),has_min_teams?: (order_by | null),id?: (order_by | null),is_league?: (order_by | null),is_organizer?: (order_by | null),joined_tournament?: (order_by | null),league_season_division?: (league_season_divisions_order_by | null),match_options_id?: (order_by | null),max_players_per_lineup?: (order_by | null),min_players_per_lineup?: (order_by | null),name?: (order_by | null),options?: (match_options_order_by | null),organizer_steam_id?: (order_by | null),organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_order_by | null),results_aggregate?: (v_team_tournament_results_aggregate_order_by | null),rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),scheduling_mode?: (order_by | null),stages_aggregate?: (tournament_stages_aggregate_order_by | null),start?: (order_by | null),status?: (order_by | null),teams_aggregate?: (tournament_teams_aggregate_order_by | null),trophies_aggregate?: (tournament_trophies_aggregate_order_by | null),trophies_enabled?: (order_by | null),trophy_configs_aggregate?: (tournament_trophy_configs_aggregate_order_by | null)} +export interface tournaments_order_by {admin?: (players_order_by | null),auto_start?: (order_by | null),banner?: (order_by | null),can_cancel?: (order_by | null),can_close_registration?: (order_by | null),can_join?: (order_by | null),can_open_registration?: (order_by | null),can_pause?: (order_by | null),can_resume?: (order_by | null),can_setup?: (order_by | null),can_start?: (order_by | null),categories_aggregate?: (tournament_categories_aggregate_order_by | null),created_at?: (order_by | null),description?: (order_by | null),discord_guild_id?: (order_by | null),discord_notifications_enabled?: (order_by | null),discord_notify_Canceled?: (order_by | null),discord_notify_Finished?: (order_by | null),discord_notify_Forfeit?: (order_by | null),discord_notify_Live?: (order_by | null),discord_notify_MapPaused?: (order_by | null),discord_notify_PickingPlayers?: (order_by | null),discord_notify_Scheduled?: (order_by | null),discord_notify_Surrendered?: (order_by | null),discord_notify_Tie?: (order_by | null),discord_notify_Veto?: (order_by | null),discord_notify_WaitingForCheckIn?: (order_by | null),discord_notify_WaitingForServer?: (order_by | null),discord_role_id?: (order_by | null),discord_voice_enabled?: (order_by | null),discord_webhook?: (order_by | null),e_tournament_status?: (e_tournament_status_order_by | null),has_min_teams?: (order_by | null),homepage?: (order_by | null),id?: (order_by | null),is_league?: (order_by | null),is_organizer?: (order_by | null),joined_tournament?: (order_by | null),latitude?: (order_by | null),league_season_division?: (league_season_divisions_order_by | null),location?: (order_by | null),logo?: (order_by | null),longitude?: (order_by | null),match_options_id?: (order_by | null),max_players_per_lineup?: (order_by | null),min_players_per_lineup?: (order_by | null),name?: (order_by | null),options?: (match_options_order_by | null),organizer_steam_id?: (order_by | null),organizer_teams_aggregate?: (tournament_organizer_teams_aggregate_order_by | null),organizers_aggregate?: (tournament_organizers_aggregate_order_by | null),player_stats_aggregate?: (v_tournament_player_stats_aggregate_order_by | null),prizes_aggregate?: (tournament_prizes_aggregate_order_by | null),results_aggregate?: (v_team_tournament_results_aggregate_order_by | null),rosters_aggregate?: (tournament_team_roster_aggregate_order_by | null),scheduling_mode?: (order_by | null),stages_aggregate?: (tournament_stages_aggregate_order_by | null),start?: (order_by | null),status?: (order_by | null),teams_aggregate?: (tournament_teams_aggregate_order_by | null),trophies_aggregate?: (tournament_trophies_aggregate_order_by | null),trophies_enabled?: (order_by | null),trophy_configs_aggregate?: (tournament_trophy_configs_aggregate_order_by | null)} /** primary key columns input for table: tournaments */ @@ -87841,11 +90047,13 @@ export interface tournaments_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "tournaments" */ -export interface tournaments_set_input {auto_start?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_league?: (Scalars['Boolean'] | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),trophies_enabled?: (Scalars['Boolean'] | null)} +export interface tournaments_set_input {auto_start?: (Scalars['Boolean'] | null),banner?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_league?: (Scalars['Boolean'] | null),latitude?: (Scalars['float8'] | null),location?: (Scalars['String'] | null),logo?: (Scalars['String'] | null),longitude?: (Scalars['float8'] | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),trophies_enabled?: (Scalars['Boolean'] | null)} /** aggregate stddev on columns */ export interface tournaments_stddev_fieldsGenqlSelection{ + latitude?: boolean | number + longitude?: boolean | number /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup?: boolean | number /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -87857,11 +90065,13 @@ export interface tournaments_stddev_fieldsGenqlSelection{ /** order by stddev() on columns of table "tournaments" */ -export interface tournaments_stddev_order_by {organizer_steam_id?: (order_by | null)} +export interface tournaments_stddev_order_by {latitude?: (order_by | null),longitude?: (order_by | null),organizer_steam_id?: (order_by | null)} /** aggregate stddev_pop on columns */ export interface tournaments_stddev_pop_fieldsGenqlSelection{ + latitude?: boolean | number + longitude?: boolean | number /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup?: boolean | number /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -87873,11 +90083,13 @@ export interface tournaments_stddev_pop_fieldsGenqlSelection{ /** order by stddev_pop() on columns of table "tournaments" */ -export interface tournaments_stddev_pop_order_by {organizer_steam_id?: (order_by | null)} +export interface tournaments_stddev_pop_order_by {latitude?: (order_by | null),longitude?: (order_by | null),organizer_steam_id?: (order_by | null)} /** aggregate stddev_samp on columns */ export interface tournaments_stddev_samp_fieldsGenqlSelection{ + latitude?: boolean | number + longitude?: boolean | number /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup?: boolean | number /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -87889,7 +90101,7 @@ export interface tournaments_stddev_samp_fieldsGenqlSelection{ /** order by stddev_samp() on columns of table "tournaments" */ -export interface tournaments_stddev_samp_order_by {organizer_steam_id?: (order_by | null)} +export interface tournaments_stddev_samp_order_by {latitude?: (order_by | null),longitude?: (order_by | null),organizer_steam_id?: (order_by | null)} /** Streaming cursor of the table "tournaments" */ @@ -87901,11 +90113,13 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface tournaments_stream_cursor_value_input {auto_start?: (Scalars['Boolean'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_league?: (Scalars['Boolean'] | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),trophies_enabled?: (Scalars['Boolean'] | null)} +export interface tournaments_stream_cursor_value_input {auto_start?: (Scalars['Boolean'] | null),banner?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),discord_guild_id?: (Scalars['String'] | null),discord_notifications_enabled?: (Scalars['Boolean'] | null),discord_notify_Canceled?: (Scalars['Boolean'] | null),discord_notify_Finished?: (Scalars['Boolean'] | null),discord_notify_Forfeit?: (Scalars['Boolean'] | null),discord_notify_Live?: (Scalars['Boolean'] | null),discord_notify_MapPaused?: (Scalars['Boolean'] | null),discord_notify_PickingPlayers?: (Scalars['Boolean'] | null),discord_notify_Scheduled?: (Scalars['Boolean'] | null),discord_notify_Surrendered?: (Scalars['Boolean'] | null),discord_notify_Tie?: (Scalars['Boolean'] | null),discord_notify_Veto?: (Scalars['Boolean'] | null),discord_notify_WaitingForCheckIn?: (Scalars['Boolean'] | null),discord_notify_WaitingForServer?: (Scalars['Boolean'] | null),discord_role_id?: (Scalars['String'] | null),discord_voice_enabled?: (Scalars['Boolean'] | null),discord_webhook?: (Scalars['String'] | null),homepage?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),is_league?: (Scalars['Boolean'] | null),latitude?: (Scalars['float8'] | null),location?: (Scalars['String'] | null),logo?: (Scalars['String'] | null),longitude?: (Scalars['float8'] | null),match_options_id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),scheduling_mode?: (Scalars['String'] | null),start?: (Scalars['timestamptz'] | null),status?: (e_tournament_status_enum | null),trophies_enabled?: (Scalars['Boolean'] | null)} /** aggregate sum on columns */ export interface tournaments_sum_fieldsGenqlSelection{ + latitude?: boolean | number + longitude?: boolean | number /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup?: boolean | number /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -87917,7 +90131,7 @@ export interface tournaments_sum_fieldsGenqlSelection{ /** order by sum() on columns of table "tournaments" */ -export interface tournaments_sum_order_by {organizer_steam_id?: (order_by | null)} +export interface tournaments_sum_order_by {latitude?: (order_by | null),longitude?: (order_by | null),organizer_steam_id?: (order_by | null)} export interface tournaments_updates { /** increments the numeric columns with given value of the filtered values */ @@ -87930,6 +90144,8 @@ where: tournaments_bool_exp} /** aggregate var_pop on columns */ export interface tournaments_var_pop_fieldsGenqlSelection{ + latitude?: boolean | number + longitude?: boolean | number /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup?: boolean | number /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -87941,11 +90157,13 @@ export interface tournaments_var_pop_fieldsGenqlSelection{ /** order by var_pop() on columns of table "tournaments" */ -export interface tournaments_var_pop_order_by {organizer_steam_id?: (order_by | null)} +export interface tournaments_var_pop_order_by {latitude?: (order_by | null),longitude?: (order_by | null),organizer_steam_id?: (order_by | null)} /** aggregate var_samp on columns */ export interface tournaments_var_samp_fieldsGenqlSelection{ + latitude?: boolean | number + longitude?: boolean | number /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup?: boolean | number /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -87957,11 +90175,13 @@ export interface tournaments_var_samp_fieldsGenqlSelection{ /** order by var_samp() on columns of table "tournaments" */ -export interface tournaments_var_samp_order_by {organizer_steam_id?: (order_by | null)} +export interface tournaments_var_samp_order_by {latitude?: (order_by | null),longitude?: (order_by | null),organizer_steam_id?: (order_by | null)} /** aggregate variance on columns */ export interface tournaments_variance_fieldsGenqlSelection{ + latitude?: boolean | number + longitude?: boolean | number /** A computed field, executes function "tournament_max_players_per_lineup" */ max_players_per_lineup?: boolean | number /** A computed field, executes function "tournament_min_players_per_lineup" */ @@ -87973,7 +90193,7 @@ export interface tournaments_variance_fieldsGenqlSelection{ /** order by variance() on columns of table "tournaments" */ -export interface tournaments_variance_order_by {organizer_steam_id?: (order_by | null)} +export interface tournaments_variance_order_by {latitude?: (order_by | null),longitude?: (order_by | null),organizer_steam_id?: (order_by | null)} /** Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'. */ @@ -96547,6 +98767,118 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const custom_pages_possibleTypes: string[] = ['custom_pages'] + export const iscustom_pages = (obj?: { __typename?: any } | null): obj is custom_pages => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages"') + return custom_pages_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_aggregate_possibleTypes: string[] = ['custom_pages_aggregate'] + export const iscustom_pages_aggregate = (obj?: { __typename?: any } | null): obj is custom_pages_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_aggregate"') + return custom_pages_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_aggregate_fields_possibleTypes: string[] = ['custom_pages_aggregate_fields'] + export const iscustom_pages_aggregate_fields = (obj?: { __typename?: any } | null): obj is custom_pages_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_aggregate_fields"') + return custom_pages_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_avg_fields_possibleTypes: string[] = ['custom_pages_avg_fields'] + export const iscustom_pages_avg_fields = (obj?: { __typename?: any } | null): obj is custom_pages_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_avg_fields"') + return custom_pages_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_max_fields_possibleTypes: string[] = ['custom_pages_max_fields'] + export const iscustom_pages_max_fields = (obj?: { __typename?: any } | null): obj is custom_pages_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_max_fields"') + return custom_pages_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_min_fields_possibleTypes: string[] = ['custom_pages_min_fields'] + export const iscustom_pages_min_fields = (obj?: { __typename?: any } | null): obj is custom_pages_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_min_fields"') + return custom_pages_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_mutation_response_possibleTypes: string[] = ['custom_pages_mutation_response'] + export const iscustom_pages_mutation_response = (obj?: { __typename?: any } | null): obj is custom_pages_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_mutation_response"') + return custom_pages_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_stddev_fields_possibleTypes: string[] = ['custom_pages_stddev_fields'] + export const iscustom_pages_stddev_fields = (obj?: { __typename?: any } | null): obj is custom_pages_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_stddev_fields"') + return custom_pages_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_stddev_pop_fields_possibleTypes: string[] = ['custom_pages_stddev_pop_fields'] + export const iscustom_pages_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is custom_pages_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_stddev_pop_fields"') + return custom_pages_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_stddev_samp_fields_possibleTypes: string[] = ['custom_pages_stddev_samp_fields'] + export const iscustom_pages_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is custom_pages_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_stddev_samp_fields"') + return custom_pages_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_sum_fields_possibleTypes: string[] = ['custom_pages_sum_fields'] + export const iscustom_pages_sum_fields = (obj?: { __typename?: any } | null): obj is custom_pages_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_sum_fields"') + return custom_pages_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_var_pop_fields_possibleTypes: string[] = ['custom_pages_var_pop_fields'] + export const iscustom_pages_var_pop_fields = (obj?: { __typename?: any } | null): obj is custom_pages_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_var_pop_fields"') + return custom_pages_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_var_samp_fields_possibleTypes: string[] = ['custom_pages_var_samp_fields'] + export const iscustom_pages_var_samp_fields = (obj?: { __typename?: any } | null): obj is custom_pages_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_var_samp_fields"') + return custom_pages_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const custom_pages_variance_fields_possibleTypes: string[] = ['custom_pages_variance_fields'] + export const iscustom_pages_variance_fields = (obj?: { __typename?: any } | null): obj is custom_pages_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "iscustom_pages_variance_fields"') + return custom_pages_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const db_backups_possibleTypes: string[] = ['db_backups'] export const isdb_backups = (obj?: { __typename?: any } | null): obj is db_backups => { if (!obj?.__typename) throw new Error('__typename is missing in "isdb_backups"') @@ -98723,6 +101055,54 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const e_tournament_categories_possibleTypes: string[] = ['e_tournament_categories'] + export const ise_tournament_categories = (obj?: { __typename?: any } | null): obj is e_tournament_categories => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories"') + return e_tournament_categories_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_categories_aggregate_possibleTypes: string[] = ['e_tournament_categories_aggregate'] + export const ise_tournament_categories_aggregate = (obj?: { __typename?: any } | null): obj is e_tournament_categories_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories_aggregate"') + return e_tournament_categories_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_categories_aggregate_fields_possibleTypes: string[] = ['e_tournament_categories_aggregate_fields'] + export const ise_tournament_categories_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_tournament_categories_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories_aggregate_fields"') + return e_tournament_categories_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_categories_max_fields_possibleTypes: string[] = ['e_tournament_categories_max_fields'] + export const ise_tournament_categories_max_fields = (obj?: { __typename?: any } | null): obj is e_tournament_categories_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories_max_fields"') + return e_tournament_categories_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_categories_min_fields_possibleTypes: string[] = ['e_tournament_categories_min_fields'] + export const ise_tournament_categories_min_fields = (obj?: { __typename?: any } | null): obj is e_tournament_categories_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories_min_fields"') + return e_tournament_categories_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_tournament_categories_mutation_response_possibleTypes: string[] = ['e_tournament_categories_mutation_response'] + export const ise_tournament_categories_mutation_response = (obj?: { __typename?: any } | null): obj is e_tournament_categories_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_categories_mutation_response"') + return e_tournament_categories_mutation_response_possibleTypes.includes(obj.__typename) + } + + + const e_tournament_stage_types_possibleTypes: string[] = ['e_tournament_stage_types'] export const ise_tournament_stage_types = (obj?: { __typename?: any } | null): obj is e_tournament_stage_types => { if (!obj?.__typename) throw new Error('__typename is missing in "ise_tournament_stage_types"') @@ -108067,6 +110447,102 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const tournament_categories_possibleTypes: string[] = ['tournament_categories'] + export const istournament_categories = (obj?: { __typename?: any } | null): obj is tournament_categories => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories"') + return tournament_categories_possibleTypes.includes(obj.__typename) + } + + + + const tournament_categories_aggregate_possibleTypes: string[] = ['tournament_categories_aggregate'] + export const istournament_categories_aggregate = (obj?: { __typename?: any } | null): obj is tournament_categories_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories_aggregate"') + return tournament_categories_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_categories_aggregate_fields_possibleTypes: string[] = ['tournament_categories_aggregate_fields'] + export const istournament_categories_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_categories_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories_aggregate_fields"') + return tournament_categories_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_categories_max_fields_possibleTypes: string[] = ['tournament_categories_max_fields'] + export const istournament_categories_max_fields = (obj?: { __typename?: any } | null): obj is tournament_categories_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories_max_fields"') + return tournament_categories_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_categories_min_fields_possibleTypes: string[] = ['tournament_categories_min_fields'] + export const istournament_categories_min_fields = (obj?: { __typename?: any } | null): obj is tournament_categories_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories_min_fields"') + return tournament_categories_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_categories_mutation_response_possibleTypes: string[] = ['tournament_categories_mutation_response'] + export const istournament_categories_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_categories_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_categories_mutation_response"') + return tournament_categories_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizer_teams_possibleTypes: string[] = ['tournament_organizer_teams'] + export const istournament_organizer_teams = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams"') + return tournament_organizer_teams_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizer_teams_aggregate_possibleTypes: string[] = ['tournament_organizer_teams_aggregate'] + export const istournament_organizer_teams_aggregate = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams_aggregate"') + return tournament_organizer_teams_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizer_teams_aggregate_fields_possibleTypes: string[] = ['tournament_organizer_teams_aggregate_fields'] + export const istournament_organizer_teams_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams_aggregate_fields"') + return tournament_organizer_teams_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizer_teams_max_fields_possibleTypes: string[] = ['tournament_organizer_teams_max_fields'] + export const istournament_organizer_teams_max_fields = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams_max_fields"') + return tournament_organizer_teams_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizer_teams_min_fields_possibleTypes: string[] = ['tournament_organizer_teams_min_fields'] + export const istournament_organizer_teams_min_fields = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams_min_fields"') + return tournament_organizer_teams_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_organizer_teams_mutation_response_possibleTypes: string[] = ['tournament_organizer_teams_mutation_response'] + export const istournament_organizer_teams_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_organizer_teams_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizer_teams_mutation_response"') + return tournament_organizer_teams_mutation_response_possibleTypes.includes(obj.__typename) + } + + + const tournament_organizers_possibleTypes: string[] = ['tournament_organizers'] export const istournament_organizers = (obj?: { __typename?: any } | null): obj is tournament_organizers => { if (!obj?.__typename) throw new Error('__typename is missing in "istournament_organizers"') @@ -108179,6 +110655,118 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const tournament_prizes_possibleTypes: string[] = ['tournament_prizes'] + export const istournament_prizes = (obj?: { __typename?: any } | null): obj is tournament_prizes => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes"') + return tournament_prizes_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_aggregate_possibleTypes: string[] = ['tournament_prizes_aggregate'] + export const istournament_prizes_aggregate = (obj?: { __typename?: any } | null): obj is tournament_prizes_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_aggregate"') + return tournament_prizes_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_aggregate_fields_possibleTypes: string[] = ['tournament_prizes_aggregate_fields'] + export const istournament_prizes_aggregate_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_aggregate_fields"') + return tournament_prizes_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_avg_fields_possibleTypes: string[] = ['tournament_prizes_avg_fields'] + export const istournament_prizes_avg_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_avg_fields"') + return tournament_prizes_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_max_fields_possibleTypes: string[] = ['tournament_prizes_max_fields'] + export const istournament_prizes_max_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_max_fields"') + return tournament_prizes_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_min_fields_possibleTypes: string[] = ['tournament_prizes_min_fields'] + export const istournament_prizes_min_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_min_fields"') + return tournament_prizes_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_mutation_response_possibleTypes: string[] = ['tournament_prizes_mutation_response'] + export const istournament_prizes_mutation_response = (obj?: { __typename?: any } | null): obj is tournament_prizes_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_mutation_response"') + return tournament_prizes_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_stddev_fields_possibleTypes: string[] = ['tournament_prizes_stddev_fields'] + export const istournament_prizes_stddev_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_stddev_fields"') + return tournament_prizes_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_stddev_pop_fields_possibleTypes: string[] = ['tournament_prizes_stddev_pop_fields'] + export const istournament_prizes_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_stddev_pop_fields"') + return tournament_prizes_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_stddev_samp_fields_possibleTypes: string[] = ['tournament_prizes_stddev_samp_fields'] + export const istournament_prizes_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_stddev_samp_fields"') + return tournament_prizes_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_sum_fields_possibleTypes: string[] = ['tournament_prizes_sum_fields'] + export const istournament_prizes_sum_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_sum_fields"') + return tournament_prizes_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_var_pop_fields_possibleTypes: string[] = ['tournament_prizes_var_pop_fields'] + export const istournament_prizes_var_pop_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_var_pop_fields"') + return tournament_prizes_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_var_samp_fields_possibleTypes: string[] = ['tournament_prizes_var_samp_fields'] + export const istournament_prizes_var_samp_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_var_samp_fields"') + return tournament_prizes_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const tournament_prizes_variance_fields_possibleTypes: string[] = ['tournament_prizes_variance_fields'] + export const istournament_prizes_variance_fields = (obj?: { __typename?: any } | null): obj is tournament_prizes_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "istournament_prizes_variance_fields"') + return tournament_prizes_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const tournament_stage_windows_possibleTypes: string[] = ['tournament_stage_windows'] export const istournament_stage_windows = (obj?: { __typename?: any } | null): obj is tournament_stage_windows => { if (!obj?.__typename) throw new Error('__typename is missing in "istournament_stage_windows"') @@ -112485,6 +115073,46 @@ export const enumCursorOrdering = { DESC: 'DESC' as const } +export const enumCustomPagesConstraint = { + custom_pages_pkey: 'custom_pages_pkey' as const, + custom_pages_single_default_idx: 'custom_pages_single_default_idx' as const, + custom_pages_slug_key: 'custom_pages_slug_key' as const +} + +export const enumCustomPagesSelectColumn = { + created_at: 'created_at' as const, + enabled: 'enabled' as const, + exposed_module: 'exposed_module' as const, + icon: 'icon' as const, + id: 'id' as const, + is_default: 'is_default' as const, + nav_group: 'nav_group' as const, + nav_order: 'nav_order' as const, + remote_entry_url: 'remote_entry_url' as const, + remote_scope: 'remote_scope' as const, + required_role: 'required_role' as const, + slug: 'slug' as const, + title: 'title' as const, + updated_at: 'updated_at' as const +} + +export const enumCustomPagesUpdateColumn = { + created_at: 'created_at' as const, + enabled: 'enabled' as const, + exposed_module: 'exposed_module' as const, + icon: 'icon' as const, + id: 'id' as const, + is_default: 'is_default' as const, + nav_group: 'nav_group' as const, + nav_order: 'nav_order' as const, + remote_entry_url: 'remote_entry_url' as const, + remote_scope: 'remote_scope' as const, + required_role: 'required_role' as const, + slug: 'slug' as const, + title: 'title' as const, + updated_at: 'updated_at' as const +} + export const enumDbBackupsConstraint = { db_backups_pkey: 'db_backups_pkey' as const } @@ -113444,6 +116072,27 @@ export const enumETimeoutSettingsUpdateColumn = { value: 'value' as const } +export const enumETournamentCategoriesConstraint = { + e_tournament_categories_pkey: 'e_tournament_categories_pkey' as const +} + +export const enumETournamentCategoriesEnum = { + LAN: 'LAN' as const, + League: 'League' as const, + LocationEvent: 'LocationEvent' as const, + OnlineEvent: 'OnlineEvent' as const +} + +export const enumETournamentCategoriesSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumETournamentCategoriesUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + export const enumETournamentStageTypesConstraint = { e_tournament_stage_types_pkey: 'e_tournament_stage_types_pkey' as const } @@ -114627,6 +117276,7 @@ export const enumMatchOptionsSelectColumn = { check_in_setting: 'check_in_setting' as const, coaches: 'coaches' as const, default_models: 'default_models' as const, + halftime_pausematch: 'halftime_pausematch' as const, id: 'id' as const, invite_code: 'invite_code' as const, knife_round: 'knife_round' as const, @@ -114641,6 +117291,7 @@ export const enumMatchOptionsSelectColumn = { ready_setting: 'ready_setting' as const, region_veto: 'region_veto' as const, regions: 'regions' as const, + round_restart_delay: 'round_restart_delay' as const, tech_timeout_setting: 'tech_timeout_setting' as const, timeout_setting: 'timeout_setting' as const, tv_delay: 'tv_delay' as const, @@ -114654,6 +117305,7 @@ export const enumMatchOptionsUpdateColumn = { check_in_setting: 'check_in_setting' as const, coaches: 'coaches' as const, default_models: 'default_models' as const, + halftime_pausematch: 'halftime_pausematch' as const, id: 'id' as const, invite_code: 'invite_code' as const, knife_round: 'knife_round' as const, @@ -114668,6 +117320,7 @@ export const enumMatchOptionsUpdateColumn = { ready_setting: 'ready_setting' as const, region_veto: 'region_veto' as const, regions: 'regions' as const, + round_restart_delay: 'round_restart_delay' as const, tech_timeout_setting: 'tech_timeout_setting' as const, timeout_setting: 'timeout_setting' as const, tv_delay: 'tv_delay' as const, @@ -116517,15 +119170,25 @@ export const enumTeamsSelectColumn = { avatar_url: 'avatar_url' as const, captain_steam_id: 'captain_steam_id' as const, id: 'id' as const, + is_organization: 'is_organization' as const, name: 'name' as const, owner_steam_id: 'owner_steam_id' as const, short_name: 'short_name' as const } +export const enumTeamsSelectColumnTeamsAggregateBoolExpBoolAndArgumentsColumns = { + is_organization: 'is_organization' as const +} + +export const enumTeamsSelectColumnTeamsAggregateBoolExpBoolOrArgumentsColumns = { + is_organization: 'is_organization' as const +} + export const enumTeamsUpdateColumn = { avatar_url: 'avatar_url' as const, captain_steam_id: 'captain_steam_id' as const, id: 'id' as const, + is_organization: 'is_organization' as const, name: 'name' as const, owner_steam_id: 'owner_steam_id' as const, short_name: 'short_name' as const @@ -116590,20 +119253,74 @@ export const enumTournamentBracketsUpdateColumn = { tournament_team_id_2: 'tournament_team_id_2' as const } +export const enumTournamentCategoriesConstraint = { + tournament_categories_pkey: 'tournament_categories_pkey' as const +} + +export const enumTournamentCategoriesSelectColumn = { + category: 'category' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentCategoriesUpdateColumn = { + category: 'category' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentOrganizerTeamsConstraint = { + tournament_organizer_teams_pkey: 'tournament_organizer_teams_pkey' as const +} + +export const enumTournamentOrganizerTeamsSelectColumn = { + created_at: 'created_at' as const, + team_id: 'team_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentOrganizerTeamsUpdateColumn = { + created_at: 'created_at' as const, + team_id: 'team_id' as const, + tournament_id: 'tournament_id' as const +} + export const enumTournamentOrganizersConstraint = { tournament_organizers_pkey: 'tournament_organizers_pkey' as const } export const enumTournamentOrganizersSelectColumn = { + organization_team_id: 'organization_team_id' as const, steam_id: 'steam_id' as const, tournament_id: 'tournament_id' as const } export const enumTournamentOrganizersUpdateColumn = { + organization_team_id: 'organization_team_id' as const, steam_id: 'steam_id' as const, tournament_id: 'tournament_id' as const } +export const enumTournamentPrizesConstraint = { + tournament_prizes_pkey: 'tournament_prizes_pkey' as const +} + +export const enumTournamentPrizesSelectColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + order: 'order' as const, + place: 'place' as const, + prize: 'prize' as const, + tournament_id: 'tournament_id' as const +} + +export const enumTournamentPrizesUpdateColumn = { + created_at: 'created_at' as const, + id: 'id' as const, + order: 'order' as const, + place: 'place' as const, + prize: 'prize' as const, + tournament_id: 'tournament_id' as const +} + export const enumTournamentStageWindowsConstraint = { tournament_stage_windows_pkey: 'tournament_stage_windows_pkey' as const, tournament_stage_windows_tournament_stage_id_round_key: 'tournament_stage_windows_tournament_stage_id_round_key' as const @@ -116636,6 +119353,7 @@ export const enumTournamentStagesConstraint = { export const enumTournamentStagesSelectColumn = { decider_best_of: 'decider_best_of' as const, default_best_of: 'default_best_of' as const, + final_map_advantage: 'final_map_advantage' as const, groups: 'groups' as const, id: 'id' as const, match_options_id: 'match_options_id' as const, @@ -116663,6 +119381,7 @@ export const enumTournamentStagesSelectColumnTournamentStagesAggregateBoolExpBoo export const enumTournamentStagesUpdateColumn = { decider_best_of: 'decider_best_of' as const, default_best_of: 'default_best_of' as const, + final_map_advantage: 'final_map_advantage' as const, groups: 'groups' as const, id: 'id' as const, match_options_id: 'match_options_id' as const, @@ -116823,6 +119542,7 @@ export const enumTournamentsConstraint = { export const enumTournamentsSelectColumn = { auto_start: 'auto_start' as const, + banner: 'banner' as const, created_at: 'created_at' as const, description: 'description' as const, discord_guild_id: 'discord_guild_id' as const, @@ -116842,8 +119562,13 @@ export const enumTournamentsSelectColumn = { discord_role_id: 'discord_role_id' as const, discord_voice_enabled: 'discord_voice_enabled' as const, discord_webhook: 'discord_webhook' as const, + homepage: 'homepage' as const, id: 'id' as const, is_league: 'is_league' as const, + latitude: 'latitude' as const, + location: 'location' as const, + logo: 'logo' as const, + longitude: 'longitude' as const, match_options_id: 'match_options_id' as const, name: 'name' as const, organizer_steam_id: 'organizer_steam_id' as const, @@ -116853,6 +119578,11 @@ export const enumTournamentsSelectColumn = { trophies_enabled: 'trophies_enabled' as const } +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpAvgArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + export const enumTournamentsSelectColumnTournamentsAggregateBoolExpBoolAndArgumentsColumns = { auto_start: 'auto_start' as const, discord_notifications_enabled: 'discord_notifications_enabled' as const, @@ -116893,8 +119623,44 @@ export const enumTournamentsSelectColumnTournamentsAggregateBoolExpBoolOrArgumen trophies_enabled: 'trophies_enabled' as const } +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpCorrArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpCovarSampArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpMaxArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpMinArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpStddevSampArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpSumArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + +export const enumTournamentsSelectColumnTournamentsAggregateBoolExpVarSampArgumentsColumns = { + latitude: 'latitude' as const, + longitude: 'longitude' as const +} + export const enumTournamentsUpdateColumn = { auto_start: 'auto_start' as const, + banner: 'banner' as const, created_at: 'created_at' as const, description: 'description' as const, discord_guild_id: 'discord_guild_id' as const, @@ -116914,8 +119680,13 @@ export const enumTournamentsUpdateColumn = { discord_role_id: 'discord_role_id' as const, discord_voice_enabled: 'discord_voice_enabled' as const, discord_webhook: 'discord_webhook' as const, + homepage: 'homepage' as const, id: 'id' as const, is_league: 'is_league' as const, + latitude: 'latitude' as const, + location: 'location' as const, + logo: 'logo' as const, + longitude: 'longitude' as const, match_options_id: 'match_options_id' as const, name: 'name' as const, organizer_steam_id: 'organizer_steam_id' as const, diff --git a/generated/types.ts b/generated/types.ts index 455b666cd..7a7505808 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -25,533 +25,537 @@ export default { 242, 251, 259, - 276, - 287, - 288, - 289, - 301, - 321, - 332, - 333, - 334, - 346, - 366, - 378, - 379, - 380, - 392, - 404, + 269, + 278, + 286, + 303, + 314, + 315, + 316, + 328, + 348, + 359, + 360, + 361, + 373, + 393, 405, - 414, - 418, - 424, - 425, - 435, - 439, + 406, + 407, + 419, + 431, + 432, + 441, 445, - 446, - 456, - 460, + 451, + 452, + 462, 466, - 467, - 477, - 481, + 472, + 473, + 483, 487, - 488, - 498, - 502, + 493, + 494, + 504, 508, - 509, - 519, - 523, + 514, + 515, + 525, 529, - 530, - 539, - 543, - 549, + 535, + 536, + 546, 550, - 559, - 563, - 569, + 556, + 557, + 566, 570, - 580, - 584, + 576, + 577, + 586, 590, - 591, - 600, - 604, - 610, + 596, + 597, + 607, 611, - 621, - 625, + 617, + 618, + 627, 631, - 632, - 642, - 646, + 637, + 638, + 648, 652, - 653, - 663, - 667, + 658, + 659, + 669, 673, - 674, - 684, - 688, + 679, + 680, + 690, 694, - 695, - 705, - 709, + 700, + 701, + 711, 715, - 716, - 726, - 730, + 721, + 722, + 732, 736, - 737, - 746, - 750, - 756, + 742, + 743, + 753, 757, - 767, - 771, + 763, + 764, + 773, 777, - 778, - 787, - 791, - 797, + 783, + 784, + 794, 798, - 808, - 812, + 804, + 805, + 814, 818, - 819, - 828, - 832, - 838, + 824, + 825, + 835, 839, - 849, - 853, + 845, + 846, + 855, 859, - 860, - 870, - 874, + 865, + 866, + 876, 880, - 881, - 890, - 894, - 900, + 886, + 887, + 897, 901, - 910, - 914, - 920, + 907, + 908, + 917, 921, - 930, - 934, - 940, + 927, + 928, + 937, 941, - 950, - 954, - 960, + 947, + 948, + 957, 961, - 970, - 974, - 980, + 967, + 968, + 977, 981, - 991, - 995, + 987, + 988, + 997, 1001, - 1002, - 1011, - 1015, - 1021, + 1007, + 1008, + 1018, 1022, - 1031, - 1035, - 1041, + 1028, + 1029, + 1038, 1042, - 1051, - 1055, - 1061, + 1048, + 1049, + 1058, 1062, - 1071, - 1075, - 1081, + 1068, + 1069, + 1078, 1082, - 1092, - 1096, + 1088, + 1089, + 1098, 1102, - 1103, - 1112, - 1116, - 1122, + 1108, + 1109, + 1119, 1123, - 1132, - 1136, - 1142, + 1129, + 1130, + 1139, 1143, - 1153, - 1157, + 1149, + 1150, + 1159, 1163, - 1164, - 1174, - 1178, + 1169, + 1170, + 1180, 1184, - 1185, - 1194, - 1198, - 1204, + 1190, + 1191, + 1201, 1205, - 1214, - 1218, - 1224, - 1225, - 1234, - 1238, - 1244, + 1211, + 1212, + 1222, + 1226, + 1232, + 1233, + 1242, + 1246, 1252, - 1256, - 1268, - 1290, - 1301, - 1313, - 1321, - 1333, - 1351, - 1362, - 1374, - 1392, - 1403, - 1415, - 1431, - 1441, - 1445, - 1455, - 1465, - 1469, - 1476, - 1486, - 1494, - 1499, - 1506, - 1515, - 1523, - 1541, - 1557, - 1558, - 1559, + 1253, + 1262, + 1266, + 1272, + 1273, + 1282, + 1286, + 1292, + 1300, + 1304, + 1316, + 1338, + 1349, + 1361, + 1369, + 1381, + 1399, + 1410, + 1422, + 1440, + 1451, + 1463, + 1479, + 1489, + 1493, + 1503, + 1513, + 1517, + 1524, + 1534, + 1542, + 1547, + 1554, + 1563, 1571, - 1585, - 1599, + 1589, + 1605, + 1606, 1607, - 1618, - 1631, - 1639, - 1648, - 1650, - 1652, + 1619, + 1633, + 1647, + 1655, 1666, - 1684, - 1694, - 1702, - 1717, - 1728, - 1740, - 1758, - 1769, - 1781, - 1799, - 1810, - 1822, - 1838, - 1849, - 1853, - 1861, - 1875, - 1883, - 1898, + 1679, + 1687, + 1696, + 1698, + 1700, + 1714, + 1732, + 1742, + 1750, + 1765, + 1776, + 1788, + 1806, + 1817, + 1829, + 1847, + 1858, + 1870, + 1886, + 1897, + 1901, 1909, - 1921, - 1939, - 1950, - 1962, - 1980, - 1992, - 2004, - 2016, - 2025, - 2029, - 2035, - 2044, - 2048, - 2062, + 1923, + 1931, + 1946, + 1957, + 1969, + 1987, + 1998, + 2010, + 2028, + 2040, + 2052, + 2064, 2073, - 2074, - 2075, - 2087, - 2099, - 2108, - 2112, - 2124, + 2077, + 2083, + 2092, + 2096, + 2110, + 2121, + 2122, + 2123, 2135, - 2136, - 2137, - 2141, - 2153, - 2165, - 2177, - 2196, - 2211, - 2223, - 2243, - 2254, - 2255, - 2256, - 2268, - 2286, - 2298, - 2310, - 2331, - 2347, - 2348, - 2349, - 2361, + 2147, + 2156, + 2160, + 2172, + 2183, + 2184, + 2185, + 2189, + 2201, + 2213, + 2225, + 2244, + 2259, + 2271, + 2291, + 2302, + 2303, + 2304, + 2316, + 2334, + 2346, + 2358, 2379, - 2390, - 2402, - 2418, - 2428, - 2432, - 2444, - 2456, - 2468, - 2481, - 2491, - 2499, - 2512, - 2522, - 2526, - 2541, - 2556, - 2557, - 2558, + 2395, + 2396, + 2397, + 2409, + 2427, + 2438, + 2450, + 2466, + 2476, + 2480, + 2492, + 2504, + 2516, + 2529, + 2539, + 2547, + 2560, 2570, - 2582, - 2590, - 2594, + 2574, + 2589, + 2604, + 2605, 2606, 2618, 2630, + 2638, 2642, - 2650, 2654, - 2681, - 2682, - 2683, - 2707, - 2716, - 2724, - 2742, - 2757, - 2758, - 2759, - 2771, - 2779, - 2781, - 2792, - 2803, - 2815, - 2828, - 2838, - 2846, - 2856, - 2865, - 2873, - 2888, - 2899, - 2911, - 2931, - 2942, - 2943, - 2944, - 2956, - 2972, + 2666, + 2678, + 2690, + 2698, + 2702, + 2729, + 2730, + 2731, + 2755, + 2764, + 2772, + 2790, + 2805, + 2806, + 2807, + 2819, + 2827, + 2829, + 2840, + 2851, + 2863, + 2876, + 2886, + 2894, + 2904, + 2913, + 2921, + 2936, + 2947, + 2959, + 2979, + 2990, + 2991, 2992, - 3003, - 3015, - 3028, - 3037, - 3045, - 3060, - 3071, - 3083, - 3103, - 3114, - 3115, - 3116, - 3128, - 3158, - 3169, - 3181, - 3189, - 3200, - 3201, - 3202, - 3214, - 3233, - 3255, - 3266, - 3278, - 3294, - 3320, - 3347, - 3358, - 3370, - 3386, + 3004, + 3020, + 3040, + 3051, + 3063, + 3076, + 3085, + 3093, + 3108, + 3119, + 3131, + 3151, + 3162, + 3163, + 3164, + 3176, + 3206, + 3217, + 3229, + 3237, + 3248, + 3249, + 3250, + 3262, + 3281, + 3303, + 3314, + 3326, + 3342, + 3368, + 3395, 3406, - 3417, - 3429, - 3447, - 3458, - 3470, - 3498, - 3509, - 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, - 3529, - 3542, - 3552, + 3418, + 3434, + 3454, + 3465, + 3477, + 3495, + 3506, + 3518, + 3546, + 3557, + 3558, + 3559, 3560, - 3571, - 3584, - 3592, - 3602, - 3611, + 3561, + 3562, + 3563, + 3564, + 3565, + 3577, + 3590, + 3600, + 3608, 3619, - 3634, - 3645, - 3657, - 3675, - 3686, - 3698, - 3722, - 3744, - 3754, - 3762, - 3772, - 3781, - 3789, - 3803, - 3813, - 3821, - 3831, - 3840, - 3848, - 3865, - 3877, - 3878, + 3632, + 3640, + 3650, + 3659, + 3667, + 3682, + 3693, + 3705, + 3723, + 3734, + 3746, + 3770, + 3792, + 3802, + 3810, + 3820, + 3829, + 3837, + 3851, + 3861, + 3869, 3879, - 3891, - 3903, - 3911, - 3915, - 3917, + 3888, + 3896, + 3913, + 3925, + 3926, 3927, - 3937, - 3941, - 3948, - 3958, - 3966, - 3976, + 3939, + 3951, + 3959, + 3963, + 3965, + 3975, 3985, - 3993, - 4008, - 4019, - 4031, - 4051, - 4062, - 4063, - 4064, - 4076, - 4089, - 4098, - 4106, - 4121, - 4131, - 4132, - 4133, + 3989, + 3996, + 4006, + 4014, + 4024, + 4033, + 4041, + 4056, + 4067, + 4079, + 4099, + 4110, + 4111, + 4112, + 4124, 4137, - 4149, - 4160, - 4172, - 4192, - 4204, - 4205, - 4206, - 4218, - 4231, - 4241, - 4249, - 4259, - 4268, - 4276, - 4291, - 4303, - 4315, - 4323, + 4146, + 4154, + 4169, + 4179, + 4180, + 4181, + 4185, + 4197, + 4208, + 4220, + 4240, + 4252, + 4253, + 4254, + 4266, + 4279, + 4289, + 4297, + 4307, + 4316, 4324, - 4338, - 4350, - 4351, - 4352, - 4364, - 4382, - 4393, - 4405, - 4423, - 4434, + 4341, + 4353, + 4354, + 4355, + 4367, + 4375, + 4376, + 4390, + 4402, + 4403, + 4404, + 4416, + 4432, + 4442, 4446, - 4467, - 4483, - 4484, - 4485, - 4497, - 4515, - 4526, - 4538, - 4556, - 4567, - 4579, - 4597, - 4609, - 4621, - 4641, - 4652, - 4653, - 4654, - 4666, - 4684, - 4696, + 4456, + 4466, + 4470, + 4482, + 4493, + 4505, + 4523, + 4534, + 4546, + 4564, + 4575, + 4587, + 4608, + 4624, + 4625, + 4626, + 4638, + 4656, + 4667, + 4679, + 4697, 4708, - 4728, - 4740, - 4741, - 4742, - 4754, + 4720, + 4738, + 4750, 4762, - 4791, - 4792, + 4782, 4793, 4794, 4795, - 4796, - 4797, - 4798, - 4799, - 4824, - 4850, + 4807, + 4825, + 4837, + 4849, + 4879, + 4891, + 4892, 4893, 4894, 4895, @@ -561,70 +565,92 @@ export default { 4899, 4900, 4901, - 4930, + 4913, + 4921, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, 4958, 4983, - 5001, - 5019, - 5040, + 5009, + 5052, + 5053, + 5054, + 5055, + 5056, + 5057, + 5058, + 5059, 5060, - 5086, - 5111, - 5129, - 5165, - 5166, - 5167, - 5168, - 5169, - 5170, - 5171, - 5172, - 5173, - 5198, - 5216, - 5234, - 5262, - 5289, - 5307, + 5089, + 5117, + 5142, + 5160, + 5178, + 5199, + 5219, + 5245, + 5270, + 5288, + 5324, 5325, - 5351, - 5376, - 5394, + 5326, + 5327, + 5328, + 5329, + 5330, + 5331, + 5332, + 5357, + 5375, + 5393, 5421, - 5422, - 5423, - 5436, - 5456, - 5476, - 5506, - 5518, - 5519, - 5520, - 5521, - 5522, - 5523, - 5524, - 5525, - 5526, - 5538, - 5572, - 5573, - 5574, - 5575, - 5576, - 5577, - 5578, - 5579, + 5448, + 5466, + 5484, + 5510, + 5535, + 5553, 5580, - 5623, - 5624, - 5625, - 5626, - 5627, - 5628, - 5629, - 5630, - 5631 + 5581, + 5582, + 5595, + 5615, + 5635, + 5665, + 5677, + 5678, + 5679, + 5680, + 5681, + 5682, + 5683, + 5684, + 5685, + 5697, + 5731, + 5732, + 5733, + 5734, + 5735, + 5736, + 5737, + 5738, + 5739, + 5782, + 5783, + 5784, + 5785, + 5786, + 5787, + 5788, + 5789, + 5790 ], "types": { "ActiveConnection": { @@ -641,7 +667,7 @@ export default { 78 ], "query_start": [ - 4323 + 4375 ], "state": [ 78 @@ -670,7 +696,7 @@ export default { 78 ], "query_start": [ - 4323 + 4375 ], "state": [ 78 @@ -768,7 +794,7 @@ export default { 38 ], "payload": [ - 1652 + 1700 ], "start_ms": [ 38 @@ -802,7 +828,7 @@ export default { 78 ], "match_map_id": [ - 4762 + 4921 ], "output": [ 6 @@ -862,7 +888,7 @@ export default { }, "CpuStat": { "time": [ - 4323 + 4375 ], "total": [ 180 @@ -879,7 +905,7 @@ export default { }, "CreateClipRenderOutput": { "job_id": [ - 4762 + 4921 ], "success": [ 3 @@ -890,7 +916,7 @@ export default { }, "CreateDraftGameOutput": { "draftGameId": [ - 4762 + 4921 ], "__typename": [ 78 @@ -898,7 +924,7 @@ export default { }, "CreateScheduledMatchOutput": { "matchId": [ - 4762 + 4921 ], "__typename": [ 78 @@ -1054,7 +1080,7 @@ export default { 20 ], "time": [ - 4323 + 4375 ], "__typename": [ 78 @@ -1080,7 +1106,7 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "mode": [ 78 @@ -1159,7 +1185,7 @@ export default { 3 ], "modified": [ - 4323 + 4375 ], "name": [ 78 @@ -1263,7 +1289,7 @@ export default { 32 ], "time": [ - 4323 + 4375 ], "__typename": [ 78 @@ -1505,7 +1531,7 @@ export default { 78 ], "player": [ - 3739 + 3787 ], "profile_url": [ 78 @@ -1522,7 +1548,7 @@ export default { }, "MemoryStat": { "time": [ - 4323 + 4375 ], "total": [ 180 @@ -1539,7 +1565,7 @@ export default { 49 ], "time": [ - 4323 + 4375 ], "__typename": [ 78 @@ -1559,7 +1585,7 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "published_at": [ 78 @@ -2317,16 +2343,16 @@ export default { 38 ], "last_analyze": [ - 4323 + 4375 ], "last_autoanalyze": [ - 4323 + 4375 ], "last_autovacuum": [ - 4323 + 4375 ], "last_vacuum": [ - 4323 + 4375 ], "n_dead_tup": [ 38 @@ -2400,7 +2426,7 @@ export default { 78 ], "next_start": [ - 4323 + 4375 ], "__typename": [ 78 @@ -2422,7 +2448,7 @@ export default { }, "TournamentMatchResetImpact": { "bracket_id": [ - 4762 + 4921 ], "depth": [ 38 @@ -2431,7 +2457,7 @@ export default { 3 ], "match_id": [ - 4762 + 4921 ], "match_number": [ 38 @@ -2474,10 +2500,10 @@ export default { }, "_map_pool": { "map_id": [ - 4762 + 4921 ], "map_pool_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -2528,10 +2554,10 @@ export default { 95 ], "map_id": [ - 4764 + 4923 ], "map_pool_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -2540,10 +2566,10 @@ export default { "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 4762 + 4921 ], "map_pool_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -2551,10 +2577,10 @@ export default { }, "_map_pool_max_fields": { "map_id": [ - 4762 + 4921 ], "map_pool_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -2562,10 +2588,10 @@ export default { }, "_map_pool_min_fields": { "map_id": [ - 4762 + 4921 ], "map_pool_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -2598,10 +2624,10 @@ export default { }, "_map_pool_order_by": { "map_id": [ - 2781 + 2829 ], "map_pool_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -2609,10 +2635,10 @@ export default { }, "_map_pool_pk_columns_input": { "map_id": [ - 4762 + 4921 ], "map_pool_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -2621,10 +2647,10 @@ export default { "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 4762 + 4921 ], "map_pool_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -2643,10 +2669,10 @@ export default { }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 4762 + 4921 ], "map_pool_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -2667,10 +2693,10 @@ export default { "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -2767,7 +2793,7 @@ export default { 119 ], "count": [ - 2781 + 2829 ], "max": [ 125 @@ -2821,7 +2847,7 @@ export default { }, "abandoned_matches_avg_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -2838,10 +2864,10 @@ export default { 120 ], "abandoned_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "steam_id": [ 182 @@ -2861,10 +2887,10 @@ export default { }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -2875,10 +2901,10 @@ export default { }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -2889,13 +2915,13 @@ export default { }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -2903,10 +2929,10 @@ export default { }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -2917,13 +2943,13 @@ export default { }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -2956,13 +2982,13 @@ export default { }, "abandoned_matches_order_by": { "abandoned_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -2970,7 +2996,7 @@ export default { }, "abandoned_matches_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -2979,10 +3005,10 @@ export default { "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -3001,7 +3027,7 @@ export default { }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -3017,7 +3043,7 @@ export default { }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -3033,7 +3059,7 @@ export default { }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -3052,10 +3078,10 @@ export default { }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -3074,7 +3100,7 @@ export default { }, "abandoned_matches_sum_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -3105,7 +3131,7 @@ export default { }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -3121,7 +3147,7 @@ export default { }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -3137,7 +3163,7 @@ export default { }, "abandoned_matches_variance_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -3145,16 +3171,16 @@ export default { }, "api_keys": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "label": [ 78 ], "last_used_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -3240,16 +3266,16 @@ export default { 156 ], "created_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "label": [ 80 ], "last_used_at": [ - 4325 + 4377 ], "steam_id": [ 182 @@ -3269,16 +3295,16 @@ export default { }, "api_keys_insert_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "label": [ 78 ], "last_used_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -3289,16 +3315,16 @@ export default { }, "api_keys_max_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "label": [ 78 ], "last_used_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -3309,16 +3335,16 @@ export default { }, "api_keys_min_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "label": [ 78 ], "last_used_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -3354,19 +3380,19 @@ export default { }, "api_keys_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "last_used_at": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -3374,7 +3400,7 @@ export default { }, "api_keys_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -3383,16 +3409,16 @@ export default { "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "label": [ 78 ], "last_used_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -3438,16 +3464,16 @@ export default { }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "label": [ 78 ], "last_used_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -3505,7 +3531,7 @@ export default { }, "approve_league_season_movements_args": { "_league_season_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -3617,49 +3643,49 @@ export default { }, "clip_render_jobs": { "clip": [ - 2143 + 2191 ], "clip_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "error_message": [ 78 ], "game_server_node": [ - 1528 + 1576 ], "game_server_node_id": [ 78 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4324 + 4376 ], "match_map": [ - 2434 + 2482 ], "match_map_demo": [ - 2318 + 2366 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "paused": [ 3 ], "progress": [ - 2779 + 2827 ], "session_token": [ 78 @@ -3668,7 +3694,7 @@ export default { 38 ], "spec": [ - 1652, + 1700, { "path": [ 78 @@ -3679,7 +3705,7 @@ export default { 78 ], "status_history": [ - 1652, + 1700, { "path": [ 78 @@ -3687,7 +3713,7 @@ export default { } ], "user": [ - 3739 + 3787 ], "user_steam_id": [ 180 @@ -3824,7 +3850,7 @@ export default { 196 ], "count": [ - 2781 + 2829 ], "max": [ 205 @@ -3859,10 +3885,10 @@ export default { }, "clip_render_jobs_append_input": { "spec": [ - 1652 + 1700 ], "status_history": [ - 1652 + 1700 ], "__typename": [ 78 @@ -3895,13 +3921,13 @@ export default { }, "clip_render_jobs_avg_order_by": { "progress": [ - 2781 + 2829 ], "sort_index": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -3918,49 +3944,49 @@ export default { 197 ], "clip": [ - 2152 + 2200 ], "clip_id": [ - 4764 + 4923 ], "created_at": [ - 4325 + 4377 ], "error_message": [ 80 ], "game_server_node": [ - 1540 + 1588 ], "game_server_node_id": [ 80 ], "id": [ - 4764 + 4923 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4325 + 4377 ], "match_map": [ - 2443 + 2491 ], "match_map_demo": [ - 2330 + 2378 ], "match_map_demo_id": [ - 4764 + 4923 ], "match_map_id": [ - 4764 + 4923 ], "paused": [ 4 ], "progress": [ - 2780 + 2828 ], "session_token": [ 80 @@ -3969,16 +3995,16 @@ export default { 39 ], "spec": [ - 1654 + 1702 ], "status": [ 80 ], "status_history": [ - 1654 + 1702 ], "user": [ - 3743 + 3791 ], "user_steam_id": [ 182 @@ -4023,7 +4049,7 @@ export default { }, "clip_render_jobs_inc_input": { "progress": [ - 2779 + 2827 ], "sort_index": [ 38 @@ -4037,49 +4063,49 @@ export default { }, "clip_render_jobs_insert_input": { "clip": [ - 2161 + 2209 ], "clip_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "error_message": [ 78 ], "game_server_node": [ - 1552 + 1600 ], "game_server_node_id": [ 78 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4324 + 4376 ], "match_map": [ - 2452 + 2500 ], "match_map_demo": [ - 2342 + 2390 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "paused": [ 3 ], "progress": [ - 2779 + 2827 ], "session_token": [ 78 @@ -4088,16 +4114,16 @@ export default { 38 ], "spec": [ - 1652 + 1700 ], "status": [ 78 ], "status_history": [ - 1652 + 1700 ], "user": [ - 3750 + 3798 ], "user_steam_id": [ 180 @@ -4108,10 +4134,10 @@ export default { }, "clip_render_jobs_max_fields": { "clip_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "error_message": [ 78 @@ -4120,22 +4146,22 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4324 + 4376 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "progress": [ - 2779 + 2827 ], "session_token": [ 78 @@ -4155,46 +4181,46 @@ export default { }, "clip_render_jobs_max_order_by": { "clip_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "error_message": [ - 2781 + 2829 ], "game_server_node_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "k8s_job_name": [ - 2781 + 2829 ], "last_status_at": [ - 2781 + 2829 ], "match_map_demo_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "progress": [ - 2781 + 2829 ], "session_token": [ - 2781 + 2829 ], "sort_index": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -4202,10 +4228,10 @@ export default { }, "clip_render_jobs_min_fields": { "clip_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "error_message": [ 78 @@ -4214,22 +4240,22 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4324 + 4376 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "progress": [ - 2779 + 2827 ], "session_token": [ 78 @@ -4249,46 +4275,46 @@ export default { }, "clip_render_jobs_min_order_by": { "clip_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "error_message": [ - 2781 + 2829 ], "game_server_node_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "k8s_job_name": [ - 2781 + 2829 ], "last_status_at": [ - 2781 + 2829 ], "match_map_demo_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "progress": [ - 2781 + 2829 ], "session_token": [ - 2781 + 2829 ], "sort_index": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -4321,70 +4347,70 @@ export default { }, "clip_render_jobs_order_by": { "clip": [ - 2163 + 2211 ], "clip_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "error_message": [ - 2781 + 2829 ], "game_server_node": [ - 1554 + 1602 ], "game_server_node_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "k8s_job_name": [ - 2781 + 2829 ], "last_status_at": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_demo": [ - 2344 + 2392 ], "match_map_demo_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "paused": [ - 2781 + 2829 ], "progress": [ - 2781 + 2829 ], "session_token": [ - 2781 + 2829 ], "sort_index": [ - 2781 + 2829 ], "spec": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "status_history": [ - 2781 + 2829 ], "user": [ - 3752 + 3800 ], "user_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -4392,7 +4418,7 @@ export default { }, "clip_render_jobs_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -4400,10 +4426,10 @@ export default { }, "clip_render_jobs_prepend_input": { "spec": [ - 1652 + 1700 ], "status_history": [ - 1652 + 1700 ], "__typename": [ 78 @@ -4414,10 +4440,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": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "error_message": [ 78 @@ -4426,25 +4452,25 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4324 + 4376 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "paused": [ 3 ], "progress": [ - 2779 + 2827 ], "session_token": [ 78 @@ -4453,13 +4479,13 @@ export default { 38 ], "spec": [ - 1652 + 1700 ], "status": [ 78 ], "status_history": [ - 1652 + 1700 ], "user_steam_id": [ 180 @@ -4484,13 +4510,13 @@ export default { }, "clip_render_jobs_stddev_order_by": { "progress": [ - 2781 + 2829 ], "sort_index": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -4512,13 +4538,13 @@ export default { }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 2781 + 2829 ], "sort_index": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -4540,13 +4566,13 @@ export default { }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 2781 + 2829 ], "sort_index": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -4565,10 +4591,10 @@ export default { }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "error_message": [ 78 @@ -4577,25 +4603,25 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4324 + 4376 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "paused": [ 3 ], "progress": [ - 2779 + 2827 ], "session_token": [ 78 @@ -4604,13 +4630,13 @@ export default { 38 ], "spec": [ - 1652 + 1700 ], "status": [ 78 ], "status_history": [ - 1652 + 1700 ], "user_steam_id": [ 180 @@ -4621,7 +4647,7 @@ export default { }, "clip_render_jobs_sum_fields": { "progress": [ - 2779 + 2827 ], "sort_index": [ 38 @@ -4635,13 +4661,13 @@ export default { }, "clip_render_jobs_sum_order_by": { "progress": [ - 2781 + 2829 ], "sort_index": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -4693,13 +4719,13 @@ export default { }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 2781 + 2829 ], "sort_index": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -4721,13 +4747,13 @@ export default { }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 2781 + 2829 ], "sort_index": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -4749,13 +4775,13 @@ export default { }, "clip_render_jobs_variance_order_by": { "progress": [ - 2781 + 2829 ], "sort_index": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -4763,31 +4789,61 @@ export default { }, "clone_league_season_args": { "_league_season_id": [ - 4762 + 4921 ], "__typename": [ 78 ] }, "cursor_ordering": {}, - "db_backups": { + "custom_pages": { "created_at": [ - 4324 + 4376 + ], + "enabled": [ + 3 + ], + "exposed_module": [ + 78 + ], + "icon": [ + 78 ], "id": [ - 4762 + 4921 ], - "name": [ + "is_default": [ + 3 + ], + "nav_group": [ 78 ], - "size": [ + "nav_order": [ 38 ], + "remote_entry_url": [ + 78 + ], + "remote_scope": [ + 78 + ], + "required_role": [ + 948 + ], + "slug": [ + 78 + ], + "title": [ + 78 + ], + "updated_at": [ + 4376 + ], "__typename": [ 78 ] }, - "db_backups_aggregate": { + "custom_pages_aggregate": { "aggregate": [ 239 ], @@ -4798,7 +4854,7 @@ export default { 78 ] }, - "db_backups_aggregate_fields": { + "custom_pages_aggregate_fields": { "avg": [ 240 ], @@ -4807,7 +4863,7 @@ export default { { "columns": [ 251, - "[db_backups_select_column!]" + "[custom_pages_select_column!]" ], "distinct": [ 3 @@ -4845,15 +4901,15 @@ export default { 78 ] }, - "db_backups_avg_fields": { - "size": [ + "custom_pages_avg_fields": { + "nav_order": [ 29 ], "__typename": [ 78 ] }, - "db_backups_bool_exp": { + "custom_pages_bool_exp": { "_and": [ 241 ], @@ -4864,10 +4920,538 @@ export default { 241 ], "created_at": [ - 4325 + 4377 + ], + "enabled": [ + 4 + ], + "exposed_module": [ + 80 + ], + "icon": [ + 80 ], "id": [ - 4764 + 4923 + ], + "is_default": [ + 4 + ], + "nav_group": [ + 80 + ], + "nav_order": [ + 39 + ], + "remote_entry_url": [ + 80 + ], + "remote_scope": [ + 80 + ], + "required_role": [ + 949 + ], + "slug": [ + 80 + ], + "title": [ + 80 + ], + "updated_at": [ + 4377 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_constraint": {}, + "custom_pages_inc_input": { + "nav_order": [ + 38 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_insert_input": { + "created_at": [ + 4376 + ], + "enabled": [ + 3 + ], + "exposed_module": [ + 78 + ], + "icon": [ + 78 + ], + "id": [ + 4921 + ], + "is_default": [ + 3 + ], + "nav_group": [ + 78 + ], + "nav_order": [ + 38 + ], + "remote_entry_url": [ + 78 + ], + "remote_scope": [ + 78 + ], + "required_role": [ + 948 + ], + "slug": [ + 78 + ], + "title": [ + 78 + ], + "updated_at": [ + 4376 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_max_fields": { + "created_at": [ + 4376 + ], + "exposed_module": [ + 78 + ], + "icon": [ + 78 + ], + "id": [ + 4921 + ], + "nav_group": [ + 78 + ], + "nav_order": [ + 38 + ], + "remote_entry_url": [ + 78 + ], + "remote_scope": [ + 78 + ], + "slug": [ + 78 + ], + "title": [ + 78 + ], + "updated_at": [ + 4376 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_min_fields": { + "created_at": [ + 4376 + ], + "exposed_module": [ + 78 + ], + "icon": [ + 78 + ], + "id": [ + 4921 + ], + "nav_group": [ + 78 + ], + "nav_order": [ + 38 + ], + "remote_entry_url": [ + 78 + ], + "remote_scope": [ + 78 + ], + "slug": [ + 78 + ], + "title": [ + 78 + ], + "updated_at": [ + 4376 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 237 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_on_conflict": { + "constraint": [ + 242 + ], + "update_columns": [ + 259 + ], + "where": [ + 241 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_order_by": { + "created_at": [ + 2829 + ], + "enabled": [ + 2829 + ], + "exposed_module": [ + 2829 + ], + "icon": [ + 2829 + ], + "id": [ + 2829 + ], + "is_default": [ + 2829 + ], + "nav_group": [ + 2829 + ], + "nav_order": [ + 2829 + ], + "remote_entry_url": [ + 2829 + ], + "remote_scope": [ + 2829 + ], + "required_role": [ + 2829 + ], + "slug": [ + 2829 + ], + "title": [ + 2829 + ], + "updated_at": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_pk_columns_input": { + "id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_select_column": {}, + "custom_pages_set_input": { + "created_at": [ + 4376 + ], + "enabled": [ + 3 + ], + "exposed_module": [ + 78 + ], + "icon": [ + 78 + ], + "id": [ + 4921 + ], + "is_default": [ + 3 + ], + "nav_group": [ + 78 + ], + "nav_order": [ + 38 + ], + "remote_entry_url": [ + 78 + ], + "remote_scope": [ + 78 + ], + "required_role": [ + 948 + ], + "slug": [ + 78 + ], + "title": [ + 78 + ], + "updated_at": [ + 4376 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_stddev_fields": { + "nav_order": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_stddev_pop_fields": { + "nav_order": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_stddev_samp_fields": { + "nav_order": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_stream_cursor_input": { + "initial_value": [ + 257 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_stream_cursor_value_input": { + "created_at": [ + 4376 + ], + "enabled": [ + 3 + ], + "exposed_module": [ + 78 + ], + "icon": [ + 78 + ], + "id": [ + 4921 + ], + "is_default": [ + 3 + ], + "nav_group": [ + 78 + ], + "nav_order": [ + 38 + ], + "remote_entry_url": [ + 78 + ], + "remote_scope": [ + 78 + ], + "required_role": [ + 948 + ], + "slug": [ + 78 + ], + "title": [ + 78 + ], + "updated_at": [ + 4376 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_sum_fields": { + "nav_order": [ + 38 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_update_column": {}, + "custom_pages_updates": { + "_inc": [ + 243 + ], + "_set": [ + 252 + ], + "where": [ + 241 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_var_pop_fields": { + "nav_order": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_var_samp_fields": { + "nav_order": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_variance_fields": { + "nav_order": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "db_backups": { + "created_at": [ + 4376 + ], + "id": [ + 4921 + ], + "name": [ + 78 + ], + "size": [ + 38 + ], + "__typename": [ + 78 + ] + }, + "db_backups_aggregate": { + "aggregate": [ + 266 + ], + "nodes": [ + 264 + ], + "__typename": [ + 78 + ] + }, + "db_backups_aggregate_fields": { + "avg": [ + 267 + ], + "count": [ + 38, + { + "columns": [ + 278, + "[db_backups_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 272 + ], + "min": [ + 273 + ], + "stddev": [ + 280 + ], + "stddev_pop": [ + 281 + ], + "stddev_samp": [ + 282 + ], + "sum": [ + 285 + ], + "var_pop": [ + 288 + ], + "var_samp": [ + 289 + ], + "variance": [ + 290 + ], + "__typename": [ + 78 + ] + }, + "db_backups_avg_fields": { + "size": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "db_backups_bool_exp": { + "_and": [ + 268 + ], + "_not": [ + 268 + ], + "_or": [ + 268 + ], + "created_at": [ + 4377 + ], + "id": [ + 4923 ], "name": [ 80 @@ -4890,10 +5474,10 @@ export default { }, "db_backups_insert_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 @@ -4907,10 +5491,10 @@ export default { }, "db_backups_max_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 @@ -4924,10 +5508,10 @@ export default { }, "db_backups_min_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 @@ -4944,7 +5528,7 @@ export default { 38 ], "returning": [ - 237 + 264 ], "__typename": [ 78 @@ -4952,13 +5536,13 @@ export default { }, "db_backups_on_conflict": { "constraint": [ - 242 + 269 ], "update_columns": [ - 259 + 286 ], "where": [ - 241 + 268 ], "__typename": [ 78 @@ -4966,16 +5550,16 @@ export default { }, "db_backups_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "__typename": [ 78 @@ -4983,7 +5567,7 @@ export default { }, "db_backups_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -4992,10 +5576,10 @@ export default { "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 @@ -5033,7 +5617,7 @@ export default { }, "db_backups_stream_cursor_input": { "initial_value": [ - 257 + 284 ], "ordering": [ 236 @@ -5044,10 +5628,10 @@ export default { }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 @@ -5070,13 +5654,13 @@ export default { "db_backups_update_column": {}, "db_backups_updates": { "_inc": [ - 243 + 270 ], "_set": [ - 252 + 279 ], "where": [ - 241 + 268 ], "__typename": [ 78 @@ -5111,22 +5695,22 @@ export default { 3 ], "captain": [ - 3739 + 3787 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4376 ], "draft_game": [ - 354 + 381 ], "draft_game_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "is_organizer": [ 3 @@ -5135,7 +5719,7 @@ export default { 38 ], "picked": [ - 3739 + 3787 ], "picked_steam_id": [ 180 @@ -5146,10 +5730,10 @@ export default { }, "draft_game_picks_aggregate": { "aggregate": [ - 270 + 297 ], "nodes": [ - 264 + 291 ], "__typename": [ 78 @@ -5157,13 +5741,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp": { "bool_and": [ - 267 + 294 ], "bool_or": [ - 268 + 295 ], "count": [ - 269 + 296 ], "__typename": [ 78 @@ -5171,13 +5755,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 288 + 315 ], "distinct": [ 3 ], "filter": [ - 275 + 302 ], "predicate": [ 4 @@ -5188,13 +5772,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 289 + 316 ], "distinct": [ 3 ], "filter": [ - 275 + 302 ], "predicate": [ 4 @@ -5205,13 +5789,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp_count": { "arguments": [ - 287 + 314 ], "distinct": [ 3 ], "filter": [ - 275 + 302 ], "predicate": [ 39 @@ -5222,13 +5806,13 @@ export default { }, "draft_game_picks_aggregate_fields": { "avg": [ - 273 + 300 ], "count": [ 38, { "columns": [ - 287, + 314, "[draft_game_picks_select_column!]" ], "distinct": [ @@ -5237,31 +5821,31 @@ export default { } ], "max": [ - 279 + 306 ], "min": [ - 281 + 308 ], "stddev": [ - 291 + 318 ], "stddev_pop": [ - 293 + 320 ], "stddev_samp": [ - 295 + 322 ], "sum": [ - 299 + 326 ], "var_pop": [ - 303 + 330 ], "var_samp": [ - 305 + 332 ], "variance": [ - 307 + 334 ], "__typename": [ 78 @@ -5269,37 +5853,37 @@ export default { }, "draft_game_picks_aggregate_order_by": { "avg": [ - 274 + 301 ], "count": [ - 2781 + 2829 ], "max": [ - 280 + 307 ], "min": [ - 282 + 309 ], "stddev": [ - 292 + 319 ], "stddev_pop": [ - 294 + 321 ], "stddev_samp": [ - 296 + 323 ], "sum": [ - 300 + 327 ], "var_pop": [ - 304 + 331 ], "var_samp": [ - 306 + 333 ], "variance": [ - 308 + 335 ], "__typename": [ 78 @@ -5307,10 +5891,10 @@ export default { }, "draft_game_picks_arr_rel_insert_input": { "data": [ - 278 + 305 ], "on_conflict": [ - 284 + 311 ], "__typename": [ 78 @@ -5332,13 +5916,13 @@ export default { }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "picked_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -5346,34 +5930,34 @@ export default { }, "draft_game_picks_bool_exp": { "_and": [ - 275 + 302 ], "_not": [ - 275 + 302 ], "_or": [ - 275 + 302 ], "auto_picked": [ 4 ], "captain": [ - 3743 + 3791 ], "captain_steam_id": [ 182 ], "created_at": [ - 4325 + 4377 ], "draft_game": [ - 365 + 392 ], "draft_game_id": [ - 4764 + 4923 ], "id": [ - 4764 + 4923 ], "is_organizer": [ 4 @@ -5382,7 +5966,7 @@ export default { 39 ], "picked": [ - 3743 + 3791 ], "picked_steam_id": [ 182 @@ -5411,28 +5995,28 @@ export default { 3 ], "captain": [ - 3750 + 3798 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4376 ], "draft_game": [ - 374 + 401 ], "draft_game_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "lineup": [ 38 ], "picked": [ - 3750 + 3798 ], "picked_steam_id": [ 180 @@ -5446,13 +6030,13 @@ export default { 180 ], "created_at": [ - 4324 + 4376 ], "draft_game_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "lineup": [ 38 @@ -5466,22 +6050,22 @@ export default { }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "draft_game_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "picked_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -5492,13 +6076,13 @@ export default { 180 ], "created_at": [ - 4324 + 4376 ], "draft_game_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "lineup": [ 38 @@ -5512,22 +6096,22 @@ export default { }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "draft_game_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "picked_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -5538,7 +6122,7 @@ export default { 38 ], "returning": [ - 264 + 291 ], "__typename": [ 78 @@ -5546,13 +6130,13 @@ export default { }, "draft_game_picks_on_conflict": { "constraint": [ - 276 + 303 ], "update_columns": [ - 301 + 328 ], "where": [ - 275 + 302 ], "__typename": [ 78 @@ -5560,37 +6144,37 @@ export default { }, "draft_game_picks_order_by": { "auto_picked": [ - 2781 + 2829 ], "captain": [ - 3752 + 3800 ], "captain_steam_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "draft_game": [ - 376 + 403 ], "draft_game_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "is_organizer": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "picked": [ - 3752 + 3800 ], "picked_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -5598,7 +6182,7 @@ export default { }, "draft_game_picks_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -5615,13 +6199,13 @@ export default { 180 ], "created_at": [ - 4324 + 4376 ], "draft_game_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "lineup": [ 38 @@ -5649,13 +6233,13 @@ export default { }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "picked_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -5677,13 +6261,13 @@ export default { }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "picked_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -5705,13 +6289,13 @@ export default { }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "picked_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -5719,7 +6303,7 @@ export default { }, "draft_game_picks_stream_cursor_input": { "initial_value": [ - 298 + 325 ], "ordering": [ 236 @@ -5736,13 +6320,13 @@ export default { 180 ], "created_at": [ - 4324 + 4376 ], "draft_game_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "lineup": [ 38 @@ -5770,13 +6354,13 @@ export default { }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "picked_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -5785,13 +6369,13 @@ export default { "draft_game_picks_update_column": {}, "draft_game_picks_updates": { "_inc": [ - 277 + 304 ], "_set": [ - 290 + 317 ], "where": [ - 275 + 302 ], "__typename": [ 78 @@ -5813,13 +6397,13 @@ export default { }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "picked_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -5841,13 +6425,13 @@ export default { }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "picked_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -5869,13 +6453,13 @@ export default { }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "picked_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -5883,13 +6467,13 @@ export default { }, "draft_game_players": { "draft_game": [ - 354 + 381 ], "draft_game_id": [ - 4762 + 4921 ], "e_draft_game_player_status": [ - 483 + 510 ], "elo_snapshot": [ 38 @@ -5901,7 +6485,7 @@ export default { 3 ], "joined_at": [ - 4324 + 4376 ], "lineup": [ 38 @@ -5910,10 +6494,10 @@ export default { 38 ], "player": [ - 3739 + 3787 ], "status": [ - 488 + 515 ], "steam_id": [ 180 @@ -5924,10 +6508,10 @@ export default { }, "draft_game_players_aggregate": { "aggregate": [ - 315 + 342 ], "nodes": [ - 309 + 336 ], "__typename": [ 78 @@ -5935,13 +6519,13 @@ export default { }, "draft_game_players_aggregate_bool_exp": { "bool_and": [ - 312 + 339 ], "bool_or": [ - 313 + 340 ], "count": [ - 314 + 341 ], "__typename": [ 78 @@ -5949,13 +6533,13 @@ export default { }, "draft_game_players_aggregate_bool_exp_bool_and": { "arguments": [ - 333 + 360 ], "distinct": [ 3 ], "filter": [ - 320 + 347 ], "predicate": [ 4 @@ -5966,13 +6550,13 @@ export default { }, "draft_game_players_aggregate_bool_exp_bool_or": { "arguments": [ - 334 + 361 ], "distinct": [ 3 ], "filter": [ - 320 + 347 ], "predicate": [ 4 @@ -5983,13 +6567,13 @@ export default { }, "draft_game_players_aggregate_bool_exp_count": { "arguments": [ - 332 + 359 ], "distinct": [ 3 ], "filter": [ - 320 + 347 ], "predicate": [ 39 @@ -6000,13 +6584,13 @@ export default { }, "draft_game_players_aggregate_fields": { "avg": [ - 318 + 345 ], "count": [ 38, { "columns": [ - 332, + 359, "[draft_game_players_select_column!]" ], "distinct": [ @@ -6015,31 +6599,31 @@ export default { } ], "max": [ - 324 + 351 ], "min": [ - 326 + 353 ], "stddev": [ - 336 + 363 ], "stddev_pop": [ - 338 + 365 ], "stddev_samp": [ - 340 + 367 ], "sum": [ - 344 + 371 ], "var_pop": [ - 348 + 375 ], "var_samp": [ - 350 + 377 ], "variance": [ - 352 + 379 ], "__typename": [ 78 @@ -6047,37 +6631,37 @@ export default { }, "draft_game_players_aggregate_order_by": { "avg": [ - 319 + 346 ], "count": [ - 2781 + 2829 ], "max": [ - 325 + 352 ], "min": [ - 327 + 354 ], "stddev": [ - 337 + 364 ], "stddev_pop": [ - 339 + 366 ], "stddev_samp": [ - 341 + 368 ], "sum": [ - 345 + 372 ], "var_pop": [ - 349 + 376 ], "var_samp": [ - 351 + 378 ], "variance": [ - 353 + 380 ], "__typename": [ 78 @@ -6085,10 +6669,10 @@ export default { }, "draft_game_players_arr_rel_insert_input": { "data": [ - 323 + 350 ], "on_conflict": [ - 329 + 356 ], "__typename": [ 78 @@ -6113,16 +6697,16 @@ export default { }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "pick_order": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -6130,22 +6714,22 @@ export default { }, "draft_game_players_bool_exp": { "_and": [ - 320 + 347 ], "_not": [ - 320 + 347 ], "_or": [ - 320 + 347 ], "draft_game": [ - 365 + 392 ], "draft_game_id": [ - 4764 + 4923 ], "e_draft_game_player_status": [ - 486 + 513 ], "elo_snapshot": [ 39 @@ -6157,7 +6741,7 @@ export default { 4 ], "joined_at": [ - 4325 + 4377 ], "lineup": [ 39 @@ -6166,10 +6750,10 @@ export default { 39 ], "player": [ - 3743 + 3791 ], "status": [ - 489 + 516 ], "steam_id": [ 182 @@ -6198,13 +6782,13 @@ export default { }, "draft_game_players_insert_input": { "draft_game": [ - 374 + 401 ], "draft_game_id": [ - 4762 + 4921 ], "e_draft_game_player_status": [ - 494 + 521 ], "elo_snapshot": [ 38 @@ -6213,7 +6797,7 @@ export default { 3 ], "joined_at": [ - 4324 + 4376 ], "lineup": [ 38 @@ -6222,10 +6806,10 @@ export default { 38 ], "player": [ - 3750 + 3798 ], "status": [ - 488 + 515 ], "steam_id": [ 180 @@ -6236,13 +6820,13 @@ export default { }, "draft_game_players_max_fields": { "draft_game_id": [ - 4762 + 4921 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4324 + 4376 ], "lineup": [ 38 @@ -6259,22 +6843,22 @@ export default { }, "draft_game_players_max_order_by": { "draft_game_id": [ - 2781 + 2829 ], "elo_snapshot": [ - 2781 + 2829 ], "joined_at": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "pick_order": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -6282,13 +6866,13 @@ export default { }, "draft_game_players_min_fields": { "draft_game_id": [ - 4762 + 4921 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4324 + 4376 ], "lineup": [ 38 @@ -6305,22 +6889,22 @@ export default { }, "draft_game_players_min_order_by": { "draft_game_id": [ - 2781 + 2829 ], "elo_snapshot": [ - 2781 + 2829 ], "joined_at": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "pick_order": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -6331,7 +6915,7 @@ export default { 38 ], "returning": [ - 309 + 336 ], "__typename": [ 78 @@ -6339,13 +6923,13 @@ export default { }, "draft_game_players_on_conflict": { "constraint": [ - 321 + 348 ], "update_columns": [ - 346 + 373 ], "where": [ - 320 + 347 ], "__typename": [ 78 @@ -6353,40 +6937,40 @@ export default { }, "draft_game_players_order_by": { "draft_game": [ - 376 + 403 ], "draft_game_id": [ - 2781 + 2829 ], "e_draft_game_player_status": [ - 496 + 523 ], "elo_snapshot": [ - 2781 + 2829 ], "is_captain": [ - 2781 + 2829 ], "is_organizer": [ - 2781 + 2829 ], "joined_at": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "pick_order": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "status": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -6394,7 +6978,7 @@ export default { }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -6408,7 +6992,7 @@ export default { "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_game_players_set_input": { "draft_game_id": [ - 4762 + 4921 ], "elo_snapshot": [ 38 @@ -6417,7 +7001,7 @@ export default { 3 ], "joined_at": [ - 4324 + 4376 ], "lineup": [ 38 @@ -6426,7 +7010,7 @@ export default { 38 ], "status": [ - 488 + 515 ], "steam_id": [ 180 @@ -6454,16 +7038,16 @@ export default { }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "pick_order": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -6488,16 +7072,16 @@ export default { }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "pick_order": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -6522,16 +7106,16 @@ export default { }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "pick_order": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -6539,7 +7123,7 @@ export default { }, "draft_game_players_stream_cursor_input": { "initial_value": [ - 343 + 370 ], "ordering": [ 236 @@ -6550,7 +7134,7 @@ export default { }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 4762 + 4921 ], "elo_snapshot": [ 38 @@ -6559,7 +7143,7 @@ export default { 3 ], "joined_at": [ - 4324 + 4376 ], "lineup": [ 38 @@ -6568,7 +7152,7 @@ export default { 38 ], "status": [ - 488 + 515 ], "steam_id": [ 180 @@ -6596,16 +7180,16 @@ export default { }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "pick_order": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -6614,13 +7198,13 @@ export default { "draft_game_players_update_column": {}, "draft_game_players_updates": { "_inc": [ - 322 + 349 ], "_set": [ - 335 + 362 ], "where": [ - 320 + 347 ], "__typename": [ 78 @@ -6645,16 +7229,16 @@ export default { }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "pick_order": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -6679,16 +7263,16 @@ export default { }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "pick_order": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -6713,16 +7297,16 @@ export default { }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 2781 + 2829 ], "lineup": [ - 2781 + 2829 ], "pick_order": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -6730,73 +7314,73 @@ export default { }, "draft_games": { "access": [ - 716 + 743 ], "capacity": [ 38 ], "captain_selection": [ - 425 + 452 ], "created_at": [ - 4324 + 4376 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 446 + 473 ], "e_draft_game_captain_selection": [ - 420 + 447 ], "e_draft_game_draft_order": [ - 441 + 468 ], "e_draft_game_mode": [ - 462 + 489 ], "e_draft_game_status": [ - 504 + 531 ], "e_lobby_access": [ - 711 + 738 ], "expires_at": [ - 4324 + 4376 ], "host": [ - 3739 + 3787 ], "host_steam_id": [ 180 ], "id": [ - 4762 + 4921 ], "inner_squad": [ 3 ], "invite_code": [ - 4762 + 4921 ], "is_organizer": [ 3 ], "map_pool": [ - 2095 + 2143 ], "map_pool_id": [ - 4762 + 4921 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "max_elo": [ 38 @@ -6805,13 +7389,13 @@ export default { 38 ], "mode": [ - 467 + 494 ], "options": [ - 2476 + 2524 ], "pattern": [ - 1652, + 1700, { "path": [ 78 @@ -6819,13 +7403,13 @@ export default { } ], "pick_deadline": [ - 4324 + 4376 ], "picks": [ - 264, + 291, { "distinct_on": [ - 287, + 314, "[draft_game_picks_select_column!]" ], "limit": [ @@ -6835,19 +7419,19 @@ export default { 38 ], "order_by": [ - 285, + 312, "[draft_game_picks_order_by!]" ], "where": [ - 275 + 302 ] } ], "picks_aggregate": [ - 265, + 292, { "distinct_on": [ - 287, + 314, "[draft_game_picks_select_column!]" ], "limit": [ @@ -6857,19 +7441,19 @@ export default { 38 ], "order_by": [ - 285, + 312, "[draft_game_picks_order_by!]" ], "where": [ - 275 + 302 ] } ], "players": [ - 309, + 336, { "distinct_on": [ - 332, + 359, "[draft_game_players_select_column!]" ], "limit": [ @@ -6879,19 +7463,19 @@ export default { 38 ], "order_by": [ - 330, + 357, "[draft_game_players_order_by!]" ], "where": [ - 320 + 347 ] } ], "players_aggregate": [ - 310, + 337, { "distinct_on": [ - 332, + 359, "[draft_game_players_select_column!]" ], "limit": [ @@ -6901,11 +7485,11 @@ export default { 38 ], "order_by": [ - 330, + 357, "[draft_game_players_order_by!]" ], "where": [ - 320 + 347 ] } ], @@ -6916,28 +7500,28 @@ export default { 3 ], "scheduled_at": [ - 4324 + 4376 ], "status": [ - 509 + 536 ], "team_1": [ - 4281 + 4329 ], "team_1_id": [ - 4762 + 4921 ], "team_2": [ - 4281 + 4329 ], "team_2_id": [ - 4762 + 4921 ], "type": [ - 860 + 887 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -6945,10 +7529,10 @@ export default { }, "draft_games_aggregate": { "aggregate": [ - 360 + 387 ], "nodes": [ - 354 + 381 ], "__typename": [ 78 @@ -6956,13 +7540,13 @@ export default { }, "draft_games_aggregate_bool_exp": { "bool_and": [ - 357 + 384 ], "bool_or": [ - 358 + 385 ], "count": [ - 359 + 386 ], "__typename": [ 78 @@ -6970,13 +7554,13 @@ export default { }, "draft_games_aggregate_bool_exp_bool_and": { "arguments": [ - 379 + 406 ], "distinct": [ 3 ], "filter": [ - 365 + 392 ], "predicate": [ 4 @@ -6987,13 +7571,13 @@ export default { }, "draft_games_aggregate_bool_exp_bool_or": { "arguments": [ - 380 + 407 ], "distinct": [ 3 ], "filter": [ - 365 + 392 ], "predicate": [ 4 @@ -7004,13 +7588,13 @@ export default { }, "draft_games_aggregate_bool_exp_count": { "arguments": [ - 378 + 405 ], "distinct": [ 3 ], "filter": [ - 365 + 392 ], "predicate": [ 39 @@ -7021,13 +7605,13 @@ export default { }, "draft_games_aggregate_fields": { "avg": [ - 363 + 390 ], "count": [ 38, { "columns": [ - 378, + 405, "[draft_games_select_column!]" ], "distinct": [ @@ -7036,31 +7620,31 @@ export default { } ], "max": [ - 369 + 396 ], "min": [ - 371 + 398 ], "stddev": [ - 382 + 409 ], "stddev_pop": [ - 384 + 411 ], "stddev_samp": [ - 386 + 413 ], "sum": [ - 390 + 417 ], "var_pop": [ - 394 + 421 ], "var_samp": [ - 396 + 423 ], "variance": [ - 398 + 425 ], "__typename": [ 78 @@ -7068,37 +7652,37 @@ export default { }, "draft_games_aggregate_order_by": { "avg": [ - 364 + 391 ], "count": [ - 2781 + 2829 ], "max": [ - 370 + 397 ], "min": [ - 372 + 399 ], "stddev": [ - 383 + 410 ], "stddev_pop": [ - 385 + 412 ], "stddev_samp": [ - 387 + 414 ], "sum": [ - 391 + 418 ], "var_pop": [ - 395 + 422 ], "var_samp": [ - 397 + 424 ], "variance": [ - 399 + 426 ], "__typename": [ 78 @@ -7106,10 +7690,10 @@ export default { }, "draft_games_arr_rel_insert_input": { "data": [ - 368 + 395 ], "on_conflict": [ - 375 + 402 ], "__typename": [ 78 @@ -7137,19 +7721,19 @@ export default { }, "draft_games_avg_order_by": { "capacity": [ - 2781 + 2829 ], "current_pick_lineup": [ - 2781 + 2829 ], "host_steam_id": [ - 2781 + 2829 ], "max_elo": [ - 2781 + 2829 ], "min_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -7157,82 +7741,82 @@ export default { }, "draft_games_bool_exp": { "_and": [ - 365 + 392 ], "_not": [ - 365 + 392 ], "_or": [ - 365 + 392 ], "access": [ - 717 + 744 ], "capacity": [ 39 ], "captain_selection": [ - 426 + 453 ], "created_at": [ - 4325 + 4377 ], "current_pick_lineup": [ 39 ], "draft_order": [ - 447 + 474 ], "e_draft_game_captain_selection": [ - 423 + 450 ], "e_draft_game_draft_order": [ - 444 + 471 ], "e_draft_game_mode": [ - 465 + 492 ], "e_draft_game_status": [ - 507 + 534 ], "e_lobby_access": [ - 714 + 741 ], "expires_at": [ - 4325 + 4377 ], "host": [ - 3743 + 3791 ], "host_steam_id": [ 182 ], "id": [ - 4764 + 4923 ], "inner_squad": [ 4 ], "invite_code": [ - 4764 + 4923 ], "is_organizer": [ 4 ], "map_pool": [ - 2098 + 2146 ], "map_pool_id": [ - 4764 + 4923 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_options_id": [ - 4764 + 4923 ], "max_elo": [ 39 @@ -7241,28 +7825,28 @@ export default { 39 ], "mode": [ - 468 + 495 ], "options": [ - 2480 + 2528 ], "pattern": [ - 1654 + 1702 ], "pick_deadline": [ - 4325 + 4377 ], "picks": [ - 275 + 302 ], "picks_aggregate": [ - 266 + 293 ], "players": [ - 320 + 347 ], "players_aggregate": [ - 311 + 338 ], "regions": [ 79 @@ -7271,28 +7855,28 @@ export default { 4 ], "scheduled_at": [ - 4325 + 4377 ], "status": [ - 510 + 537 ], "team_1": [ - 4290 + 4340 ], "team_1_id": [ - 4764 + 4923 ], "team_2": [ - 4290 + 4340 ], "team_2_id": [ - 4764 + 4923 ], "type": [ - 861 + 888 ], "updated_at": [ - 4325 + 4377 ], "__typename": [ 78 @@ -7321,70 +7905,70 @@ export default { }, "draft_games_insert_input": { "access": [ - 716 + 743 ], "capacity": [ 38 ], "captain_selection": [ - 425 + 452 ], "created_at": [ - 4324 + 4376 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 446 + 473 ], "e_draft_game_captain_selection": [ - 431 + 458 ], "e_draft_game_draft_order": [ - 452 + 479 ], "e_draft_game_mode": [ - 473 + 500 ], "e_draft_game_status": [ - 515 + 542 ], "e_lobby_access": [ - 722 + 749 ], "expires_at": [ - 4324 + 4376 ], "host": [ - 3750 + 3798 ], "host_steam_id": [ 180 ], "id": [ - 4762 + 4921 ], "inner_squad": [ 3 ], "invite_code": [ - 4762 + 4921 ], "map_pool": [ - 2104 + 2152 ], "map_pool_id": [ - 4762 + 4921 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "max_elo": [ 38 @@ -7393,19 +7977,19 @@ export default { 38 ], "mode": [ - 467 + 494 ], "options": [ - 2487 + 2535 ], "pick_deadline": [ - 4324 + 4376 ], "picks": [ - 272 + 299 ], "players": [ - 317 + 344 ], "regions": [ 78 @@ -7414,28 +7998,28 @@ export default { 3 ], "scheduled_at": [ - 4324 + 4376 ], "status": [ - 509 + 536 ], "team_1": [ - 4299 + 4349 ], "team_1_id": [ - 4762 + 4921 ], "team_2": [ - 4299 + 4349 ], "team_2_id": [ - 4762 + 4921 ], "type": [ - 860 + 887 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -7446,31 +8030,31 @@ export default { 38 ], "created_at": [ - 4324 + 4376 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4324 + 4376 ], "host_steam_id": [ 180 ], "id": [ - 4762 + 4921 ], "invite_code": [ - 4762 + 4921 ], "map_pool_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "max_elo": [ 38 @@ -7479,22 +8063,22 @@ export default { 38 ], "pick_deadline": [ - 4324 + 4376 ], "regions": [ 78 ], "scheduled_at": [ - 4324 + 4376 ], "team_1_id": [ - 4762 + 4921 ], "team_2_id": [ - 4762 + 4921 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -7502,58 +8086,58 @@ export default { }, "draft_games_max_order_by": { "capacity": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "current_pick_lineup": [ - 2781 + 2829 ], "expires_at": [ - 2781 + 2829 ], "host_steam_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "invite_code": [ - 2781 + 2829 ], "map_pool_id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_options_id": [ - 2781 + 2829 ], "max_elo": [ - 2781 + 2829 ], "min_elo": [ - 2781 + 2829 ], "pick_deadline": [ - 2781 + 2829 ], "regions": [ - 2781 + 2829 ], "scheduled_at": [ - 2781 + 2829 ], "team_1_id": [ - 2781 + 2829 ], "team_2_id": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "__typename": [ 78 @@ -7564,31 +8148,31 @@ export default { 38 ], "created_at": [ - 4324 + 4376 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4324 + 4376 ], "host_steam_id": [ 180 ], "id": [ - 4762 + 4921 ], "invite_code": [ - 4762 + 4921 ], "map_pool_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "max_elo": [ 38 @@ -7597,22 +8181,22 @@ export default { 38 ], "pick_deadline": [ - 4324 + 4376 ], "regions": [ 78 ], "scheduled_at": [ - 4324 + 4376 ], "team_1_id": [ - 4762 + 4921 ], "team_2_id": [ - 4762 + 4921 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -7620,58 +8204,58 @@ export default { }, "draft_games_min_order_by": { "capacity": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "current_pick_lineup": [ - 2781 + 2829 ], "expires_at": [ - 2781 + 2829 ], "host_steam_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "invite_code": [ - 2781 + 2829 ], "map_pool_id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_options_id": [ - 2781 + 2829 ], "max_elo": [ - 2781 + 2829 ], "min_elo": [ - 2781 + 2829 ], "pick_deadline": [ - 2781 + 2829 ], "regions": [ - 2781 + 2829 ], "scheduled_at": [ - 2781 + 2829 ], "team_1_id": [ - 2781 + 2829 ], "team_2_id": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "__typename": [ 78 @@ -7682,7 +8266,7 @@ export default { 38 ], "returning": [ - 354 + 381 ], "__typename": [ 78 @@ -7690,10 +8274,10 @@ export default { }, "draft_games_obj_rel_insert_input": { "data": [ - 368 + 395 ], "on_conflict": [ - 375 + 402 ], "__typename": [ 78 @@ -7701,13 +8285,13 @@ export default { }, "draft_games_on_conflict": { "constraint": [ - 366 + 393 ], "update_columns": [ - 392 + 419 ], "where": [ - 365 + 392 ], "__typename": [ 78 @@ -7715,127 +8299,127 @@ export default { }, "draft_games_order_by": { "access": [ - 2781 + 2829 ], "capacity": [ - 2781 + 2829 ], "captain_selection": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "current_pick_lineup": [ - 2781 + 2829 ], "draft_order": [ - 2781 + 2829 ], "e_draft_game_captain_selection": [ - 433 + 460 ], "e_draft_game_draft_order": [ - 454 + 481 ], "e_draft_game_mode": [ - 475 + 502 ], "e_draft_game_status": [ - 517 + 544 ], "e_lobby_access": [ - 724 + 751 ], "expires_at": [ - 2781 + 2829 ], "host": [ - 3752 + 3800 ], "host_steam_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "inner_squad": [ - 2781 + 2829 ], "invite_code": [ - 2781 + 2829 ], "is_organizer": [ - 2781 + 2829 ], "map_pool": [ - 2106 + 2154 ], "map_pool_id": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_options_id": [ - 2781 + 2829 ], "max_elo": [ - 2781 + 2829 ], "min_elo": [ - 2781 + 2829 ], "mode": [ - 2781 + 2829 ], "options": [ - 2489 + 2537 ], "pattern": [ - 2781 + 2829 ], "pick_deadline": [ - 2781 + 2829 ], "picks_aggregate": [ - 271 + 298 ], "players_aggregate": [ - 316 + 343 ], "regions": [ - 2781 + 2829 ], "require_approval": [ - 2781 + 2829 ], "scheduled_at": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "team_1": [ - 4301 + 4351 ], "team_1_id": [ - 2781 + 2829 ], "team_2": [ - 4301 + 4351 ], "team_2_id": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "__typename": [ 78 @@ -7843,7 +8427,7 @@ export default { }, "draft_games_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -7854,46 +8438,46 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 716 + 743 ], "capacity": [ 38 ], "captain_selection": [ - 425 + 452 ], "created_at": [ - 4324 + 4376 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 446 + 473 ], "expires_at": [ - 4324 + 4376 ], "host_steam_id": [ 180 ], "id": [ - 4762 + 4921 ], "inner_squad": [ 3 ], "invite_code": [ - 4762 + 4921 ], "map_pool_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "max_elo": [ 38 @@ -7902,10 +8486,10 @@ export default { 38 ], "mode": [ - 467 + 494 ], "pick_deadline": [ - 4324 + 4376 ], "regions": [ 78 @@ -7914,22 +8498,22 @@ export default { 3 ], "scheduled_at": [ - 4324 + 4376 ], "status": [ - 509 + 536 ], "team_1_id": [ - 4762 + 4921 ], "team_2_id": [ - 4762 + 4921 ], "type": [ - 860 + 887 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -7957,19 +8541,19 @@ export default { }, "draft_games_stddev_order_by": { "capacity": [ - 2781 + 2829 ], "current_pick_lineup": [ - 2781 + 2829 ], "host_steam_id": [ - 2781 + 2829 ], "max_elo": [ - 2781 + 2829 ], "min_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -7997,19 +8581,19 @@ export default { }, "draft_games_stddev_pop_order_by": { "capacity": [ - 2781 + 2829 ], "current_pick_lineup": [ - 2781 + 2829 ], "host_steam_id": [ - 2781 + 2829 ], "max_elo": [ - 2781 + 2829 ], "min_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -8037,19 +8621,19 @@ export default { }, "draft_games_stddev_samp_order_by": { "capacity": [ - 2781 + 2829 ], "current_pick_lineup": [ - 2781 + 2829 ], "host_steam_id": [ - 2781 + 2829 ], "max_elo": [ - 2781 + 2829 ], "min_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -8057,7 +8641,7 @@ export default { }, "draft_games_stream_cursor_input": { "initial_value": [ - 389 + 416 ], "ordering": [ 236 @@ -8068,46 +8652,46 @@ export default { }, "draft_games_stream_cursor_value_input": { "access": [ - 716 + 743 ], "capacity": [ 38 ], "captain_selection": [ - 425 + 452 ], "created_at": [ - 4324 + 4376 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 446 + 473 ], "expires_at": [ - 4324 + 4376 ], "host_steam_id": [ 180 ], "id": [ - 4762 + 4921 ], "inner_squad": [ 3 ], "invite_code": [ - 4762 + 4921 ], "map_pool_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "max_elo": [ 38 @@ -8116,10 +8700,10 @@ export default { 38 ], "mode": [ - 467 + 494 ], "pick_deadline": [ - 4324 + 4376 ], "regions": [ 78 @@ -8128,22 +8712,22 @@ export default { 3 ], "scheduled_at": [ - 4324 + 4376 ], "status": [ - 509 + 536 ], "team_1_id": [ - 4762 + 4921 ], "team_2_id": [ - 4762 + 4921 ], "type": [ - 860 + 887 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -8171,19 +8755,19 @@ export default { }, "draft_games_sum_order_by": { "capacity": [ - 2781 + 2829 ], "current_pick_lineup": [ - 2781 + 2829 ], "host_steam_id": [ - 2781 + 2829 ], "max_elo": [ - 2781 + 2829 ], "min_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -8192,13 +8776,13 @@ export default { "draft_games_update_column": {}, "draft_games_updates": { "_inc": [ - 367 + 394 ], "_set": [ - 381 + 408 ], "where": [ - 365 + 392 ], "__typename": [ 78 @@ -8226,19 +8810,19 @@ export default { }, "draft_games_var_pop_order_by": { "capacity": [ - 2781 + 2829 ], "current_pick_lineup": [ - 2781 + 2829 ], "host_steam_id": [ - 2781 + 2829 ], "max_elo": [ - 2781 + 2829 ], "min_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -8266,19 +8850,19 @@ export default { }, "draft_games_var_samp_order_by": { "capacity": [ - 2781 + 2829 ], "current_pick_lineup": [ - 2781 + 2829 ], "host_steam_id": [ - 2781 + 2829 ], "max_elo": [ - 2781 + 2829 ], "min_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -8306,19 +8890,19 @@ export default { }, "draft_games_variance_order_by": { "capacity": [ - 2781 + 2829 ], "current_pick_lineup": [ - 2781 + 2829 ], "host_steam_id": [ - 2781 + 2829 ], "max_elo": [ - 2781 + 2829 ], "min_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -8337,10 +8921,10 @@ export default { }, "e_check_in_settings_aggregate": { "aggregate": [ - 402 + 429 ], "nodes": [ - 400 + 427 ], "__typename": [ 78 @@ -8351,7 +8935,7 @@ export default { 38, { "columns": [ - 414, + 441, "[e_check_in_settings_select_column!]" ], "distinct": [ @@ -8360,10 +8944,10 @@ export default { } ], "max": [ - 408 + 435 ], "min": [ - 409 + 436 ], "__typename": [ 78 @@ -8371,13 +8955,13 @@ export default { }, "e_check_in_settings_bool_exp": { "_and": [ - 403 + 430 ], "_not": [ - 403 + 430 ], "_or": [ - 403 + 430 ], "description": [ 80 @@ -8393,19 +8977,19 @@ export default { "e_check_in_settings_enum": {}, "e_check_in_settings_enum_comparison_exp": { "_eq": [ - 405 + 432 ], "_in": [ - 405 + 432 ], "_is_null": [ 3 ], "_neq": [ - 405 + 432 ], "_nin": [ - 405 + 432 ], "__typename": [ 78 @@ -8449,7 +9033,7 @@ export default { 38 ], "returning": [ - 400 + 427 ], "__typename": [ 78 @@ -8457,13 +9041,13 @@ export default { }, "e_check_in_settings_on_conflict": { "constraint": [ - 404 + 431 ], "update_columns": [ - 418 + 445 ], "where": [ - 403 + 430 ], "__typename": [ 78 @@ -8471,10 +9055,10 @@ export default { }, "e_check_in_settings_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -8502,7 +9086,7 @@ export default { }, "e_check_in_settings_stream_cursor_input": { "initial_value": [ - 417 + 444 ], "ordering": [ 236 @@ -8525,10 +9109,10 @@ export default { "e_check_in_settings_update_column": {}, "e_check_in_settings_updates": { "_set": [ - 415 + 442 ], "where": [ - 403 + 430 ], "__typename": [ 78 @@ -8547,10 +9131,10 @@ export default { }, "e_draft_game_captain_selection_aggregate": { "aggregate": [ - 422 + 449 ], "nodes": [ - 420 + 447 ], "__typename": [ 78 @@ -8561,7 +9145,7 @@ export default { 38, { "columns": [ - 435, + 462, "[e_draft_game_captain_selection_select_column!]" ], "distinct": [ @@ -8570,10 +9154,10 @@ export default { } ], "max": [ - 428 + 455 ], "min": [ - 429 + 456 ], "__typename": [ 78 @@ -8581,13 +9165,13 @@ export default { }, "e_draft_game_captain_selection_bool_exp": { "_and": [ - 423 + 450 ], "_not": [ - 423 + 450 ], "_or": [ - 423 + 450 ], "description": [ 80 @@ -8603,19 +9187,19 @@ export default { "e_draft_game_captain_selection_enum": {}, "e_draft_game_captain_selection_enum_comparison_exp": { "_eq": [ - 425 + 452 ], "_in": [ - 425 + 452 ], "_is_null": [ 3 ], "_neq": [ - 425 + 452 ], "_nin": [ - 425 + 452 ], "__typename": [ 78 @@ -8659,7 +9243,7 @@ export default { 38 ], "returning": [ - 420 + 447 ], "__typename": [ 78 @@ -8667,10 +9251,10 @@ export default { }, "e_draft_game_captain_selection_obj_rel_insert_input": { "data": [ - 427 + 454 ], "on_conflict": [ - 432 + 459 ], "__typename": [ 78 @@ -8678,13 +9262,13 @@ export default { }, "e_draft_game_captain_selection_on_conflict": { "constraint": [ - 424 + 451 ], "update_columns": [ - 439 + 466 ], "where": [ - 423 + 450 ], "__typename": [ 78 @@ -8692,10 +9276,10 @@ export default { }, "e_draft_game_captain_selection_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -8723,7 +9307,7 @@ export default { }, "e_draft_game_captain_selection_stream_cursor_input": { "initial_value": [ - 438 + 465 ], "ordering": [ 236 @@ -8746,10 +9330,10 @@ export default { "e_draft_game_captain_selection_update_column": {}, "e_draft_game_captain_selection_updates": { "_set": [ - 436 + 463 ], "where": [ - 423 + 450 ], "__typename": [ 78 @@ -8768,10 +9352,10 @@ export default { }, "e_draft_game_draft_order_aggregate": { "aggregate": [ - 443 + 470 ], "nodes": [ - 441 + 468 ], "__typename": [ 78 @@ -8782,7 +9366,7 @@ export default { 38, { "columns": [ - 456, + 483, "[e_draft_game_draft_order_select_column!]" ], "distinct": [ @@ -8791,10 +9375,10 @@ export default { } ], "max": [ - 449 + 476 ], "min": [ - 450 + 477 ], "__typename": [ 78 @@ -8802,13 +9386,13 @@ export default { }, "e_draft_game_draft_order_bool_exp": { "_and": [ - 444 + 471 ], "_not": [ - 444 + 471 ], "_or": [ - 444 + 471 ], "description": [ 80 @@ -8824,19 +9408,19 @@ export default { "e_draft_game_draft_order_enum": {}, "e_draft_game_draft_order_enum_comparison_exp": { "_eq": [ - 446 + 473 ], "_in": [ - 446 + 473 ], "_is_null": [ 3 ], "_neq": [ - 446 + 473 ], "_nin": [ - 446 + 473 ], "__typename": [ 78 @@ -8880,7 +9464,7 @@ export default { 38 ], "returning": [ - 441 + 468 ], "__typename": [ 78 @@ -8888,10 +9472,10 @@ export default { }, "e_draft_game_draft_order_obj_rel_insert_input": { "data": [ - 448 + 475 ], "on_conflict": [ - 453 + 480 ], "__typename": [ 78 @@ -8899,13 +9483,13 @@ export default { }, "e_draft_game_draft_order_on_conflict": { "constraint": [ - 445 + 472 ], "update_columns": [ - 460 + 487 ], "where": [ - 444 + 471 ], "__typename": [ 78 @@ -8913,10 +9497,10 @@ export default { }, "e_draft_game_draft_order_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -8944,7 +9528,7 @@ export default { }, "e_draft_game_draft_order_stream_cursor_input": { "initial_value": [ - 459 + 486 ], "ordering": [ 236 @@ -8967,10 +9551,10 @@ export default { "e_draft_game_draft_order_update_column": {}, "e_draft_game_draft_order_updates": { "_set": [ - 457 + 484 ], "where": [ - 444 + 471 ], "__typename": [ 78 @@ -8989,10 +9573,10 @@ export default { }, "e_draft_game_mode_aggregate": { "aggregate": [ - 464 + 491 ], "nodes": [ - 462 + 489 ], "__typename": [ 78 @@ -9003,7 +9587,7 @@ export default { 38, { "columns": [ - 477, + 504, "[e_draft_game_mode_select_column!]" ], "distinct": [ @@ -9012,10 +9596,10 @@ export default { } ], "max": [ - 470 + 497 ], "min": [ - 471 + 498 ], "__typename": [ 78 @@ -9023,13 +9607,13 @@ export default { }, "e_draft_game_mode_bool_exp": { "_and": [ - 465 + 492 ], "_not": [ - 465 + 492 ], "_or": [ - 465 + 492 ], "description": [ 80 @@ -9045,19 +9629,19 @@ export default { "e_draft_game_mode_enum": {}, "e_draft_game_mode_enum_comparison_exp": { "_eq": [ - 467 + 494 ], "_in": [ - 467 + 494 ], "_is_null": [ 3 ], "_neq": [ - 467 + 494 ], "_nin": [ - 467 + 494 ], "__typename": [ 78 @@ -9101,7 +9685,7 @@ export default { 38 ], "returning": [ - 462 + 489 ], "__typename": [ 78 @@ -9109,10 +9693,10 @@ export default { }, "e_draft_game_mode_obj_rel_insert_input": { "data": [ - 469 + 496 ], "on_conflict": [ - 474 + 501 ], "__typename": [ 78 @@ -9120,13 +9704,13 @@ export default { }, "e_draft_game_mode_on_conflict": { "constraint": [ - 466 + 493 ], "update_columns": [ - 481 + 508 ], "where": [ - 465 + 492 ], "__typename": [ 78 @@ -9134,10 +9718,10 @@ export default { }, "e_draft_game_mode_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -9165,7 +9749,7 @@ export default { }, "e_draft_game_mode_stream_cursor_input": { "initial_value": [ - 480 + 507 ], "ordering": [ 236 @@ -9188,10 +9772,10 @@ export default { "e_draft_game_mode_update_column": {}, "e_draft_game_mode_updates": { "_set": [ - 478 + 505 ], "where": [ - 465 + 492 ], "__typename": [ 78 @@ -9210,10 +9794,10 @@ export default { }, "e_draft_game_player_status_aggregate": { "aggregate": [ - 485 + 512 ], "nodes": [ - 483 + 510 ], "__typename": [ 78 @@ -9224,7 +9808,7 @@ export default { 38, { "columns": [ - 498, + 525, "[e_draft_game_player_status_select_column!]" ], "distinct": [ @@ -9233,10 +9817,10 @@ export default { } ], "max": [ - 491 + 518 ], "min": [ - 492 + 519 ], "__typename": [ 78 @@ -9244,13 +9828,13 @@ export default { }, "e_draft_game_player_status_bool_exp": { "_and": [ - 486 + 513 ], "_not": [ - 486 + 513 ], "_or": [ - 486 + 513 ], "description": [ 80 @@ -9266,19 +9850,19 @@ export default { "e_draft_game_player_status_enum": {}, "e_draft_game_player_status_enum_comparison_exp": { "_eq": [ - 488 + 515 ], "_in": [ - 488 + 515 ], "_is_null": [ 3 ], "_neq": [ - 488 + 515 ], "_nin": [ - 488 + 515 ], "__typename": [ 78 @@ -9322,7 +9906,7 @@ export default { 38 ], "returning": [ - 483 + 510 ], "__typename": [ 78 @@ -9330,10 +9914,10 @@ export default { }, "e_draft_game_player_status_obj_rel_insert_input": { "data": [ - 490 + 517 ], "on_conflict": [ - 495 + 522 ], "__typename": [ 78 @@ -9341,13 +9925,13 @@ export default { }, "e_draft_game_player_status_on_conflict": { "constraint": [ - 487 + 514 ], "update_columns": [ - 502 + 529 ], "where": [ - 486 + 513 ], "__typename": [ 78 @@ -9355,10 +9939,10 @@ export default { }, "e_draft_game_player_status_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -9386,7 +9970,7 @@ export default { }, "e_draft_game_player_status_stream_cursor_input": { "initial_value": [ - 501 + 528 ], "ordering": [ 236 @@ -9409,10 +9993,10 @@ export default { "e_draft_game_player_status_update_column": {}, "e_draft_game_player_status_updates": { "_set": [ - 499 + 526 ], "where": [ - 486 + 513 ], "__typename": [ 78 @@ -9431,10 +10015,10 @@ export default { }, "e_draft_game_status_aggregate": { "aggregate": [ - 506 + 533 ], "nodes": [ - 504 + 531 ], "__typename": [ 78 @@ -9445,7 +10029,7 @@ export default { 38, { "columns": [ - 519, + 546, "[e_draft_game_status_select_column!]" ], "distinct": [ @@ -9454,10 +10038,10 @@ export default { } ], "max": [ - 512 + 539 ], "min": [ - 513 + 540 ], "__typename": [ 78 @@ -9465,13 +10049,13 @@ export default { }, "e_draft_game_status_bool_exp": { "_and": [ - 507 + 534 ], "_not": [ - 507 + 534 ], "_or": [ - 507 + 534 ], "description": [ 80 @@ -9487,19 +10071,19 @@ export default { "e_draft_game_status_enum": {}, "e_draft_game_status_enum_comparison_exp": { "_eq": [ - 509 + 536 ], "_in": [ - 509 + 536 ], "_is_null": [ 3 ], "_neq": [ - 509 + 536 ], "_nin": [ - 509 + 536 ], "__typename": [ 78 @@ -9543,7 +10127,7 @@ export default { 38 ], "returning": [ - 504 + 531 ], "__typename": [ 78 @@ -9551,10 +10135,10 @@ export default { }, "e_draft_game_status_obj_rel_insert_input": { "data": [ - 511 + 538 ], "on_conflict": [ - 516 + 543 ], "__typename": [ 78 @@ -9562,13 +10146,13 @@ export default { }, "e_draft_game_status_on_conflict": { "constraint": [ - 508 + 535 ], "update_columns": [ - 523 + 550 ], "where": [ - 507 + 534 ], "__typename": [ 78 @@ -9576,10 +10160,10 @@ export default { }, "e_draft_game_status_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -9607,7 +10191,7 @@ export default { }, "e_draft_game_status_stream_cursor_input": { "initial_value": [ - 522 + 549 ], "ordering": [ 236 @@ -9630,10 +10214,10 @@ export default { "e_draft_game_status_update_column": {}, "e_draft_game_status_updates": { "_set": [ - 520 + 547 ], "where": [ - 507 + 534 ], "__typename": [ 78 @@ -9652,10 +10236,10 @@ export default { }, "e_event_media_access_aggregate": { "aggregate": [ - 527 + 554 ], "nodes": [ - 525 + 552 ], "__typename": [ 78 @@ -9666,7 +10250,7 @@ export default { 38, { "columns": [ - 539, + 566, "[e_event_media_access_select_column!]" ], "distinct": [ @@ -9675,10 +10259,10 @@ export default { } ], "max": [ - 533 + 560 ], "min": [ - 534 + 561 ], "__typename": [ 78 @@ -9686,13 +10270,13 @@ export default { }, "e_event_media_access_bool_exp": { "_and": [ - 528 + 555 ], "_not": [ - 528 + 555 ], "_or": [ - 528 + 555 ], "description": [ 80 @@ -9708,19 +10292,19 @@ export default { "e_event_media_access_enum": {}, "e_event_media_access_enum_comparison_exp": { "_eq": [ - 530 + 557 ], "_in": [ - 530 + 557 ], "_is_null": [ 3 ], "_neq": [ - 530 + 557 ], "_nin": [ - 530 + 557 ], "__typename": [ 78 @@ -9764,7 +10348,7 @@ export default { 38 ], "returning": [ - 525 + 552 ], "__typename": [ 78 @@ -9772,13 +10356,13 @@ export default { }, "e_event_media_access_on_conflict": { "constraint": [ - 529 + 556 ], "update_columns": [ - 543 + 570 ], "where": [ - 528 + 555 ], "__typename": [ 78 @@ -9786,10 +10370,10 @@ export default { }, "e_event_media_access_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -9817,7 +10401,7 @@ export default { }, "e_event_media_access_stream_cursor_input": { "initial_value": [ - 542 + 569 ], "ordering": [ 236 @@ -9840,10 +10424,10 @@ export default { "e_event_media_access_update_column": {}, "e_event_media_access_updates": { "_set": [ - 540 + 567 ], "where": [ - 528 + 555 ], "__typename": [ 78 @@ -9862,10 +10446,10 @@ export default { }, "e_event_visibility_aggregate": { "aggregate": [ - 547 + 574 ], "nodes": [ - 545 + 572 ], "__typename": [ 78 @@ -9876,7 +10460,7 @@ export default { 38, { "columns": [ - 559, + 586, "[e_event_visibility_select_column!]" ], "distinct": [ @@ -9885,10 +10469,10 @@ export default { } ], "max": [ - 553 + 580 ], "min": [ - 554 + 581 ], "__typename": [ 78 @@ -9896,13 +10480,13 @@ export default { }, "e_event_visibility_bool_exp": { "_and": [ - 548 + 575 ], "_not": [ - 548 + 575 ], "_or": [ - 548 + 575 ], "description": [ 80 @@ -9918,19 +10502,19 @@ export default { "e_event_visibility_enum": {}, "e_event_visibility_enum_comparison_exp": { "_eq": [ - 550 + 577 ], "_in": [ - 550 + 577 ], "_is_null": [ 3 ], "_neq": [ - 550 + 577 ], "_nin": [ - 550 + 577 ], "__typename": [ 78 @@ -9974,7 +10558,7 @@ export default { 38 ], "returning": [ - 545 + 572 ], "__typename": [ 78 @@ -9982,13 +10566,13 @@ export default { }, "e_event_visibility_on_conflict": { "constraint": [ - 549 + 576 ], "update_columns": [ - 563 + 590 ], "where": [ - 548 + 575 ], "__typename": [ 78 @@ -9996,10 +10580,10 @@ export default { }, "e_event_visibility_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -10027,7 +10611,7 @@ export default { }, "e_event_visibility_stream_cursor_input": { "initial_value": [ - 562 + 589 ], "ordering": [ 236 @@ -10050,10 +10634,10 @@ export default { "e_event_visibility_update_column": {}, "e_event_visibility_updates": { "_set": [ - 560 + 587 ], "where": [ - 548 + 575 ], "__typename": [ 78 @@ -10072,10 +10656,10 @@ export default { }, "e_friend_status_aggregate": { "aggregate": [ - 567 + 594 ], "nodes": [ - 565 + 592 ], "__typename": [ 78 @@ -10086,7 +10670,7 @@ export default { 38, { "columns": [ - 580, + 607, "[e_friend_status_select_column!]" ], "distinct": [ @@ -10095,10 +10679,10 @@ export default { } ], "max": [ - 573 + 600 ], "min": [ - 574 + 601 ], "__typename": [ 78 @@ -10106,13 +10690,13 @@ export default { }, "e_friend_status_bool_exp": { "_and": [ - 568 + 595 ], "_not": [ - 568 + 595 ], "_or": [ - 568 + 595 ], "description": [ 80 @@ -10128,19 +10712,19 @@ export default { "e_friend_status_enum": {}, "e_friend_status_enum_comparison_exp": { "_eq": [ - 570 + 597 ], "_in": [ - 570 + 597 ], "_is_null": [ 3 ], "_neq": [ - 570 + 597 ], "_nin": [ - 570 + 597 ], "__typename": [ 78 @@ -10184,7 +10768,7 @@ export default { 38 ], "returning": [ - 565 + 592 ], "__typename": [ 78 @@ -10192,10 +10776,10 @@ export default { }, "e_friend_status_obj_rel_insert_input": { "data": [ - 572 + 599 ], "on_conflict": [ - 577 + 604 ], "__typename": [ 78 @@ -10203,13 +10787,13 @@ export default { }, "e_friend_status_on_conflict": { "constraint": [ - 569 + 596 ], "update_columns": [ - 584 + 611 ], "where": [ - 568 + 595 ], "__typename": [ 78 @@ -10217,10 +10801,10 @@ export default { }, "e_friend_status_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -10248,7 +10832,7 @@ export default { }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 583 + 610 ], "ordering": [ 236 @@ -10271,10 +10855,10 @@ export default { "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 581 + 608 ], "where": [ - 568 + 595 ], "__typename": [ 78 @@ -10293,10 +10877,10 @@ export default { }, "e_game_cfg_types_aggregate": { "aggregate": [ - 588 + 615 ], "nodes": [ - 586 + 613 ], "__typename": [ 78 @@ -10307,7 +10891,7 @@ export default { 38, { "columns": [ - 600, + 627, "[e_game_cfg_types_select_column!]" ], "distinct": [ @@ -10316,10 +10900,10 @@ export default { } ], "max": [ - 594 + 621 ], "min": [ - 595 + 622 ], "__typename": [ 78 @@ -10327,13 +10911,13 @@ export default { }, "e_game_cfg_types_bool_exp": { "_and": [ - 589 + 616 ], "_not": [ - 589 + 616 ], "_or": [ - 589 + 616 ], "description": [ 80 @@ -10349,19 +10933,19 @@ export default { "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 591 + 618 ], "_in": [ - 591 + 618 ], "_is_null": [ 3 ], "_neq": [ - 591 + 618 ], "_nin": [ - 591 + 618 ], "__typename": [ 78 @@ -10405,7 +10989,7 @@ export default { 38 ], "returning": [ - 586 + 613 ], "__typename": [ 78 @@ -10413,13 +10997,13 @@ export default { }, "e_game_cfg_types_on_conflict": { "constraint": [ - 590 + 617 ], "update_columns": [ - 604 + 631 ], "where": [ - 589 + 616 ], "__typename": [ 78 @@ -10427,10 +11011,10 @@ export default { }, "e_game_cfg_types_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -10458,7 +11042,7 @@ export default { }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 603 + 630 ], "ordering": [ 236 @@ -10481,10 +11065,10 @@ export default { "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 601 + 628 ], "where": [ - 589 + 616 ], "__typename": [ 78 @@ -10503,10 +11087,10 @@ export default { }, "e_game_server_node_statuses_aggregate": { "aggregate": [ - 608 + 635 ], "nodes": [ - 606 + 633 ], "__typename": [ 78 @@ -10517,7 +11101,7 @@ export default { 38, { "columns": [ - 621, + 648, "[e_game_server_node_statuses_select_column!]" ], "distinct": [ @@ -10526,10 +11110,10 @@ export default { } ], "max": [ - 614 + 641 ], "min": [ - 615 + 642 ], "__typename": [ 78 @@ -10537,13 +11121,13 @@ export default { }, "e_game_server_node_statuses_bool_exp": { "_and": [ - 609 + 636 ], "_not": [ - 609 + 636 ], "_or": [ - 609 + 636 ], "description": [ 80 @@ -10559,19 +11143,19 @@ export default { "e_game_server_node_statuses_enum": {}, "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 611 + 638 ], "_in": [ - 611 + 638 ], "_is_null": [ 3 ], "_neq": [ - 611 + 638 ], "_nin": [ - 611 + 638 ], "__typename": [ 78 @@ -10615,7 +11199,7 @@ export default { 38 ], "returning": [ - 606 + 633 ], "__typename": [ 78 @@ -10623,10 +11207,10 @@ export default { }, "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 613 + 640 ], "on_conflict": [ - 618 + 645 ], "__typename": [ 78 @@ -10634,13 +11218,13 @@ export default { }, "e_game_server_node_statuses_on_conflict": { "constraint": [ - 610 + 637 ], "update_columns": [ - 625 + 652 ], "where": [ - 609 + 636 ], "__typename": [ 78 @@ -10648,10 +11232,10 @@ export default { }, "e_game_server_node_statuses_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -10679,7 +11263,7 @@ export default { }, "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 624 + 651 ], "ordering": [ 236 @@ -10702,10 +11286,10 @@ export default { "e_game_server_node_statuses_update_column": {}, "e_game_server_node_statuses_updates": { "_set": [ - 622 + 649 ], "where": [ - 609 + 636 ], "__typename": [ 78 @@ -10724,10 +11308,10 @@ export default { }, "e_league_movement_types_aggregate": { "aggregate": [ - 629 + 656 ], "nodes": [ - 627 + 654 ], "__typename": [ 78 @@ -10738,7 +11322,7 @@ export default { 38, { "columns": [ - 642, + 669, "[e_league_movement_types_select_column!]" ], "distinct": [ @@ -10747,10 +11331,10 @@ export default { } ], "max": [ - 635 + 662 ], "min": [ - 636 + 663 ], "__typename": [ 78 @@ -10758,13 +11342,13 @@ export default { }, "e_league_movement_types_bool_exp": { "_and": [ - 630 + 657 ], "_not": [ - 630 + 657 ], "_or": [ - 630 + 657 ], "description": [ 80 @@ -10780,19 +11364,19 @@ export default { "e_league_movement_types_enum": {}, "e_league_movement_types_enum_comparison_exp": { "_eq": [ - 632 + 659 ], "_in": [ - 632 + 659 ], "_is_null": [ 3 ], "_neq": [ - 632 + 659 ], "_nin": [ - 632 + 659 ], "__typename": [ 78 @@ -10836,7 +11420,7 @@ export default { 38 ], "returning": [ - 627 + 654 ], "__typename": [ 78 @@ -10844,10 +11428,10 @@ export default { }, "e_league_movement_types_obj_rel_insert_input": { "data": [ - 634 + 661 ], "on_conflict": [ - 639 + 666 ], "__typename": [ 78 @@ -10855,13 +11439,13 @@ export default { }, "e_league_movement_types_on_conflict": { "constraint": [ - 631 + 658 ], "update_columns": [ - 646 + 673 ], "where": [ - 630 + 657 ], "__typename": [ 78 @@ -10869,10 +11453,10 @@ export default { }, "e_league_movement_types_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -10900,7 +11484,7 @@ export default { }, "e_league_movement_types_stream_cursor_input": { "initial_value": [ - 645 + 672 ], "ordering": [ 236 @@ -10923,10 +11507,10 @@ export default { "e_league_movement_types_update_column": {}, "e_league_movement_types_updates": { "_set": [ - 643 + 670 ], "where": [ - 630 + 657 ], "__typename": [ 78 @@ -10945,10 +11529,10 @@ export default { }, "e_league_proposal_statuses_aggregate": { "aggregate": [ - 650 + 677 ], "nodes": [ - 648 + 675 ], "__typename": [ 78 @@ -10959,7 +11543,7 @@ export default { 38, { "columns": [ - 663, + 690, "[e_league_proposal_statuses_select_column!]" ], "distinct": [ @@ -10968,10 +11552,10 @@ export default { } ], "max": [ - 656 + 683 ], "min": [ - 657 + 684 ], "__typename": [ 78 @@ -10979,13 +11563,13 @@ export default { }, "e_league_proposal_statuses_bool_exp": { "_and": [ - 651 + 678 ], "_not": [ - 651 + 678 ], "_or": [ - 651 + 678 ], "description": [ 80 @@ -11001,19 +11585,19 @@ export default { "e_league_proposal_statuses_enum": {}, "e_league_proposal_statuses_enum_comparison_exp": { "_eq": [ - 653 + 680 ], "_in": [ - 653 + 680 ], "_is_null": [ 3 ], "_neq": [ - 653 + 680 ], "_nin": [ - 653 + 680 ], "__typename": [ 78 @@ -11057,7 +11641,7 @@ export default { 38 ], "returning": [ - 648 + 675 ], "__typename": [ 78 @@ -11065,10 +11649,10 @@ export default { }, "e_league_proposal_statuses_obj_rel_insert_input": { "data": [ - 655 + 682 ], "on_conflict": [ - 660 + 687 ], "__typename": [ 78 @@ -11076,13 +11660,13 @@ export default { }, "e_league_proposal_statuses_on_conflict": { "constraint": [ - 652 + 679 ], "update_columns": [ - 667 + 694 ], "where": [ - 651 + 678 ], "__typename": [ 78 @@ -11090,10 +11674,10 @@ export default { }, "e_league_proposal_statuses_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -11121,7 +11705,7 @@ export default { }, "e_league_proposal_statuses_stream_cursor_input": { "initial_value": [ - 666 + 693 ], "ordering": [ 236 @@ -11144,10 +11728,10 @@ export default { "e_league_proposal_statuses_update_column": {}, "e_league_proposal_statuses_updates": { "_set": [ - 664 + 691 ], "where": [ - 651 + 678 ], "__typename": [ 78 @@ -11166,10 +11750,10 @@ export default { }, "e_league_registration_statuses_aggregate": { "aggregate": [ - 671 + 698 ], "nodes": [ - 669 + 696 ], "__typename": [ 78 @@ -11180,7 +11764,7 @@ export default { 38, { "columns": [ - 684, + 711, "[e_league_registration_statuses_select_column!]" ], "distinct": [ @@ -11189,10 +11773,10 @@ export default { } ], "max": [ - 677 + 704 ], "min": [ - 678 + 705 ], "__typename": [ 78 @@ -11200,13 +11784,13 @@ export default { }, "e_league_registration_statuses_bool_exp": { "_and": [ - 672 + 699 ], "_not": [ - 672 + 699 ], "_or": [ - 672 + 699 ], "description": [ 80 @@ -11222,19 +11806,19 @@ export default { "e_league_registration_statuses_enum": {}, "e_league_registration_statuses_enum_comparison_exp": { "_eq": [ - 674 + 701 ], "_in": [ - 674 + 701 ], "_is_null": [ 3 ], "_neq": [ - 674 + 701 ], "_nin": [ - 674 + 701 ], "__typename": [ 78 @@ -11278,7 +11862,7 @@ export default { 38 ], "returning": [ - 669 + 696 ], "__typename": [ 78 @@ -11286,10 +11870,10 @@ export default { }, "e_league_registration_statuses_obj_rel_insert_input": { "data": [ - 676 + 703 ], "on_conflict": [ - 681 + 708 ], "__typename": [ 78 @@ -11297,13 +11881,13 @@ export default { }, "e_league_registration_statuses_on_conflict": { "constraint": [ - 673 + 700 ], "update_columns": [ - 688 + 715 ], "where": [ - 672 + 699 ], "__typename": [ 78 @@ -11311,10 +11895,10 @@ export default { }, "e_league_registration_statuses_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -11342,7 +11926,7 @@ export default { }, "e_league_registration_statuses_stream_cursor_input": { "initial_value": [ - 687 + 714 ], "ordering": [ 236 @@ -11365,10 +11949,10 @@ export default { "e_league_registration_statuses_update_column": {}, "e_league_registration_statuses_updates": { "_set": [ - 685 + 712 ], "where": [ - 672 + 699 ], "__typename": [ 78 @@ -11387,10 +11971,10 @@ export default { }, "e_league_season_statuses_aggregate": { "aggregate": [ - 692 + 719 ], "nodes": [ - 690 + 717 ], "__typename": [ 78 @@ -11401,7 +11985,7 @@ export default { 38, { "columns": [ - 705, + 732, "[e_league_season_statuses_select_column!]" ], "distinct": [ @@ -11410,10 +11994,10 @@ export default { } ], "max": [ - 698 + 725 ], "min": [ - 699 + 726 ], "__typename": [ 78 @@ -11421,13 +12005,13 @@ export default { }, "e_league_season_statuses_bool_exp": { "_and": [ - 693 + 720 ], "_not": [ - 693 + 720 ], "_or": [ - 693 + 720 ], "description": [ 80 @@ -11443,19 +12027,19 @@ export default { "e_league_season_statuses_enum": {}, "e_league_season_statuses_enum_comparison_exp": { "_eq": [ - 695 + 722 ], "_in": [ - 695 + 722 ], "_is_null": [ 3 ], "_neq": [ - 695 + 722 ], "_nin": [ - 695 + 722 ], "__typename": [ 78 @@ -11499,7 +12083,7 @@ export default { 38 ], "returning": [ - 690 + 717 ], "__typename": [ 78 @@ -11507,10 +12091,10 @@ export default { }, "e_league_season_statuses_obj_rel_insert_input": { "data": [ - 697 + 724 ], "on_conflict": [ - 702 + 729 ], "__typename": [ 78 @@ -11518,13 +12102,13 @@ export default { }, "e_league_season_statuses_on_conflict": { "constraint": [ - 694 + 721 ], "update_columns": [ - 709 + 736 ], "where": [ - 693 + 720 ], "__typename": [ 78 @@ -11532,10 +12116,10 @@ export default { }, "e_league_season_statuses_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -11563,7 +12147,7 @@ export default { }, "e_league_season_statuses_stream_cursor_input": { "initial_value": [ - 708 + 735 ], "ordering": [ 236 @@ -11586,10 +12170,10 @@ export default { "e_league_season_statuses_update_column": {}, "e_league_season_statuses_updates": { "_set": [ - 706 + 733 ], "where": [ - 693 + 720 ], "__typename": [ 78 @@ -11608,10 +12192,10 @@ export default { }, "e_lobby_access_aggregate": { "aggregate": [ - 713 + 740 ], "nodes": [ - 711 + 738 ], "__typename": [ 78 @@ -11622,7 +12206,7 @@ export default { 38, { "columns": [ - 726, + 753, "[e_lobby_access_select_column!]" ], "distinct": [ @@ -11631,10 +12215,10 @@ export default { } ], "max": [ - 719 + 746 ], "min": [ - 720 + 747 ], "__typename": [ 78 @@ -11642,13 +12226,13 @@ export default { }, "e_lobby_access_bool_exp": { "_and": [ - 714 + 741 ], "_not": [ - 714 + 741 ], "_or": [ - 714 + 741 ], "description": [ 80 @@ -11664,19 +12248,19 @@ export default { "e_lobby_access_enum": {}, "e_lobby_access_enum_comparison_exp": { "_eq": [ - 716 + 743 ], "_in": [ - 716 + 743 ], "_is_null": [ 3 ], "_neq": [ - 716 + 743 ], "_nin": [ - 716 + 743 ], "__typename": [ 78 @@ -11720,7 +12304,7 @@ export default { 38 ], "returning": [ - 711 + 738 ], "__typename": [ 78 @@ -11728,10 +12312,10 @@ export default { }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 718 + 745 ], "on_conflict": [ - 723 + 750 ], "__typename": [ 78 @@ -11739,13 +12323,13 @@ export default { }, "e_lobby_access_on_conflict": { "constraint": [ - 715 + 742 ], "update_columns": [ - 730 + 757 ], "where": [ - 714 + 741 ], "__typename": [ 78 @@ -11753,10 +12337,10 @@ export default { }, "e_lobby_access_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -11784,7 +12368,7 @@ export default { }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 729 + 756 ], "ordering": [ 236 @@ -11807,10 +12391,10 @@ export default { "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 727 + 754 ], "where": [ - 714 + 741 ], "__typename": [ 78 @@ -11829,10 +12413,10 @@ export default { }, "e_lobby_player_status_aggregate": { "aggregate": [ - 734 + 761 ], "nodes": [ - 732 + 759 ], "__typename": [ 78 @@ -11843,7 +12427,7 @@ export default { 38, { "columns": [ - 746, + 773, "[e_lobby_player_status_select_column!]" ], "distinct": [ @@ -11852,10 +12436,10 @@ export default { } ], "max": [ - 740 + 767 ], "min": [ - 741 + 768 ], "__typename": [ 78 @@ -11863,13 +12447,13 @@ export default { }, "e_lobby_player_status_bool_exp": { "_and": [ - 735 + 762 ], "_not": [ - 735 + 762 ], "_or": [ - 735 + 762 ], "description": [ 80 @@ -11885,19 +12469,19 @@ export default { "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 737 + 764 ], "_in": [ - 737 + 764 ], "_is_null": [ 3 ], "_neq": [ - 737 + 764 ], "_nin": [ - 737 + 764 ], "__typename": [ 78 @@ -11941,7 +12525,7 @@ export default { 38 ], "returning": [ - 732 + 759 ], "__typename": [ 78 @@ -11949,13 +12533,13 @@ export default { }, "e_lobby_player_status_on_conflict": { "constraint": [ - 736 + 763 ], "update_columns": [ - 750 + 777 ], "where": [ - 735 + 762 ], "__typename": [ 78 @@ -11963,10 +12547,10 @@ export default { }, "e_lobby_player_status_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -11994,7 +12578,7 @@ export default { }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 749 + 776 ], "ordering": [ 236 @@ -12017,10 +12601,10 @@ export default { "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 747 + 774 ], "where": [ - 735 + 762 ], "__typename": [ 78 @@ -12039,10 +12623,10 @@ export default { }, "e_map_pool_types_aggregate": { "aggregate": [ - 754 + 781 ], "nodes": [ - 752 + 779 ], "__typename": [ 78 @@ -12053,7 +12637,7 @@ export default { 38, { "columns": [ - 767, + 794, "[e_map_pool_types_select_column!]" ], "distinct": [ @@ -12062,10 +12646,10 @@ export default { } ], "max": [ - 760 + 787 ], "min": [ - 761 + 788 ], "__typename": [ 78 @@ -12073,13 +12657,13 @@ export default { }, "e_map_pool_types_bool_exp": { "_and": [ - 755 + 782 ], "_not": [ - 755 + 782 ], "_or": [ - 755 + 782 ], "description": [ 80 @@ -12095,19 +12679,19 @@ export default { "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 757 + 784 ], "_in": [ - 757 + 784 ], "_is_null": [ 3 ], "_neq": [ - 757 + 784 ], "_nin": [ - 757 + 784 ], "__typename": [ 78 @@ -12151,7 +12735,7 @@ export default { 38 ], "returning": [ - 752 + 779 ], "__typename": [ 78 @@ -12159,10 +12743,10 @@ export default { }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 759 + 786 ], "on_conflict": [ - 764 + 791 ], "__typename": [ 78 @@ -12170,13 +12754,13 @@ export default { }, "e_map_pool_types_on_conflict": { "constraint": [ - 756 + 783 ], "update_columns": [ - 771 + 798 ], "where": [ - 755 + 782 ], "__typename": [ 78 @@ -12184,10 +12768,10 @@ export default { }, "e_map_pool_types_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -12215,7 +12799,7 @@ export default { }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 770 + 797 ], "ordering": [ 236 @@ -12238,10 +12822,10 @@ export default { "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 768 + 795 ], "where": [ - 755 + 782 ], "__typename": [ 78 @@ -12252,10 +12836,10 @@ export default { 78 ], "match_clips": [ - 2143, + 2191, { "distinct_on": [ - 2165, + 2213, "[match_clips_select_column!]" ], "limit": [ @@ -12265,19 +12849,19 @@ export default { 38 ], "order_by": [ - 2163, + 2211, "[match_clips_order_by!]" ], "where": [ - 2152 + 2200 ] } ], "match_clips_aggregate": [ - 2144, + 2192, { "distinct_on": [ - 2165, + 2213, "[match_clips_select_column!]" ], "limit": [ @@ -12287,11 +12871,11 @@ export default { 38 ], "order_by": [ - 2163, + 2211, "[match_clips_order_by!]" ], "where": [ - 2152 + 2200 ] } ], @@ -12304,10 +12888,10 @@ export default { }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 775 + 802 ], "nodes": [ - 773 + 800 ], "__typename": [ 78 @@ -12318,7 +12902,7 @@ export default { 38, { "columns": [ - 787, + 814, "[e_match_clip_visibility_select_column!]" ], "distinct": [ @@ -12327,10 +12911,10 @@ export default { } ], "max": [ - 781 + 808 ], "min": [ - 782 + 809 ], "__typename": [ 78 @@ -12338,22 +12922,22 @@ export default { }, "e_match_clip_visibility_bool_exp": { "_and": [ - 776 + 803 ], "_not": [ - 776 + 803 ], "_or": [ - 776 + 803 ], "description": [ 80 ], "match_clips": [ - 2152 + 2200 ], "match_clips_aggregate": [ - 2145 + 2193 ], "value": [ 80 @@ -12366,19 +12950,19 @@ export default { "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 778 + 805 ], "_in": [ - 778 + 805 ], "_is_null": [ 3 ], "_neq": [ - 778 + 805 ], "_nin": [ - 778 + 805 ], "__typename": [ 78 @@ -12389,7 +12973,7 @@ export default { 78 ], "match_clips": [ - 2149 + 2197 ], "value": [ 78 @@ -12425,7 +13009,7 @@ export default { 38 ], "returning": [ - 773 + 800 ], "__typename": [ 78 @@ -12433,13 +13017,13 @@ export default { }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 777 + 804 ], "update_columns": [ - 791 + 818 ], "where": [ - 776 + 803 ], "__typename": [ 78 @@ -12447,13 +13031,13 @@ export default { }, "e_match_clip_visibility_order_by": { "description": [ - 2781 + 2829 ], "match_clips_aggregate": [ - 2148 + 2196 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -12481,7 +13065,7 @@ export default { }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 790 + 817 ], "ordering": [ 236 @@ -12504,10 +13088,10 @@ export default { "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 788 + 815 ], "where": [ - 776 + 803 ], "__typename": [ 78 @@ -12518,10 +13102,10 @@ export default { 78 ], "match_maps": [ - 2434, + 2482, { "distinct_on": [ - 2456, + 2504, "[match_maps_select_column!]" ], "limit": [ @@ -12531,19 +13115,19 @@ export default { 38 ], "order_by": [ - 2454, + 2502, "[match_maps_order_by!]" ], "where": [ - 2443 + 2491 ] } ], "match_maps_aggregate": [ - 2435, + 2483, { "distinct_on": [ - 2456, + 2504, "[match_maps_select_column!]" ], "limit": [ @@ -12553,11 +13137,11 @@ export default { 38 ], "order_by": [ - 2454, + 2502, "[match_maps_order_by!]" ], "where": [ - 2443 + 2491 ] } ], @@ -12570,10 +13154,10 @@ export default { }, "e_match_map_status_aggregate": { "aggregate": [ - 795 + 822 ], "nodes": [ - 793 + 820 ], "__typename": [ 78 @@ -12584,7 +13168,7 @@ export default { 38, { "columns": [ - 808, + 835, "[e_match_map_status_select_column!]" ], "distinct": [ @@ -12593,10 +13177,10 @@ export default { } ], "max": [ - 801 + 828 ], "min": [ - 802 + 829 ], "__typename": [ 78 @@ -12604,22 +13188,22 @@ export default { }, "e_match_map_status_bool_exp": { "_and": [ - 796 + 823 ], "_not": [ - 796 + 823 ], "_or": [ - 796 + 823 ], "description": [ 80 ], "match_maps": [ - 2443 + 2491 ], "match_maps_aggregate": [ - 2436 + 2484 ], "value": [ 80 @@ -12632,19 +13216,19 @@ export default { "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 798 + 825 ], "_in": [ - 798 + 825 ], "_is_null": [ 3 ], "_neq": [ - 798 + 825 ], "_nin": [ - 798 + 825 ], "__typename": [ 78 @@ -12655,7 +13239,7 @@ export default { 78 ], "match_maps": [ - 2440 + 2488 ], "value": [ 78 @@ -12691,7 +13275,7 @@ export default { 38 ], "returning": [ - 793 + 820 ], "__typename": [ 78 @@ -12699,10 +13283,10 @@ export default { }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 800 + 827 ], "on_conflict": [ - 805 + 832 ], "__typename": [ 78 @@ -12710,13 +13294,13 @@ export default { }, "e_match_map_status_on_conflict": { "constraint": [ - 797 + 824 ], "update_columns": [ - 812 + 839 ], "where": [ - 796 + 823 ], "__typename": [ 78 @@ -12724,13 +13308,13 @@ export default { }, "e_match_map_status_order_by": { "description": [ - 2781 + 2829 ], "match_maps_aggregate": [ - 2439 + 2487 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -12758,7 +13342,7 @@ export default { }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 811 + 838 ], "ordering": [ 236 @@ -12781,10 +13365,10 @@ export default { "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 809 + 836 ], "where": [ - 796 + 823 ], "__typename": [ 78 @@ -12803,10 +13387,10 @@ export default { }, "e_match_mode_aggregate": { "aggregate": [ - 816 + 843 ], "nodes": [ - 814 + 841 ], "__typename": [ 78 @@ -12817,7 +13401,7 @@ export default { 38, { "columns": [ - 828, + 855, "[e_match_mode_select_column!]" ], "distinct": [ @@ -12826,10 +13410,10 @@ export default { } ], "max": [ - 822 + 849 ], "min": [ - 823 + 850 ], "__typename": [ 78 @@ -12837,13 +13421,13 @@ export default { }, "e_match_mode_bool_exp": { "_and": [ - 817 + 844 ], "_not": [ - 817 + 844 ], "_or": [ - 817 + 844 ], "description": [ 80 @@ -12859,19 +13443,19 @@ export default { "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 819 + 846 ], "_in": [ - 819 + 846 ], "_is_null": [ 3 ], "_neq": [ - 819 + 846 ], "_nin": [ - 819 + 846 ], "__typename": [ 78 @@ -12915,7 +13499,7 @@ export default { 38 ], "returning": [ - 814 + 841 ], "__typename": [ 78 @@ -12923,13 +13507,13 @@ export default { }, "e_match_mode_on_conflict": { "constraint": [ - 818 + 845 ], "update_columns": [ - 832 + 859 ], "where": [ - 817 + 844 ], "__typename": [ 78 @@ -12937,10 +13521,10 @@ export default { }, "e_match_mode_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -12968,7 +13552,7 @@ export default { }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 831 + 858 ], "ordering": [ 236 @@ -12991,10 +13575,10 @@ export default { "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 829 + 856 ], "where": [ - 817 + 844 ], "__typename": [ 78 @@ -13005,10 +13589,10 @@ export default { 78 ], "matches": [ - 2596, + 2644, { "distinct_on": [ - 2618, + 2666, "[matches_select_column!]" ], "limit": [ @@ -13018,19 +13602,19 @@ export default { 38 ], "order_by": [ - 2616, + 2664, "[matches_order_by!]" ], "where": [ - 2605 + 2653 ] } ], "matches_aggregate": [ - 2597, + 2645, { "distinct_on": [ - 2618, + 2666, "[matches_select_column!]" ], "limit": [ @@ -13040,11 +13624,11 @@ export default { 38 ], "order_by": [ - 2616, + 2664, "[matches_order_by!]" ], "where": [ - 2605 + 2653 ] } ], @@ -13057,10 +13641,10 @@ export default { }, "e_match_status_aggregate": { "aggregate": [ - 836 + 863 ], "nodes": [ - 834 + 861 ], "__typename": [ 78 @@ -13071,7 +13655,7 @@ export default { 38, { "columns": [ - 849, + 876, "[e_match_status_select_column!]" ], "distinct": [ @@ -13080,10 +13664,10 @@ export default { } ], "max": [ - 842 + 869 ], "min": [ - 843 + 870 ], "__typename": [ 78 @@ -13091,22 +13675,22 @@ export default { }, "e_match_status_bool_exp": { "_and": [ - 837 + 864 ], "_not": [ - 837 + 864 ], "_or": [ - 837 + 864 ], "description": [ 80 ], "matches": [ - 2605 + 2653 ], "matches_aggregate": [ - 2598 + 2646 ], "value": [ 80 @@ -13119,19 +13703,19 @@ export default { "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 839 + 866 ], "_in": [ - 839 + 866 ], "_is_null": [ 3 ], "_neq": [ - 839 + 866 ], "_nin": [ - 839 + 866 ], "__typename": [ 78 @@ -13142,7 +13726,7 @@ export default { 78 ], "matches": [ - 2602 + 2650 ], "value": [ 78 @@ -13178,7 +13762,7 @@ export default { 38 ], "returning": [ - 834 + 861 ], "__typename": [ 78 @@ -13186,10 +13770,10 @@ export default { }, "e_match_status_obj_rel_insert_input": { "data": [ - 841 + 868 ], "on_conflict": [ - 846 + 873 ], "__typename": [ 78 @@ -13197,13 +13781,13 @@ export default { }, "e_match_status_on_conflict": { "constraint": [ - 838 + 865 ], "update_columns": [ - 853 + 880 ], "where": [ - 837 + 864 ], "__typename": [ 78 @@ -13211,13 +13795,13 @@ export default { }, "e_match_status_order_by": { "description": [ - 2781 + 2829 ], "matches_aggregate": [ - 2601 + 2649 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -13245,7 +13829,7 @@ export default { }, "e_match_status_stream_cursor_input": { "initial_value": [ - 852 + 879 ], "ordering": [ 236 @@ -13268,10 +13852,10 @@ export default { "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 850 + 877 ], "where": [ - 837 + 864 ], "__typename": [ 78 @@ -13282,10 +13866,10 @@ export default { 78 ], "maps": [ - 2114, + 2162, { "distinct_on": [ - 2135, + 2183, "[maps_select_column!]" ], "limit": [ @@ -13295,19 +13879,19 @@ export default { 38 ], "order_by": [ - 2133, + 2181, "[maps_order_by!]" ], "where": [ - 2123 + 2171 ] } ], "maps_aggregate": [ - 2115, + 2163, { "distinct_on": [ - 2135, + 2183, "[maps_select_column!]" ], "limit": [ @@ -13317,11 +13901,11 @@ export default { 38 ], "order_by": [ - 2133, + 2181, "[maps_order_by!]" ], "where": [ - 2123 + 2171 ] } ], @@ -13334,10 +13918,10 @@ export default { }, "e_match_types_aggregate": { "aggregate": [ - 857 + 884 ], "nodes": [ - 855 + 882 ], "__typename": [ 78 @@ -13348,7 +13932,7 @@ export default { 38, { "columns": [ - 870, + 897, "[e_match_types_select_column!]" ], "distinct": [ @@ -13357,10 +13941,10 @@ export default { } ], "max": [ - 863 + 890 ], "min": [ - 864 + 891 ], "__typename": [ 78 @@ -13368,22 +13952,22 @@ export default { }, "e_match_types_bool_exp": { "_and": [ - 858 + 885 ], "_not": [ - 858 + 885 ], "_or": [ - 858 + 885 ], "description": [ 80 ], "maps": [ - 2123 + 2171 ], "maps_aggregate": [ - 2116 + 2164 ], "value": [ 80 @@ -13396,19 +13980,19 @@ export default { "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 860 + 887 ], "_in": [ - 860 + 887 ], "_is_null": [ 3 ], "_neq": [ - 860 + 887 ], "_nin": [ - 860 + 887 ], "__typename": [ 78 @@ -13419,7 +14003,7 @@ export default { 78 ], "maps": [ - 2122 + 2170 ], "value": [ 78 @@ -13455,7 +14039,7 @@ export default { 38 ], "returning": [ - 855 + 882 ], "__typename": [ 78 @@ -13463,10 +14047,10 @@ export default { }, "e_match_types_obj_rel_insert_input": { "data": [ - 862 + 889 ], "on_conflict": [ - 867 + 894 ], "__typename": [ 78 @@ -13474,13 +14058,13 @@ export default { }, "e_match_types_on_conflict": { "constraint": [ - 859 + 886 ], "update_columns": [ - 874 + 901 ], "where": [ - 858 + 885 ], "__typename": [ 78 @@ -13488,13 +14072,13 @@ export default { }, "e_match_types_order_by": { "description": [ - 2781 + 2829 ], "maps_aggregate": [ - 2121 + 2169 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -13522,7 +14106,7 @@ export default { }, "e_match_types_stream_cursor_input": { "initial_value": [ - 873 + 900 ], "ordering": [ 236 @@ -13545,10 +14129,10 @@ export default { "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 871 + 898 ], "where": [ - 858 + 885 ], "__typename": [ 78 @@ -13567,10 +14151,10 @@ export default { }, "e_notification_types_aggregate": { "aggregate": [ - 878 + 905 ], "nodes": [ - 876 + 903 ], "__typename": [ 78 @@ -13581,7 +14165,7 @@ export default { 38, { "columns": [ - 890, + 917, "[e_notification_types_select_column!]" ], "distinct": [ @@ -13590,10 +14174,10 @@ export default { } ], "max": [ - 884 + 911 ], "min": [ - 885 + 912 ], "__typename": [ 78 @@ -13601,13 +14185,13 @@ export default { }, "e_notification_types_bool_exp": { "_and": [ - 879 + 906 ], "_not": [ - 879 + 906 ], "_or": [ - 879 + 906 ], "description": [ 80 @@ -13623,19 +14207,19 @@ export default { "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 881 + 908 ], "_in": [ - 881 + 908 ], "_is_null": [ 3 ], "_neq": [ - 881 + 908 ], "_nin": [ - 881 + 908 ], "__typename": [ 78 @@ -13679,7 +14263,7 @@ export default { 38 ], "returning": [ - 876 + 903 ], "__typename": [ 78 @@ -13687,13 +14271,13 @@ export default { }, "e_notification_types_on_conflict": { "constraint": [ - 880 + 907 ], "update_columns": [ - 894 + 921 ], "where": [ - 879 + 906 ], "__typename": [ 78 @@ -13701,10 +14285,10 @@ export default { }, "e_notification_types_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -13732,7 +14316,7 @@ export default { }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 893 + 920 ], "ordering": [ 236 @@ -13755,10 +14339,10 @@ export default { "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 891 + 918 ], "where": [ - 879 + 906 ], "__typename": [ 78 @@ -13769,10 +14353,10 @@ export default { 78 ], "player_objectives": [ - 3337, + 3385, { "distinct_on": [ - 3358, + 3406, "[player_objectives_select_column!]" ], "limit": [ @@ -13782,19 +14366,19 @@ export default { 38 ], "order_by": [ - 3356, + 3404, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3394 ] } ], "player_objectives_aggregate": [ - 3338, + 3386, { "distinct_on": [ - 3358, + 3406, "[player_objectives_select_column!]" ], "limit": [ @@ -13804,11 +14388,11 @@ export default { 38 ], "order_by": [ - 3356, + 3404, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3394 ] } ], @@ -13821,10 +14405,10 @@ export default { }, "e_objective_types_aggregate": { "aggregate": [ - 898 + 925 ], "nodes": [ - 896 + 923 ], "__typename": [ 78 @@ -13835,7 +14419,7 @@ export default { 38, { "columns": [ - 910, + 937, "[e_objective_types_select_column!]" ], "distinct": [ @@ -13844,10 +14428,10 @@ export default { } ], "max": [ - 904 + 931 ], "min": [ - 905 + 932 ], "__typename": [ 78 @@ -13855,22 +14439,22 @@ export default { }, "e_objective_types_bool_exp": { "_and": [ - 899 + 926 ], "_not": [ - 899 + 926 ], "_or": [ - 899 + 926 ], "description": [ 80 ], "player_objectives": [ - 3346 + 3394 ], "player_objectives_aggregate": [ - 3339 + 3387 ], "value": [ 80 @@ -13883,19 +14467,19 @@ export default { "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 901 + 928 ], "_in": [ - 901 + 928 ], "_is_null": [ 3 ], "_neq": [ - 901 + 928 ], "_nin": [ - 901 + 928 ], "__typename": [ 78 @@ -13906,7 +14490,7 @@ export default { 78 ], "player_objectives": [ - 3343 + 3391 ], "value": [ 78 @@ -13942,7 +14526,7 @@ export default { 38 ], "returning": [ - 896 + 923 ], "__typename": [ 78 @@ -13950,13 +14534,13 @@ export default { }, "e_objective_types_on_conflict": { "constraint": [ - 900 + 927 ], "update_columns": [ - 914 + 941 ], "where": [ - 899 + 926 ], "__typename": [ 78 @@ -13964,13 +14548,13 @@ export default { }, "e_objective_types_order_by": { "description": [ - 2781 + 2829 ], "player_objectives_aggregate": [ - 3342 + 3390 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -13998,7 +14582,7 @@ export default { }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 913 + 940 ], "ordering": [ 236 @@ -14021,10 +14605,10 @@ export default { "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 911 + 938 ], "where": [ - 899 + 926 ], "__typename": [ 78 @@ -14043,10 +14627,10 @@ export default { }, "e_player_roles_aggregate": { "aggregate": [ - 918 + 945 ], "nodes": [ - 916 + 943 ], "__typename": [ 78 @@ -14057,7 +14641,7 @@ export default { 38, { "columns": [ - 930, + 957, "[e_player_roles_select_column!]" ], "distinct": [ @@ -14066,10 +14650,10 @@ export default { } ], "max": [ - 924 + 951 ], "min": [ - 925 + 952 ], "__typename": [ 78 @@ -14077,13 +14661,13 @@ export default { }, "e_player_roles_bool_exp": { "_and": [ - 919 + 946 ], "_not": [ - 919 + 946 ], "_or": [ - 919 + 946 ], "description": [ 80 @@ -14099,19 +14683,19 @@ export default { "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 921 + 948 ], "_in": [ - 921 + 948 ], "_is_null": [ 3 ], "_neq": [ - 921 + 948 ], "_nin": [ - 921 + 948 ], "__typename": [ 78 @@ -14155,7 +14739,7 @@ export default { 38 ], "returning": [ - 916 + 943 ], "__typename": [ 78 @@ -14163,13 +14747,13 @@ export default { }, "e_player_roles_on_conflict": { "constraint": [ - 920 + 947 ], "update_columns": [ - 934 + 961 ], "where": [ - 919 + 946 ], "__typename": [ 78 @@ -14177,10 +14761,10 @@ export default { }, "e_player_roles_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -14208,7 +14792,7 @@ export default { }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 933 + 960 ], "ordering": [ 236 @@ -14231,10 +14815,10 @@ export default { "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 931 + 958 ], "where": [ - 919 + 946 ], "__typename": [ 78 @@ -14253,10 +14837,10 @@ export default { }, "e_plugin_runtimes_aggregate": { "aggregate": [ - 938 + 965 ], "nodes": [ - 936 + 963 ], "__typename": [ 78 @@ -14267,7 +14851,7 @@ export default { 38, { "columns": [ - 950, + 977, "[e_plugin_runtimes_select_column!]" ], "distinct": [ @@ -14276,10 +14860,10 @@ export default { } ], "max": [ - 944 + 971 ], "min": [ - 945 + 972 ], "__typename": [ 78 @@ -14287,13 +14871,13 @@ export default { }, "e_plugin_runtimes_bool_exp": { "_and": [ - 939 + 966 ], "_not": [ - 939 + 966 ], "_or": [ - 939 + 966 ], "description": [ 80 @@ -14309,19 +14893,19 @@ export default { "e_plugin_runtimes_enum": {}, "e_plugin_runtimes_enum_comparison_exp": { "_eq": [ - 941 + 968 ], "_in": [ - 941 + 968 ], "_is_null": [ 3 ], "_neq": [ - 941 + 968 ], "_nin": [ - 941 + 968 ], "__typename": [ 78 @@ -14365,7 +14949,7 @@ export default { 38 ], "returning": [ - 936 + 963 ], "__typename": [ 78 @@ -14373,13 +14957,13 @@ export default { }, "e_plugin_runtimes_on_conflict": { "constraint": [ - 940 + 967 ], "update_columns": [ - 954 + 981 ], "where": [ - 939 + 966 ], "__typename": [ 78 @@ -14387,10 +14971,10 @@ export default { }, "e_plugin_runtimes_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -14418,7 +15002,7 @@ export default { }, "e_plugin_runtimes_stream_cursor_input": { "initial_value": [ - 953 + 980 ], "ordering": [ 236 @@ -14441,10 +15025,10 @@ export default { "e_plugin_runtimes_update_column": {}, "e_plugin_runtimes_updates": { "_set": [ - 951 + 978 ], "where": [ - 939 + 966 ], "__typename": [ 78 @@ -14463,10 +15047,10 @@ export default { }, "e_ready_settings_aggregate": { "aggregate": [ - 958 + 985 ], "nodes": [ - 956 + 983 ], "__typename": [ 78 @@ -14477,7 +15061,7 @@ export default { 38, { "columns": [ - 970, + 997, "[e_ready_settings_select_column!]" ], "distinct": [ @@ -14486,10 +15070,10 @@ export default { } ], "max": [ - 964 + 991 ], "min": [ - 965 + 992 ], "__typename": [ 78 @@ -14497,13 +15081,13 @@ export default { }, "e_ready_settings_bool_exp": { "_and": [ - 959 + 986 ], "_not": [ - 959 + 986 ], "_or": [ - 959 + 986 ], "description": [ 80 @@ -14519,19 +15103,19 @@ export default { "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 961 + 988 ], "_in": [ - 961 + 988 ], "_is_null": [ 3 ], "_neq": [ - 961 + 988 ], "_nin": [ - 961 + 988 ], "__typename": [ 78 @@ -14575,7 +15159,7 @@ export default { 38 ], "returning": [ - 956 + 983 ], "__typename": [ 78 @@ -14583,13 +15167,13 @@ export default { }, "e_ready_settings_on_conflict": { "constraint": [ - 960 + 987 ], "update_columns": [ - 974 + 1001 ], "where": [ - 959 + 986 ], "__typename": [ 78 @@ -14597,10 +15181,10 @@ export default { }, "e_ready_settings_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -14628,7 +15212,7 @@ export default { }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 973 + 1000 ], "ordering": [ 236 @@ -14651,10 +15235,10 @@ export default { "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 971 + 998 ], "where": [ - 959 + 986 ], "__typename": [ 78 @@ -14673,10 +15257,10 @@ export default { }, "e_sanction_types_aggregate": { "aggregate": [ - 978 + 1005 ], "nodes": [ - 976 + 1003 ], "__typename": [ 78 @@ -14687,7 +15271,7 @@ export default { 38, { "columns": [ - 991, + 1018, "[e_sanction_types_select_column!]" ], "distinct": [ @@ -14696,10 +15280,10 @@ export default { } ], "max": [ - 984 + 1011 ], "min": [ - 985 + 1012 ], "__typename": [ 78 @@ -14707,13 +15291,13 @@ export default { }, "e_sanction_types_bool_exp": { "_and": [ - 979 + 1006 ], "_not": [ - 979 + 1006 ], "_or": [ - 979 + 1006 ], "description": [ 80 @@ -14729,19 +15313,19 @@ export default { "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 981 + 1008 ], "_in": [ - 981 + 1008 ], "_is_null": [ 3 ], "_neq": [ - 981 + 1008 ], "_nin": [ - 981 + 1008 ], "__typename": [ 78 @@ -14785,7 +15369,7 @@ export default { 38 ], "returning": [ - 976 + 1003 ], "__typename": [ 78 @@ -14793,10 +15377,10 @@ export default { }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 983 + 1010 ], "on_conflict": [ - 988 + 1015 ], "__typename": [ 78 @@ -14804,13 +15388,13 @@ export default { }, "e_sanction_types_on_conflict": { "constraint": [ - 980 + 1007 ], "update_columns": [ - 995 + 1022 ], "where": [ - 979 + 1006 ], "__typename": [ 78 @@ -14818,10 +15402,10 @@ export default { }, "e_sanction_types_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -14849,7 +15433,7 @@ export default { }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 994 + 1021 ], "ordering": [ 236 @@ -14872,10 +15456,10 @@ export default { "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 992 + 1019 ], "where": [ - 979 + 1006 ], "__typename": [ 78 @@ -14886,10 +15470,10 @@ export default { 78 ], "scrim_requests": [ - 4180, + 4228, { "distinct_on": [ - 4204, + 4252, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14899,19 +15483,19 @@ export default { 38 ], "order_by": [ - 4202, + 4250, "[team_scrim_requests_order_by!]" ], "where": [ - 4191 + 4239 ] } ], "scrim_requests_aggregate": [ - 4181, + 4229, { "distinct_on": [ - 4204, + 4252, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14921,11 +15505,11 @@ export default { 38 ], "order_by": [ - 4202, + 4250, "[team_scrim_requests_order_by!]" ], "where": [ - 4191 + 4239 ] } ], @@ -14938,10 +15522,10 @@ export default { }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 999 + 1026 ], "nodes": [ - 997 + 1024 ], "__typename": [ 78 @@ -14952,7 +15536,7 @@ export default { 38, { "columns": [ - 1011, + 1038, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ @@ -14961,10 +15545,10 @@ export default { } ], "max": [ - 1005 + 1032 ], "min": [ - 1006 + 1033 ], "__typename": [ 78 @@ -14972,22 +15556,22 @@ export default { }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 1000 + 1027 ], "_not": [ - 1000 + 1027 ], "_or": [ - 1000 + 1027 ], "description": [ 80 ], "scrim_requests": [ - 4191 + 4239 ], "scrim_requests_aggregate": [ - 4182 + 4230 ], "value": [ 80 @@ -15000,19 +15584,19 @@ export default { "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 1002 + 1029 ], "_in": [ - 1002 + 1029 ], "_is_null": [ 3 ], "_neq": [ - 1002 + 1029 ], "_nin": [ - 1002 + 1029 ], "__typename": [ 78 @@ -15023,7 +15607,7 @@ export default { 78 ], "scrim_requests": [ - 4188 + 4236 ], "value": [ 78 @@ -15059,7 +15643,7 @@ export default { 38 ], "returning": [ - 997 + 1024 ], "__typename": [ 78 @@ -15067,13 +15651,13 @@ export default { }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 1001 + 1028 ], "update_columns": [ - 1015 + 1042 ], "where": [ - 1000 + 1027 ], "__typename": [ 78 @@ -15081,13 +15665,13 @@ export default { }, "e_scrim_request_statuses_order_by": { "description": [ - 2781 + 2829 ], "scrim_requests_aggregate": [ - 4187 + 4235 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -15115,7 +15699,7 @@ export default { }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 1014 + 1041 ], "ordering": [ 236 @@ -15138,10 +15722,10 @@ export default { "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 1012 + 1039 ], "where": [ - 1000 + 1027 ], "__typename": [ 78 @@ -15152,10 +15736,10 @@ export default { 78 ], "servers": [ - 3853, + 3901, { "distinct_on": [ - 3877, + 3925, "[servers_select_column!]" ], "limit": [ @@ -15165,19 +15749,19 @@ export default { 38 ], "order_by": [ - 3875, + 3923, "[servers_order_by!]" ], "where": [ - 3864 + 3912 ] } ], "servers_aggregate": [ - 3854, + 3902, { "distinct_on": [ - 3877, + 3925, "[servers_select_column!]" ], "limit": [ @@ -15187,11 +15771,11 @@ export default { 38 ], "order_by": [ - 3875, + 3923, "[servers_order_by!]" ], "where": [ - 3864 + 3912 ] } ], @@ -15204,10 +15788,10 @@ export default { }, "e_server_types_aggregate": { "aggregate": [ - 1019 + 1046 ], "nodes": [ - 1017 + 1044 ], "__typename": [ 78 @@ -15218,7 +15802,7 @@ export default { 38, { "columns": [ - 1031, + 1058, "[e_server_types_select_column!]" ], "distinct": [ @@ -15227,10 +15811,10 @@ export default { } ], "max": [ - 1025 + 1052 ], "min": [ - 1026 + 1053 ], "__typename": [ 78 @@ -15238,22 +15822,22 @@ export default { }, "e_server_types_bool_exp": { "_and": [ - 1020 + 1047 ], "_not": [ - 1020 + 1047 ], "_or": [ - 1020 + 1047 ], "description": [ 80 ], "servers": [ - 3864 + 3912 ], "servers_aggregate": [ - 3855 + 3903 ], "value": [ 80 @@ -15266,19 +15850,19 @@ export default { "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 1022 + 1049 ], "_in": [ - 1022 + 1049 ], "_is_null": [ 3 ], "_neq": [ - 1022 + 1049 ], "_nin": [ - 1022 + 1049 ], "__typename": [ 78 @@ -15289,7 +15873,7 @@ export default { 78 ], "servers": [ - 3861 + 3909 ], "value": [ 78 @@ -15325,7 +15909,7 @@ export default { 38 ], "returning": [ - 1017 + 1044 ], "__typename": [ 78 @@ -15333,13 +15917,13 @@ export default { }, "e_server_types_on_conflict": { "constraint": [ - 1021 + 1048 ], "update_columns": [ - 1035 + 1062 ], "where": [ - 1020 + 1047 ], "__typename": [ 78 @@ -15347,13 +15931,13 @@ export default { }, "e_server_types_order_by": { "description": [ - 2781 + 2829 ], "servers_aggregate": [ - 3860 + 3908 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -15381,7 +15965,7 @@ export default { }, "e_server_types_stream_cursor_input": { "initial_value": [ - 1034 + 1061 ], "ordering": [ 236 @@ -15404,10 +15988,10 @@ export default { "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 1032 + 1059 ], "where": [ - 1020 + 1047 ], "__typename": [ 78 @@ -15418,10 +16002,10 @@ export default { 78 ], "match_map_lineup_1": [ - 2434, + 2482, { "distinct_on": [ - 2456, + 2504, "[match_maps_select_column!]" ], "limit": [ @@ -15431,19 +16015,19 @@ export default { 38 ], "order_by": [ - 2454, + 2502, "[match_maps_order_by!]" ], "where": [ - 2443 + 2491 ] } ], "match_map_lineup_1_aggregate": [ - 2435, + 2483, { "distinct_on": [ - 2456, + 2504, "[match_maps_select_column!]" ], "limit": [ @@ -15453,19 +16037,19 @@ export default { 38 ], "order_by": [ - 2454, + 2502, "[match_maps_order_by!]" ], "where": [ - 2443 + 2491 ] } ], "match_map_lineup_2": [ - 2434, + 2482, { "distinct_on": [ - 2456, + 2504, "[match_maps_select_column!]" ], "limit": [ @@ -15475,19 +16059,19 @@ export default { 38 ], "order_by": [ - 2454, + 2502, "[match_maps_order_by!]" ], "where": [ - 2443 + 2491 ] } ], "match_map_lineup_2_aggregate": [ - 2435, + 2483, { "distinct_on": [ - 2456, + 2504, "[match_maps_select_column!]" ], "limit": [ @@ -15497,11 +16081,11 @@ export default { 38 ], "order_by": [ - 2454, + 2502, "[match_maps_order_by!]" ], "where": [ - 2443 + 2491 ] } ], @@ -15514,10 +16098,10 @@ export default { }, "e_sides_aggregate": { "aggregate": [ - 1039 + 1066 ], "nodes": [ - 1037 + 1064 ], "__typename": [ 78 @@ -15528,7 +16112,7 @@ export default { 38, { "columns": [ - 1051, + 1078, "[e_sides_select_column!]" ], "distinct": [ @@ -15537,10 +16121,10 @@ export default { } ], "max": [ - 1045 + 1072 ], "min": [ - 1046 + 1073 ], "__typename": [ 78 @@ -15548,28 +16132,28 @@ export default { }, "e_sides_bool_exp": { "_and": [ - 1040 + 1067 ], "_not": [ - 1040 + 1067 ], "_or": [ - 1040 + 1067 ], "description": [ 80 ], "match_map_lineup_1": [ - 2443 + 2491 ], "match_map_lineup_1_aggregate": [ - 2436 + 2484 ], "match_map_lineup_2": [ - 2443 + 2491 ], "match_map_lineup_2_aggregate": [ - 2436 + 2484 ], "value": [ 80 @@ -15582,19 +16166,19 @@ export default { "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 1042 + 1069 ], "_in": [ - 1042 + 1069 ], "_is_null": [ 3 ], "_neq": [ - 1042 + 1069 ], "_nin": [ - 1042 + 1069 ], "__typename": [ 78 @@ -15605,10 +16189,10 @@ export default { 78 ], "match_map_lineup_1": [ - 2440 + 2488 ], "match_map_lineup_2": [ - 2440 + 2488 ], "value": [ 78 @@ -15644,7 +16228,7 @@ export default { 38 ], "returning": [ - 1037 + 1064 ], "__typename": [ 78 @@ -15652,13 +16236,13 @@ export default { }, "e_sides_on_conflict": { "constraint": [ - 1041 + 1068 ], "update_columns": [ - 1055 + 1082 ], "where": [ - 1040 + 1067 ], "__typename": [ 78 @@ -15666,16 +16250,16 @@ export default { }, "e_sides_order_by": { "description": [ - 2781 + 2829 ], "match_map_lineup_1_aggregate": [ - 2439 + 2487 ], "match_map_lineup_2_aggregate": [ - 2439 + 2487 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -15703,7 +16287,7 @@ export default { }, "e_sides_stream_cursor_input": { "initial_value": [ - 1054 + 1081 ], "ordering": [ 236 @@ -15726,10 +16310,10 @@ export default { "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 1052 + 1079 ], "where": [ - 1040 + 1067 ], "__typename": [ 78 @@ -15748,10 +16332,10 @@ export default { }, "e_system_alert_types_aggregate": { "aggregate": [ - 1059 + 1086 ], "nodes": [ - 1057 + 1084 ], "__typename": [ 78 @@ -15762,7 +16346,7 @@ export default { 38, { "columns": [ - 1071, + 1098, "[e_system_alert_types_select_column!]" ], "distinct": [ @@ -15771,10 +16355,10 @@ export default { } ], "max": [ - 1065 + 1092 ], "min": [ - 1066 + 1093 ], "__typename": [ 78 @@ -15782,13 +16366,13 @@ export default { }, "e_system_alert_types_bool_exp": { "_and": [ - 1060 + 1087 ], "_not": [ - 1060 + 1087 ], "_or": [ - 1060 + 1087 ], "description": [ 80 @@ -15804,19 +16388,19 @@ export default { "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 1062 + 1089 ], "_in": [ - 1062 + 1089 ], "_is_null": [ 3 ], "_neq": [ - 1062 + 1089 ], "_nin": [ - 1062 + 1089 ], "__typename": [ 78 @@ -15860,7 +16444,7 @@ export default { 38 ], "returning": [ - 1057 + 1084 ], "__typename": [ 78 @@ -15868,13 +16452,13 @@ export default { }, "e_system_alert_types_on_conflict": { "constraint": [ - 1061 + 1088 ], "update_columns": [ - 1075 + 1102 ], "where": [ - 1060 + 1087 ], "__typename": [ 78 @@ -15882,10 +16466,10 @@ export default { }, "e_system_alert_types_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -15913,7 +16497,7 @@ export default { }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 1074 + 1101 ], "ordering": [ 236 @@ -15936,10 +16520,10 @@ export default { "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 1072 + 1099 ], "where": [ - 1060 + 1087 ], "__typename": [ 78 @@ -15950,10 +16534,10 @@ export default { 78 ], "team_rosters": [ - 4039, + 4087, { "distinct_on": [ - 4062, + 4110, "[team_roster_select_column!]" ], "limit": [ @@ -15963,19 +16547,19 @@ export default { 38 ], "order_by": [ - 4060, + 4108, "[team_roster_order_by!]" ], "where": [ - 4050 + 4098 ] } ], "team_rosters_aggregate": [ - 4040, + 4088, { "distinct_on": [ - 4062, + 4110, "[team_roster_select_column!]" ], "limit": [ @@ -15985,19 +16569,19 @@ export default { 38 ], "order_by": [ - 4060, + 4108, "[team_roster_order_by!]" ], "where": [ - 4050 + 4098 ] } ], "tournament_team_rosters": [ - 4546, + 4687, { "distinct_on": [ - 4567, + 4708, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -16007,19 +16591,19 @@ export default { 38 ], "order_by": [ - 4565, + 4706, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4696 ] } ], "tournament_team_rosters_aggregate": [ - 4547, + 4688, { "distinct_on": [ - 4567, + 4708, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -16029,11 +16613,11 @@ export default { 38 ], "order_by": [ - 4565, + 4706, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4696 ] } ], @@ -16046,10 +16630,10 @@ export default { }, "e_team_roles_aggregate": { "aggregate": [ - 1079 + 1106 ], "nodes": [ - 1077 + 1104 ], "__typename": [ 78 @@ -16060,7 +16644,7 @@ export default { 38, { "columns": [ - 1092, + 1119, "[e_team_roles_select_column!]" ], "distinct": [ @@ -16069,10 +16653,10 @@ export default { } ], "max": [ - 1085 + 1112 ], "min": [ - 1086 + 1113 ], "__typename": [ 78 @@ -16080,28 +16664,28 @@ export default { }, "e_team_roles_bool_exp": { "_and": [ - 1080 + 1107 ], "_not": [ - 1080 + 1107 ], "_or": [ - 1080 + 1107 ], "description": [ 80 ], "team_rosters": [ - 4050 + 4098 ], "team_rosters_aggregate": [ - 4041 + 4089 ], "tournament_team_rosters": [ - 4555 + 4696 ], "tournament_team_rosters_aggregate": [ - 4548 + 4689 ], "value": [ 80 @@ -16114,19 +16698,19 @@ export default { "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 1082 + 1109 ], "_in": [ - 1082 + 1109 ], "_is_null": [ 3 ], "_neq": [ - 1082 + 1109 ], "_nin": [ - 1082 + 1109 ], "__typename": [ 78 @@ -16137,10 +16721,10 @@ export default { 78 ], "team_rosters": [ - 4047 + 4095 ], "tournament_team_rosters": [ - 4552 + 4693 ], "value": [ 78 @@ -16176,7 +16760,7 @@ export default { 38 ], "returning": [ - 1077 + 1104 ], "__typename": [ 78 @@ -16184,10 +16768,10 @@ export default { }, "e_team_roles_obj_rel_insert_input": { "data": [ - 1084 + 1111 ], "on_conflict": [ - 1089 + 1116 ], "__typename": [ 78 @@ -16195,13 +16779,13 @@ export default { }, "e_team_roles_on_conflict": { "constraint": [ - 1081 + 1108 ], "update_columns": [ - 1096 + 1123 ], "where": [ - 1080 + 1107 ], "__typename": [ 78 @@ -16209,16 +16793,16 @@ export default { }, "e_team_roles_order_by": { "description": [ - 2781 + 2829 ], "team_rosters_aggregate": [ - 4046 + 4094 ], "tournament_team_rosters_aggregate": [ - 4551 + 4692 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -16246,7 +16830,7 @@ export default { }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 1095 + 1122 ], "ordering": [ 236 @@ -16269,10 +16853,10 @@ export default { "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 1093 + 1120 ], "where": [ - 1080 + 1107 ], "__typename": [ 78 @@ -16291,10 +16875,10 @@ export default { }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 1100 + 1127 ], "nodes": [ - 1098 + 1125 ], "__typename": [ 78 @@ -16305,7 +16889,7 @@ export default { 38, { "columns": [ - 1112, + 1139, "[e_team_roster_statuses_select_column!]" ], "distinct": [ @@ -16314,10 +16898,10 @@ export default { } ], "max": [ - 1106 + 1133 ], "min": [ - 1107 + 1134 ], "__typename": [ 78 @@ -16325,13 +16909,13 @@ export default { }, "e_team_roster_statuses_bool_exp": { "_and": [ - 1101 + 1128 ], "_not": [ - 1101 + 1128 ], "_or": [ - 1101 + 1128 ], "description": [ 80 @@ -16347,19 +16931,19 @@ export default { "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 1103 + 1130 ], "_in": [ - 1103 + 1130 ], "_is_null": [ 3 ], "_neq": [ - 1103 + 1130 ], "_nin": [ - 1103 + 1130 ], "__typename": [ 78 @@ -16403,7 +16987,7 @@ export default { 38 ], "returning": [ - 1098 + 1125 ], "__typename": [ 78 @@ -16411,13 +16995,13 @@ export default { }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 1102 + 1129 ], "update_columns": [ - 1116 + 1143 ], "where": [ - 1101 + 1128 ], "__typename": [ 78 @@ -16425,10 +17009,10 @@ export default { }, "e_team_roster_statuses_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -16456,7 +17040,7 @@ export default { }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 1115 + 1142 ], "ordering": [ 236 @@ -16479,10 +17063,10 @@ export default { "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 1113 + 1140 ], "where": [ - 1101 + 1128 ], "__typename": [ 78 @@ -16501,10 +17085,10 @@ export default { }, "e_timeout_settings_aggregate": { "aggregate": [ - 1120 + 1147 ], "nodes": [ - 1118 + 1145 ], "__typename": [ 78 @@ -16515,7 +17099,7 @@ export default { 38, { "columns": [ - 1132, + 1159, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -16524,10 +17108,10 @@ export default { } ], "max": [ - 1126 + 1153 ], "min": [ - 1127 + 1154 ], "__typename": [ 78 @@ -16535,13 +17119,13 @@ export default { }, "e_timeout_settings_bool_exp": { "_and": [ - 1121 + 1148 ], "_not": [ - 1121 + 1148 ], "_or": [ - 1121 + 1148 ], "description": [ 80 @@ -16557,19 +17141,19 @@ export default { "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 1123 + 1150 ], "_in": [ - 1123 + 1150 ], "_is_null": [ 3 ], "_neq": [ - 1123 + 1150 ], "_nin": [ - 1123 + 1150 ], "__typename": [ 78 @@ -16613,7 +17197,7 @@ export default { 38 ], "returning": [ - 1118 + 1145 ], "__typename": [ 78 @@ -16621,13 +17205,13 @@ export default { }, "e_timeout_settings_on_conflict": { "constraint": [ - 1122 + 1149 ], "update_columns": [ - 1136 + 1163 ], "where": [ - 1121 + 1148 ], "__typename": [ 78 @@ -16635,10 +17219,10 @@ export default { }, "e_timeout_settings_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -16666,7 +17250,7 @@ export default { }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 1135 + 1162 ], "ordering": [ 236 @@ -16689,10 +17273,287 @@ export default { "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 1133 + 1160 + ], + "where": [ + 1148 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories": { + "description": [ + 78 + ], + "tournament_categories": [ + 4424, + { + "distinct_on": [ + 4442, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4440, + "[tournament_categories_order_by!]" + ], + "where": [ + 4431 + ] + } + ], + "tournament_categories_aggregate": [ + 4425, + { + "distinct_on": [ + 4442, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4440, + "[tournament_categories_order_by!]" + ], + "where": [ + 4431 + ] + } + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_aggregate": { + "aggregate": [ + 1167 + ], + "nodes": [ + 1165 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_aggregate_fields": { + "count": [ + 38, + { + "columns": [ + 1180, + "[e_tournament_categories_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 1173 + ], + "min": [ + 1174 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_bool_exp": { + "_and": [ + 1168 + ], + "_not": [ + 1168 + ], + "_or": [ + 1168 + ], + "description": [ + 80 + ], + "tournament_categories": [ + 4431 + ], + "tournament_categories_aggregate": [ + 4426 + ], + "value": [ + 80 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_constraint": {}, + "e_tournament_categories_enum": {}, + "e_tournament_categories_enum_comparison_exp": { + "_eq": [ + 1170 + ], + "_in": [ + 1170 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 1170 + ], + "_nin": [ + 1170 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_insert_input": { + "description": [ + 78 + ], + "tournament_categories": [ + 4430 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_max_fields": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_min_fields": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 1165 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_obj_rel_insert_input": { + "data": [ + 1172 + ], + "on_conflict": [ + 1177 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_on_conflict": { + "constraint": [ + 1169 + ], + "update_columns": [ + 1184 + ], + "where": [ + 1168 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_order_by": { + "description": [ + 2829 + ], + "tournament_categories_aggregate": [ + 4429 + ], + "value": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_pk_columns_input": { + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_select_column": {}, + "e_tournament_categories_set_input": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_stream_cursor_input": { + "initial_value": [ + 1183 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_stream_cursor_value_input": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_update_column": {}, + "e_tournament_categories_updates": { + "_set": [ + 1181 ], "where": [ - 1121 + 1168 ], "__typename": [ 78 @@ -16703,10 +17564,10 @@ export default { 78 ], "tournament_stages": [ - 4454, + 4595, { "distinct_on": [ - 4483, + 4624, "[tournament_stages_select_column!]" ], "limit": [ @@ -16716,19 +17577,19 @@ export default { 38 ], "order_by": [ - 4480, + 4621, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4607 ] } ], "tournament_stages_aggregate": [ - 4455, + 4596, { "distinct_on": [ - 4483, + 4624, "[tournament_stages_select_column!]" ], "limit": [ @@ -16738,11 +17599,11 @@ export default { 38 ], "order_by": [ - 4480, + 4621, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4607 ] } ], @@ -16755,10 +17616,10 @@ export default { }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 1140 + 1188 ], "nodes": [ - 1138 + 1186 ], "__typename": [ 78 @@ -16769,7 +17630,7 @@ export default { 38, { "columns": [ - 1153, + 1201, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -16778,10 +17639,10 @@ export default { } ], "max": [ - 1146 + 1194 ], "min": [ - 1147 + 1195 ], "__typename": [ 78 @@ -16789,22 +17650,22 @@ export default { }, "e_tournament_stage_types_bool_exp": { "_and": [ - 1141 + 1189 ], "_not": [ - 1141 + 1189 ], "_or": [ - 1141 + 1189 ], "description": [ 80 ], "tournament_stages": [ - 4466 + 4607 ], "tournament_stages_aggregate": [ - 4456 + 4597 ], "value": [ 80 @@ -16817,19 +17678,19 @@ export default { "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 1143 + 1191 ], "_in": [ - 1143 + 1191 ], "_is_null": [ 3 ], "_neq": [ - 1143 + 1191 ], "_nin": [ - 1143 + 1191 ], "__typename": [ 78 @@ -16840,7 +17701,7 @@ export default { 78 ], "tournament_stages": [ - 4463 + 4604 ], "value": [ 78 @@ -16876,7 +17737,7 @@ export default { 38 ], "returning": [ - 1138 + 1186 ], "__typename": [ 78 @@ -16884,10 +17745,10 @@ export default { }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 1145 + 1193 ], "on_conflict": [ - 1150 + 1198 ], "__typename": [ 78 @@ -16895,13 +17756,13 @@ export default { }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 1142 + 1190 ], "update_columns": [ - 1157 + 1205 ], "where": [ - 1141 + 1189 ], "__typename": [ 78 @@ -16909,13 +17770,13 @@ export default { }, "e_tournament_stage_types_order_by": { "description": [ - 2781 + 2829 ], "tournament_stages_aggregate": [ - 4461 + 4602 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -16943,7 +17804,7 @@ export default { }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1156 + 1204 ], "ordering": [ 236 @@ -16966,10 +17827,10 @@ export default { "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 1154 + 1202 ], "where": [ - 1141 + 1189 ], "__typename": [ 78 @@ -16980,10 +17841,10 @@ export default { 78 ], "tournaments": [ - 4716, + 4857, { "distinct_on": [ - 4740, + 4891, "[tournaments_select_column!]" ], "limit": [ @@ -16993,19 +17854,19 @@ export default { 38 ], "order_by": [ - 4738, + 4889, "[tournaments_order_by!]" ], "where": [ - 4727 + 4878 ] } ], "tournaments_aggregate": [ - 4717, + 4858, { "distinct_on": [ - 4740, + 4891, "[tournaments_select_column!]" ], "limit": [ @@ -17015,11 +17876,11 @@ export default { 38 ], "order_by": [ - 4738, + 4889, "[tournaments_order_by!]" ], "where": [ - 4727 + 4878 ] } ], @@ -17032,10 +17893,10 @@ export default { }, "e_tournament_status_aggregate": { "aggregate": [ - 1161 + 1209 ], "nodes": [ - 1159 + 1207 ], "__typename": [ 78 @@ -17046,7 +17907,7 @@ export default { 38, { "columns": [ - 1174, + 1222, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -17055,10 +17916,10 @@ export default { } ], "max": [ - 1167 + 1215 ], "min": [ - 1168 + 1216 ], "__typename": [ 78 @@ -17066,22 +17927,22 @@ export default { }, "e_tournament_status_bool_exp": { "_and": [ - 1162 + 1210 ], "_not": [ - 1162 + 1210 ], "_or": [ - 1162 + 1210 ], "description": [ 80 ], "tournaments": [ - 4727 + 4878 ], "tournaments_aggregate": [ - 4718 + 4859 ], "value": [ 80 @@ -17094,19 +17955,19 @@ export default { "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1164 + 1212 ], "_in": [ - 1164 + 1212 ], "_is_null": [ 3 ], "_neq": [ - 1164 + 1212 ], "_nin": [ - 1164 + 1212 ], "__typename": [ 78 @@ -17117,7 +17978,7 @@ export default { 78 ], "tournaments": [ - 4724 + 4875 ], "value": [ 78 @@ -17153,7 +18014,7 @@ export default { 38 ], "returning": [ - 1159 + 1207 ], "__typename": [ 78 @@ -17161,10 +18022,10 @@ export default { }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1166 + 1214 ], "on_conflict": [ - 1171 + 1219 ], "__typename": [ 78 @@ -17172,13 +18033,13 @@ export default { }, "e_tournament_status_on_conflict": { "constraint": [ - 1163 + 1211 ], "update_columns": [ - 1178 + 1226 ], "where": [ - 1162 + 1210 ], "__typename": [ 78 @@ -17186,13 +18047,13 @@ export default { }, "e_tournament_status_order_by": { "description": [ - 2781 + 2829 ], "tournaments_aggregate": [ - 4723 + 4874 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -17220,7 +18081,7 @@ export default { }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1177 + 1225 ], "ordering": [ 236 @@ -17243,10 +18104,10 @@ export default { "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1175 + 1223 ], "where": [ - 1162 + 1210 ], "__typename": [ 78 @@ -17257,10 +18118,10 @@ export default { 78 ], "player_utilities": [ - 3665, + 3713, { "distinct_on": [ - 3686, + 3734, "[player_utility_select_column!]" ], "limit": [ @@ -17270,19 +18131,19 @@ export default { 38 ], "order_by": [ - 3684, + 3732, "[player_utility_order_by!]" ], "where": [ - 3674 + 3722 ] } ], "player_utilities_aggregate": [ - 3666, + 3714, { "distinct_on": [ - 3686, + 3734, "[player_utility_select_column!]" ], "limit": [ @@ -17292,11 +18153,11 @@ export default { 38 ], "order_by": [ - 3684, + 3732, "[player_utility_order_by!]" ], "where": [ - 3674 + 3722 ] } ], @@ -17309,10 +18170,10 @@ export default { }, "e_utility_types_aggregate": { "aggregate": [ - 1182 + 1230 ], "nodes": [ - 1180 + 1228 ], "__typename": [ 78 @@ -17323,7 +18184,7 @@ export default { 38, { "columns": [ - 1194, + 1242, "[e_utility_types_select_column!]" ], "distinct": [ @@ -17332,10 +18193,10 @@ export default { } ], "max": [ - 1188 + 1236 ], "min": [ - 1189 + 1237 ], "__typename": [ 78 @@ -17343,22 +18204,22 @@ export default { }, "e_utility_types_bool_exp": { "_and": [ - 1183 + 1231 ], "_not": [ - 1183 + 1231 ], "_or": [ - 1183 + 1231 ], "description": [ 80 ], "player_utilities": [ - 3674 + 3722 ], "player_utilities_aggregate": [ - 3667 + 3715 ], "value": [ 80 @@ -17371,19 +18232,19 @@ export default { "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1185 + 1233 ], "_in": [ - 1185 + 1233 ], "_is_null": [ 3 ], "_neq": [ - 1185 + 1233 ], "_nin": [ - 1185 + 1233 ], "__typename": [ 78 @@ -17394,7 +18255,7 @@ export default { 78 ], "player_utilities": [ - 3671 + 3719 ], "value": [ 78 @@ -17430,7 +18291,7 @@ export default { 38 ], "returning": [ - 1180 + 1228 ], "__typename": [ 78 @@ -17438,13 +18299,13 @@ export default { }, "e_utility_types_on_conflict": { "constraint": [ - 1184 + 1232 ], "update_columns": [ - 1198 + 1246 ], "where": [ - 1183 + 1231 ], "__typename": [ 78 @@ -17452,13 +18313,13 @@ export default { }, "e_utility_types_order_by": { "description": [ - 2781 + 2829 ], "player_utilities_aggregate": [ - 3670 + 3718 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -17486,7 +18347,7 @@ export default { }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1197 + 1245 ], "ordering": [ 236 @@ -17509,10 +18370,10 @@ export default { "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1195 + 1243 ], "where": [ - 1183 + 1231 ], "__typename": [ 78 @@ -17523,10 +18384,10 @@ export default { 78 ], "match_veto_picks": [ - 2410, + 2458, { "distinct_on": [ - 2428, + 2476, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -17536,19 +18397,19 @@ export default { 38 ], "order_by": [ - 2426, + 2474, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2465 ] } ], "match_veto_picks_aggregate": [ - 2411, + 2459, { "distinct_on": [ - 2428, + 2476, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -17558,11 +18419,11 @@ export default { 38 ], "order_by": [ - 2426, + 2474, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2465 ] } ], @@ -17575,10 +18436,10 @@ export default { }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1202 + 1250 ], "nodes": [ - 1200 + 1248 ], "__typename": [ 78 @@ -17589,7 +18450,7 @@ export default { 38, { "columns": [ - 1214, + 1262, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -17598,10 +18459,10 @@ export default { } ], "max": [ - 1208 + 1256 ], "min": [ - 1209 + 1257 ], "__typename": [ 78 @@ -17609,22 +18470,22 @@ export default { }, "e_veto_pick_types_bool_exp": { "_and": [ - 1203 + 1251 ], "_not": [ - 1203 + 1251 ], "_or": [ - 1203 + 1251 ], "description": [ 80 ], "match_veto_picks": [ - 2417 + 2465 ], "match_veto_picks_aggregate": [ - 2412 + 2460 ], "value": [ 80 @@ -17637,19 +18498,19 @@ export default { "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1205 + 1253 ], "_in": [ - 1205 + 1253 ], "_is_null": [ 3 ], "_neq": [ - 1205 + 1253 ], "_nin": [ - 1205 + 1253 ], "__typename": [ 78 @@ -17660,7 +18521,7 @@ export default { 78 ], "match_veto_picks": [ - 2416 + 2464 ], "value": [ 78 @@ -17696,7 +18557,7 @@ export default { 38 ], "returning": [ - 1200 + 1248 ], "__typename": [ 78 @@ -17704,13 +18565,13 @@ export default { }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1204 + 1252 ], "update_columns": [ - 1218 + 1266 ], "where": [ - 1203 + 1251 ], "__typename": [ 78 @@ -17718,13 +18579,13 @@ export default { }, "e_veto_pick_types_order_by": { "description": [ - 2781 + 2829 ], "match_veto_picks_aggregate": [ - 2415 + 2463 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -17752,7 +18613,7 @@ export default { }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1217 + 1265 ], "ordering": [ 236 @@ -17775,10 +18636,10 @@ export default { "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1215 + 1263 ], "where": [ - 1203 + 1251 ], "__typename": [ 78 @@ -17797,10 +18658,10 @@ export default { }, "e_winning_reasons_aggregate": { "aggregate": [ - 1222 + 1270 ], "nodes": [ - 1220 + 1268 ], "__typename": [ 78 @@ -17811,7 +18672,7 @@ export default { 38, { "columns": [ - 1234, + 1282, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -17820,10 +18681,10 @@ export default { } ], "max": [ - 1228 + 1276 ], "min": [ - 1229 + 1277 ], "__typename": [ 78 @@ -17831,13 +18692,13 @@ export default { }, "e_winning_reasons_bool_exp": { "_and": [ - 1223 + 1271 ], "_not": [ - 1223 + 1271 ], "_or": [ - 1223 + 1271 ], "description": [ 80 @@ -17853,19 +18714,19 @@ export default { "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1225 + 1273 ], "_in": [ - 1225 + 1273 ], "_is_null": [ 3 ], "_neq": [ - 1225 + 1273 ], "_nin": [ - 1225 + 1273 ], "__typename": [ 78 @@ -17909,7 +18770,7 @@ export default { 38 ], "returning": [ - 1220 + 1268 ], "__typename": [ 78 @@ -17917,13 +18778,13 @@ export default { }, "e_winning_reasons_on_conflict": { "constraint": [ - 1224 + 1272 ], "update_columns": [ - 1238 + 1286 ], "where": [ - 1223 + 1271 ], "__typename": [ 78 @@ -17931,10 +18792,10 @@ export default { }, "e_winning_reasons_order_by": { "description": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -17962,7 +18823,7 @@ export default { }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1237 + 1285 ], "ordering": [ 236 @@ -17985,10 +18846,10 @@ export default { "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1235 + 1283 ], "where": [ - 1223 + 1271 ], "__typename": [ 78 @@ -17996,19 +18857,19 @@ export default { }, "event_match_links": { "created_at": [ - 4324 + 4376 ], "event": [ - 1471 + 1519 ], "event_id": [ - 4762 + 4921 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -18016,10 +18877,10 @@ export default { }, "event_match_links_aggregate": { "aggregate": [ - 1242 + 1290 ], "nodes": [ - 1240 + 1288 ], "__typename": [ 78 @@ -18030,7 +18891,7 @@ export default { 38, { "columns": [ - 1252, + 1300, "[event_match_links_select_column!]" ], "distinct": [ @@ -18039,10 +18900,10 @@ export default { } ], "max": [ - 1246 + 1294 ], "min": [ - 1247 + 1295 ], "__typename": [ 78 @@ -18050,28 +18911,28 @@ export default { }, "event_match_links_bool_exp": { "_and": [ - 1243 + 1291 ], "_not": [ - 1243 + 1291 ], "_or": [ - 1243 + 1291 ], "created_at": [ - 4325 + 4377 ], "event": [ - 1475 + 1523 ], "event_id": [ - 4764 + 4923 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -18080,19 +18941,19 @@ export default { "event_match_links_constraint": {}, "event_match_links_insert_input": { "created_at": [ - 4324 + 4376 ], "event": [ - 1482 + 1530 ], "event_id": [ - 4762 + 4921 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -18100,13 +18961,13 @@ export default { }, "event_match_links_max_fields": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -18114,13 +18975,13 @@ export default { }, "event_match_links_min_fields": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -18131,7 +18992,7 @@ export default { 38 ], "returning": [ - 1240 + 1288 ], "__typename": [ 78 @@ -18139,13 +19000,13 @@ export default { }, "event_match_links_on_conflict": { "constraint": [ - 1244 + 1292 ], "update_columns": [ - 1256 + 1304 ], "where": [ - 1243 + 1291 ], "__typename": [ 78 @@ -18153,19 +19014,19 @@ export default { }, "event_match_links_order_by": { "created_at": [ - 2781 + 2829 ], "event": [ - 1484 + 1532 ], "event_id": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -18173,10 +19034,10 @@ export default { }, "event_match_links_pk_columns_input": { "event_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -18185,13 +19046,13 @@ export default { "event_match_links_select_column": {}, "event_match_links_set_input": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -18199,7 +19060,7 @@ export default { }, "event_match_links_stream_cursor_input": { "initial_value": [ - 1255 + 1303 ], "ordering": [ 236 @@ -18210,13 +19071,13 @@ export default { }, "event_match_links_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -18225,10 +19086,10 @@ export default { "event_match_links_update_column": {}, "event_match_links_updates": { "_set": [ - 1253 + 1301 ], "where": [ - 1243 + 1291 ], "__typename": [ 78 @@ -18236,13 +19097,13 @@ export default { }, "event_media": { "created_at": [ - 4324 + 4376 ], "event": [ - 1471 + 1519 ], "event_id": [ - 4762 + 4921 ], "external_url": [ 78 @@ -18251,16 +19112,16 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "mime_type": [ 78 ], "players": [ - 1280, + 1328, { "distinct_on": [ - 1301, + 1349, "[event_media_players_select_column!]" ], "limit": [ @@ -18270,19 +19131,19 @@ export default { 38 ], "order_by": [ - 1299, + 1347, "[event_media_players_order_by!]" ], "where": [ - 1289 + 1337 ] } ], "players_aggregate": [ - 1281, + 1329, { "distinct_on": [ - 1301, + 1349, "[event_media_players_select_column!]" ], "limit": [ @@ -18292,11 +19153,11 @@ export default { 38 ], "order_by": [ - 1299, + 1347, "[event_media_players_order_by!]" ], "where": [ - 1289 + 1337 ] } ], @@ -18310,7 +19171,7 @@ export default { 78 ], "uploader": [ - 3739 + 3787 ], "uploader_steam_id": [ 180 @@ -18321,10 +19182,10 @@ export default { }, "event_media_aggregate": { "aggregate": [ - 1262 + 1310 ], "nodes": [ - 1258 + 1306 ], "__typename": [ 78 @@ -18332,7 +19193,7 @@ export default { }, "event_media_aggregate_bool_exp": { "count": [ - 1261 + 1309 ], "__typename": [ 78 @@ -18340,13 +19201,13 @@ export default { }, "event_media_aggregate_bool_exp_count": { "arguments": [ - 1321 + 1369 ], "distinct": [ 3 ], "filter": [ - 1267 + 1315 ], "predicate": [ 39 @@ -18357,13 +19218,13 @@ export default { }, "event_media_aggregate_fields": { "avg": [ - 1265 + 1313 ], "count": [ 38, { "columns": [ - 1321, + 1369, "[event_media_select_column!]" ], "distinct": [ @@ -18372,31 +19233,31 @@ export default { } ], "max": [ - 1271 + 1319 ], "min": [ - 1273 + 1321 ], "stddev": [ - 1323 + 1371 ], "stddev_pop": [ - 1325 + 1373 ], "stddev_samp": [ - 1327 + 1375 ], "sum": [ - 1331 + 1379 ], "var_pop": [ - 1335 + 1383 ], "var_samp": [ - 1337 + 1385 ], "variance": [ - 1339 + 1387 ], "__typename": [ 78 @@ -18404,37 +19265,37 @@ export default { }, "event_media_aggregate_order_by": { "avg": [ - 1266 + 1314 ], "count": [ - 2781 + 2829 ], "max": [ - 1272 + 1320 ], "min": [ - 1274 + 1322 ], "stddev": [ - 1324 + 1372 ], "stddev_pop": [ - 1326 + 1374 ], "stddev_samp": [ - 1328 + 1376 ], "sum": [ - 1332 + 1380 ], "var_pop": [ - 1336 + 1384 ], "var_samp": [ - 1338 + 1386 ], "variance": [ - 1340 + 1388 ], "__typename": [ 78 @@ -18442,10 +19303,10 @@ export default { }, "event_media_arr_rel_insert_input": { "data": [ - 1270 + 1318 ], "on_conflict": [ - 1277 + 1325 ], "__typename": [ 78 @@ -18464,10 +19325,10 @@ export default { }, "event_media_avg_order_by": { "size": [ - 2781 + 2829 ], "uploader_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -18475,22 +19336,22 @@ export default { }, "event_media_bool_exp": { "_and": [ - 1267 + 1315 ], "_not": [ - 1267 + 1315 ], "_or": [ - 1267 + 1315 ], "created_at": [ - 4325 + 4377 ], "event": [ - 1475 + 1523 ], "event_id": [ - 4764 + 4923 ], "external_url": [ 80 @@ -18499,16 +19360,16 @@ export default { 80 ], "id": [ - 4764 + 4923 ], "mime_type": [ 80 ], "players": [ - 1289 + 1337 ], "players_aggregate": [ - 1282 + 1330 ], "size": [ 182 @@ -18520,7 +19381,7 @@ export default { 80 ], "uploader": [ - 3743 + 3791 ], "uploader_steam_id": [ 182 @@ -18543,13 +19404,13 @@ export default { }, "event_media_insert_input": { "created_at": [ - 4324 + 4376 ], "event": [ - 1482 + 1530 ], "event_id": [ - 4762 + 4921 ], "external_url": [ 78 @@ -18558,13 +19419,13 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "mime_type": [ 78 ], "players": [ - 1286 + 1334 ], "size": [ 180 @@ -18576,7 +19437,7 @@ export default { 78 ], "uploader": [ - 3750 + 3798 ], "uploader_steam_id": [ 180 @@ -18587,10 +19448,10 @@ export default { }, "event_media_max_fields": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "external_url": [ 78 @@ -18599,7 +19460,7 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "mime_type": [ 78 @@ -18622,34 +19483,34 @@ export default { }, "event_media_max_order_by": { "created_at": [ - 2781 + 2829 ], "event_id": [ - 2781 + 2829 ], "external_url": [ - 2781 + 2829 ], "filename": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "mime_type": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "thumbnail_filename": [ - 2781 + 2829 ], "title": [ - 2781 + 2829 ], "uploader_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -18657,10 +19518,10 @@ export default { }, "event_media_min_fields": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "external_url": [ 78 @@ -18669,7 +19530,7 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "mime_type": [ 78 @@ -18692,34 +19553,34 @@ export default { }, "event_media_min_order_by": { "created_at": [ - 2781 + 2829 ], "event_id": [ - 2781 + 2829 ], "external_url": [ - 2781 + 2829 ], "filename": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "mime_type": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "thumbnail_filename": [ - 2781 + 2829 ], "title": [ - 2781 + 2829 ], "uploader_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -18730,7 +19591,7 @@ export default { 38 ], "returning": [ - 1258 + 1306 ], "__typename": [ 78 @@ -18738,10 +19599,10 @@ export default { }, "event_media_obj_rel_insert_input": { "data": [ - 1270 + 1318 ], "on_conflict": [ - 1277 + 1325 ], "__typename": [ 78 @@ -18749,13 +19610,13 @@ export default { }, "event_media_on_conflict": { "constraint": [ - 1268 + 1316 ], "update_columns": [ - 1333 + 1381 ], "where": [ - 1267 + 1315 ], "__typename": [ 78 @@ -18763,43 +19624,43 @@ export default { }, "event_media_order_by": { "created_at": [ - 2781 + 2829 ], "event": [ - 1484 + 1532 ], "event_id": [ - 2781 + 2829 ], "external_url": [ - 2781 + 2829 ], "filename": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "mime_type": [ - 2781 + 2829 ], "players_aggregate": [ - 1285 + 1333 ], "size": [ - 2781 + 2829 ], "thumbnail_filename": [ - 2781 + 2829 ], "title": [ - 2781 + 2829 ], "uploader": [ - 3752 + 3800 ], "uploader_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -18807,7 +19668,7 @@ export default { }, "event_media_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -18815,16 +19676,16 @@ export default { }, "event_media_players": { "created_at": [ - 4324 + 4376 ], "media": [ - 1258 + 1306 ], "media_id": [ - 4762 + 4921 ], "player": [ - 3739 + 3787 ], "steam_id": [ 180 @@ -18835,10 +19696,10 @@ export default { }, "event_media_players_aggregate": { "aggregate": [ - 1284 + 1332 ], "nodes": [ - 1280 + 1328 ], "__typename": [ 78 @@ -18846,7 +19707,7 @@ export default { }, "event_media_players_aggregate_bool_exp": { "count": [ - 1283 + 1331 ], "__typename": [ 78 @@ -18854,13 +19715,13 @@ export default { }, "event_media_players_aggregate_bool_exp_count": { "arguments": [ - 1301 + 1349 ], "distinct": [ 3 ], "filter": [ - 1289 + 1337 ], "predicate": [ 39 @@ -18871,13 +19732,13 @@ export default { }, "event_media_players_aggregate_fields": { "avg": [ - 1287 + 1335 ], "count": [ 38, { "columns": [ - 1301, + 1349, "[event_media_players_select_column!]" ], "distinct": [ @@ -18886,31 +19747,31 @@ export default { } ], "max": [ - 1293 + 1341 ], "min": [ - 1295 + 1343 ], "stddev": [ - 1303 + 1351 ], "stddev_pop": [ - 1305 + 1353 ], "stddev_samp": [ - 1307 + 1355 ], "sum": [ - 1311 + 1359 ], "var_pop": [ - 1315 + 1363 ], "var_samp": [ - 1317 + 1365 ], "variance": [ - 1319 + 1367 ], "__typename": [ 78 @@ -18918,37 +19779,37 @@ export default { }, "event_media_players_aggregate_order_by": { "avg": [ - 1288 + 1336 ], "count": [ - 2781 + 2829 ], "max": [ - 1294 + 1342 ], "min": [ - 1296 + 1344 ], "stddev": [ - 1304 + 1352 ], "stddev_pop": [ - 1306 + 1354 ], "stddev_samp": [ - 1308 + 1356 ], "sum": [ - 1312 + 1360 ], "var_pop": [ - 1316 + 1364 ], "var_samp": [ - 1318 + 1366 ], "variance": [ - 1320 + 1368 ], "__typename": [ 78 @@ -18956,10 +19817,10 @@ export default { }, "event_media_players_arr_rel_insert_input": { "data": [ - 1292 + 1340 ], "on_conflict": [ - 1298 + 1346 ], "__typename": [ 78 @@ -18975,7 +19836,7 @@ export default { }, "event_media_players_avg_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -18983,25 +19844,25 @@ export default { }, "event_media_players_bool_exp": { "_and": [ - 1289 + 1337 ], "_not": [ - 1289 + 1337 ], "_or": [ - 1289 + 1337 ], "created_at": [ - 4325 + 4377 ], "media": [ - 1267 + 1315 ], "media_id": [ - 4764 + 4923 ], "player": [ - 3743 + 3791 ], "steam_id": [ 182 @@ -19021,16 +19882,16 @@ export default { }, "event_media_players_insert_input": { "created_at": [ - 4324 + 4376 ], "media": [ - 1276 + 1324 ], "media_id": [ - 4762 + 4921 ], "player": [ - 3750 + 3798 ], "steam_id": [ 180 @@ -19041,10 +19902,10 @@ export default { }, "event_media_players_max_fields": { "created_at": [ - 4324 + 4376 ], "media_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -19055,13 +19916,13 @@ export default { }, "event_media_players_max_order_by": { "created_at": [ - 2781 + 2829 ], "media_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19069,10 +19930,10 @@ export default { }, "event_media_players_min_fields": { "created_at": [ - 4324 + 4376 ], "media_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -19083,13 +19944,13 @@ export default { }, "event_media_players_min_order_by": { "created_at": [ - 2781 + 2829 ], "media_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19100,7 +19961,7 @@ export default { 38 ], "returning": [ - 1280 + 1328 ], "__typename": [ 78 @@ -19108,13 +19969,13 @@ export default { }, "event_media_players_on_conflict": { "constraint": [ - 1290 + 1338 ], "update_columns": [ - 1313 + 1361 ], "where": [ - 1289 + 1337 ], "__typename": [ 78 @@ -19122,19 +19983,19 @@ export default { }, "event_media_players_order_by": { "created_at": [ - 2781 + 2829 ], "media": [ - 1278 + 1326 ], "media_id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19142,7 +20003,7 @@ export default { }, "event_media_players_pk_columns_input": { "media_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -19154,10 +20015,10 @@ export default { "event_media_players_select_column": {}, "event_media_players_set_input": { "created_at": [ - 4324 + 4376 ], "media_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -19176,7 +20037,7 @@ export default { }, "event_media_players_stddev_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19192,7 +20053,7 @@ export default { }, "event_media_players_stddev_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19208,7 +20069,7 @@ export default { }, "event_media_players_stddev_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19216,7 +20077,7 @@ export default { }, "event_media_players_stream_cursor_input": { "initial_value": [ - 1310 + 1358 ], "ordering": [ 236 @@ -19227,10 +20088,10 @@ export default { }, "event_media_players_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "media_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -19249,7 +20110,7 @@ export default { }, "event_media_players_sum_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19258,13 +20119,13 @@ export default { "event_media_players_update_column": {}, "event_media_players_updates": { "_inc": [ - 1291 + 1339 ], "_set": [ - 1302 + 1350 ], "where": [ - 1289 + 1337 ], "__typename": [ 78 @@ -19280,7 +20141,7 @@ export default { }, "event_media_players_var_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19296,7 +20157,7 @@ export default { }, "event_media_players_var_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19312,7 +20173,7 @@ export default { }, "event_media_players_variance_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19321,10 +20182,10 @@ export default { "event_media_select_column": {}, "event_media_set_input": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "external_url": [ 78 @@ -19333,7 +20194,7 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "mime_type": [ 78 @@ -19367,10 +20228,10 @@ export default { }, "event_media_stddev_order_by": { "size": [ - 2781 + 2829 ], "uploader_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19389,10 +20250,10 @@ export default { }, "event_media_stddev_pop_order_by": { "size": [ - 2781 + 2829 ], "uploader_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19411,10 +20272,10 @@ export default { }, "event_media_stddev_samp_order_by": { "size": [ - 2781 + 2829 ], "uploader_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19422,7 +20283,7 @@ export default { }, "event_media_stream_cursor_input": { "initial_value": [ - 1330 + 1378 ], "ordering": [ 236 @@ -19433,10 +20294,10 @@ export default { }, "event_media_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "external_url": [ 78 @@ -19445,7 +20306,7 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "mime_type": [ 78 @@ -19479,10 +20340,10 @@ export default { }, "event_media_sum_order_by": { "size": [ - 2781 + 2829 ], "uploader_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19491,13 +20352,13 @@ export default { "event_media_update_column": {}, "event_media_updates": { "_inc": [ - 1269 + 1317 ], "_set": [ - 1322 + 1370 ], "where": [ - 1267 + 1315 ], "__typename": [ 78 @@ -19516,10 +20377,10 @@ export default { }, "event_media_var_pop_order_by": { "size": [ - 2781 + 2829 ], "uploader_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19538,10 +20399,10 @@ export default { }, "event_media_var_samp_order_by": { "size": [ - 2781 + 2829 ], "uploader_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19560,10 +20421,10 @@ export default { }, "event_media_variance_order_by": { "size": [ - 2781 + 2829 ], "uploader_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19571,16 +20432,16 @@ export default { }, "event_organizers": { "created_at": [ - 4324 + 4376 ], "event": [ - 1471 + 1519 ], "event_id": [ - 4762 + 4921 ], "organizer": [ - 3739 + 3787 ], "steam_id": [ 180 @@ -19591,10 +20452,10 @@ export default { }, "event_organizers_aggregate": { "aggregate": [ - 1345 + 1393 ], "nodes": [ - 1341 + 1389 ], "__typename": [ 78 @@ -19602,7 +20463,7 @@ export default { }, "event_organizers_aggregate_bool_exp": { "count": [ - 1344 + 1392 ], "__typename": [ 78 @@ -19610,13 +20471,13 @@ export default { }, "event_organizers_aggregate_bool_exp_count": { "arguments": [ - 1362 + 1410 ], "distinct": [ 3 ], "filter": [ - 1350 + 1398 ], "predicate": [ 39 @@ -19627,13 +20488,13 @@ export default { }, "event_organizers_aggregate_fields": { "avg": [ - 1348 + 1396 ], "count": [ 38, { "columns": [ - 1362, + 1410, "[event_organizers_select_column!]" ], "distinct": [ @@ -19642,31 +20503,31 @@ export default { } ], "max": [ - 1354 + 1402 ], "min": [ - 1356 + 1404 ], "stddev": [ - 1364 + 1412 ], "stddev_pop": [ - 1366 + 1414 ], "stddev_samp": [ - 1368 + 1416 ], "sum": [ - 1372 + 1420 ], "var_pop": [ - 1376 + 1424 ], "var_samp": [ - 1378 + 1426 ], "variance": [ - 1380 + 1428 ], "__typename": [ 78 @@ -19674,37 +20535,37 @@ export default { }, "event_organizers_aggregate_order_by": { "avg": [ - 1349 + 1397 ], "count": [ - 2781 + 2829 ], "max": [ - 1355 + 1403 ], "min": [ - 1357 + 1405 ], "stddev": [ - 1365 + 1413 ], "stddev_pop": [ - 1367 + 1415 ], "stddev_samp": [ - 1369 + 1417 ], "sum": [ - 1373 + 1421 ], "var_pop": [ - 1377 + 1425 ], "var_samp": [ - 1379 + 1427 ], "variance": [ - 1381 + 1429 ], "__typename": [ 78 @@ -19712,10 +20573,10 @@ export default { }, "event_organizers_arr_rel_insert_input": { "data": [ - 1353 + 1401 ], "on_conflict": [ - 1359 + 1407 ], "__typename": [ 78 @@ -19731,7 +20592,7 @@ export default { }, "event_organizers_avg_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19739,25 +20600,25 @@ export default { }, "event_organizers_bool_exp": { "_and": [ - 1350 + 1398 ], "_not": [ - 1350 + 1398 ], "_or": [ - 1350 + 1398 ], "created_at": [ - 4325 + 4377 ], "event": [ - 1475 + 1523 ], "event_id": [ - 4764 + 4923 ], "organizer": [ - 3743 + 3791 ], "steam_id": [ 182 @@ -19777,16 +20638,16 @@ export default { }, "event_organizers_insert_input": { "created_at": [ - 4324 + 4376 ], "event": [ - 1482 + 1530 ], "event_id": [ - 4762 + 4921 ], "organizer": [ - 3750 + 3798 ], "steam_id": [ 180 @@ -19797,10 +20658,10 @@ export default { }, "event_organizers_max_fields": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -19811,13 +20672,13 @@ export default { }, "event_organizers_max_order_by": { "created_at": [ - 2781 + 2829 ], "event_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19825,10 +20686,10 @@ export default { }, "event_organizers_min_fields": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -19839,13 +20700,13 @@ export default { }, "event_organizers_min_order_by": { "created_at": [ - 2781 + 2829 ], "event_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19856,7 +20717,7 @@ export default { 38 ], "returning": [ - 1341 + 1389 ], "__typename": [ 78 @@ -19864,13 +20725,13 @@ export default { }, "event_organizers_on_conflict": { "constraint": [ - 1351 + 1399 ], "update_columns": [ - 1374 + 1422 ], "where": [ - 1350 + 1398 ], "__typename": [ 78 @@ -19878,19 +20739,19 @@ export default { }, "event_organizers_order_by": { "created_at": [ - 2781 + 2829 ], "event": [ - 1484 + 1532 ], "event_id": [ - 2781 + 2829 ], "organizer": [ - 3752 + 3800 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19898,7 +20759,7 @@ export default { }, "event_organizers_pk_columns_input": { "event_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -19910,10 +20771,10 @@ export default { "event_organizers_select_column": {}, "event_organizers_set_input": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -19932,7 +20793,7 @@ export default { }, "event_organizers_stddev_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19948,7 +20809,7 @@ export default { }, "event_organizers_stddev_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19964,7 +20825,7 @@ export default { }, "event_organizers_stddev_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -19972,7 +20833,7 @@ export default { }, "event_organizers_stream_cursor_input": { "initial_value": [ - 1371 + 1419 ], "ordering": [ 236 @@ -19983,10 +20844,10 @@ export default { }, "event_organizers_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -20005,7 +20866,7 @@ export default { }, "event_organizers_sum_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20014,13 +20875,13 @@ export default { "event_organizers_update_column": {}, "event_organizers_updates": { "_inc": [ - 1352 + 1400 ], "_set": [ - 1363 + 1411 ], "where": [ - 1350 + 1398 ], "__typename": [ 78 @@ -20036,7 +20897,7 @@ export default { }, "event_organizers_var_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20052,7 +20913,7 @@ export default { }, "event_organizers_var_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20068,7 +20929,7 @@ export default { }, "event_organizers_variance_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20076,16 +20937,16 @@ export default { }, "event_players": { "created_at": [ - 4324 + 4376 ], "event": [ - 1471 + 1519 ], "event_id": [ - 4762 + 4921 ], "player": [ - 3739 + 3787 ], "steam_id": [ 180 @@ -20096,10 +20957,10 @@ export default { }, "event_players_aggregate": { "aggregate": [ - 1386 + 1434 ], "nodes": [ - 1382 + 1430 ], "__typename": [ 78 @@ -20107,7 +20968,7 @@ export default { }, "event_players_aggregate_bool_exp": { "count": [ - 1385 + 1433 ], "__typename": [ 78 @@ -20115,13 +20976,13 @@ export default { }, "event_players_aggregate_bool_exp_count": { "arguments": [ - 1403 + 1451 ], "distinct": [ 3 ], "filter": [ - 1391 + 1439 ], "predicate": [ 39 @@ -20132,13 +20993,13 @@ export default { }, "event_players_aggregate_fields": { "avg": [ - 1389 + 1437 ], "count": [ 38, { "columns": [ - 1403, + 1451, "[event_players_select_column!]" ], "distinct": [ @@ -20147,31 +21008,31 @@ export default { } ], "max": [ - 1395 + 1443 ], "min": [ - 1397 + 1445 ], "stddev": [ - 1405 + 1453 ], "stddev_pop": [ - 1407 + 1455 ], "stddev_samp": [ - 1409 + 1457 ], "sum": [ - 1413 + 1461 ], "var_pop": [ - 1417 + 1465 ], "var_samp": [ - 1419 + 1467 ], "variance": [ - 1421 + 1469 ], "__typename": [ 78 @@ -20179,37 +21040,37 @@ export default { }, "event_players_aggregate_order_by": { "avg": [ - 1390 + 1438 ], "count": [ - 2781 + 2829 ], "max": [ - 1396 + 1444 ], "min": [ - 1398 + 1446 ], "stddev": [ - 1406 + 1454 ], "stddev_pop": [ - 1408 + 1456 ], "stddev_samp": [ - 1410 + 1458 ], "sum": [ - 1414 + 1462 ], "var_pop": [ - 1418 + 1466 ], "var_samp": [ - 1420 + 1468 ], "variance": [ - 1422 + 1470 ], "__typename": [ 78 @@ -20217,10 +21078,10 @@ export default { }, "event_players_arr_rel_insert_input": { "data": [ - 1394 + 1442 ], "on_conflict": [ - 1400 + 1448 ], "__typename": [ 78 @@ -20236,7 +21097,7 @@ export default { }, "event_players_avg_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20244,25 +21105,25 @@ export default { }, "event_players_bool_exp": { "_and": [ - 1391 + 1439 ], "_not": [ - 1391 + 1439 ], "_or": [ - 1391 + 1439 ], "created_at": [ - 4325 + 4377 ], "event": [ - 1475 + 1523 ], "event_id": [ - 4764 + 4923 ], "player": [ - 3743 + 3791 ], "steam_id": [ 182 @@ -20282,16 +21143,16 @@ export default { }, "event_players_insert_input": { "created_at": [ - 4324 + 4376 ], "event": [ - 1482 + 1530 ], "event_id": [ - 4762 + 4921 ], "player": [ - 3750 + 3798 ], "steam_id": [ 180 @@ -20302,10 +21163,10 @@ export default { }, "event_players_max_fields": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -20316,13 +21177,13 @@ export default { }, "event_players_max_order_by": { "created_at": [ - 2781 + 2829 ], "event_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20330,10 +21191,10 @@ export default { }, "event_players_min_fields": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -20344,13 +21205,13 @@ export default { }, "event_players_min_order_by": { "created_at": [ - 2781 + 2829 ], "event_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20361,7 +21222,7 @@ export default { 38 ], "returning": [ - 1382 + 1430 ], "__typename": [ 78 @@ -20369,13 +21230,13 @@ export default { }, "event_players_on_conflict": { "constraint": [ - 1392 + 1440 ], "update_columns": [ - 1415 + 1463 ], "where": [ - 1391 + 1439 ], "__typename": [ 78 @@ -20383,19 +21244,19 @@ export default { }, "event_players_order_by": { "created_at": [ - 2781 + 2829 ], "event": [ - 1484 + 1532 ], "event_id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20403,7 +21264,7 @@ export default { }, "event_players_pk_columns_input": { "event_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -20415,10 +21276,10 @@ export default { "event_players_select_column": {}, "event_players_set_input": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -20437,7 +21298,7 @@ export default { }, "event_players_stddev_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20453,7 +21314,7 @@ export default { }, "event_players_stddev_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20469,7 +21330,7 @@ export default { }, "event_players_stddev_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20477,7 +21338,7 @@ export default { }, "event_players_stream_cursor_input": { "initial_value": [ - 1412 + 1460 ], "ordering": [ 236 @@ -20488,10 +21349,10 @@ export default { }, "event_players_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -20510,7 +21371,7 @@ export default { }, "event_players_sum_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20519,13 +21380,13 @@ export default { "event_players_update_column": {}, "event_players_updates": { "_inc": [ - 1393 + 1441 ], "_set": [ - 1404 + 1452 ], "where": [ - 1391 + 1439 ], "__typename": [ 78 @@ -20541,7 +21402,7 @@ export default { }, "event_players_var_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20557,7 +21418,7 @@ export default { }, "event_players_var_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20573,7 +21434,7 @@ export default { }, "event_players_variance_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20581,19 +21442,19 @@ export default { }, "event_teams": { "created_at": [ - 4324 + 4376 ], "event": [ - 1471 + 1519 ], "event_id": [ - 4762 + 4921 ], "team": [ - 4281 + 4329 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -20601,10 +21462,10 @@ export default { }, "event_teams_aggregate": { "aggregate": [ - 1427 + 1475 ], "nodes": [ - 1423 + 1471 ], "__typename": [ 78 @@ -20612,7 +21473,7 @@ export default { }, "event_teams_aggregate_bool_exp": { "count": [ - 1426 + 1474 ], "__typename": [ 78 @@ -20620,13 +21481,13 @@ export default { }, "event_teams_aggregate_bool_exp_count": { "arguments": [ - 1441 + 1489 ], "distinct": [ 3 ], "filter": [ - 1430 + 1478 ], "predicate": [ 39 @@ -20640,7 +21501,7 @@ export default { 38, { "columns": [ - 1441, + 1489, "[event_teams_select_column!]" ], "distinct": [ @@ -20649,10 +21510,10 @@ export default { } ], "max": [ - 1433 + 1481 ], "min": [ - 1435 + 1483 ], "__typename": [ 78 @@ -20660,13 +21521,13 @@ export default { }, "event_teams_aggregate_order_by": { "count": [ - 2781 + 2829 ], "max": [ - 1434 + 1482 ], "min": [ - 1436 + 1484 ], "__typename": [ 78 @@ -20674,10 +21535,10 @@ export default { }, "event_teams_arr_rel_insert_input": { "data": [ - 1432 + 1480 ], "on_conflict": [ - 1438 + 1486 ], "__typename": [ 78 @@ -20685,28 +21546,28 @@ export default { }, "event_teams_bool_exp": { "_and": [ - 1430 + 1478 ], "_not": [ - 1430 + 1478 ], "_or": [ - 1430 + 1478 ], "created_at": [ - 4325 + 4377 ], "event": [ - 1475 + 1523 ], "event_id": [ - 4764 + 4923 ], "team": [ - 4290 + 4340 ], "team_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -20715,19 +21576,19 @@ export default { "event_teams_constraint": {}, "event_teams_insert_input": { "created_at": [ - 4324 + 4376 ], "event": [ - 1482 + 1530 ], "event_id": [ - 4762 + 4921 ], "team": [ - 4299 + 4349 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -20735,13 +21596,13 @@ export default { }, "event_teams_max_fields": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -20749,13 +21610,13 @@ export default { }, "event_teams_max_order_by": { "created_at": [ - 2781 + 2829 ], "event_id": [ - 2781 + 2829 ], "team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20763,13 +21624,13 @@ export default { }, "event_teams_min_fields": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -20777,13 +21638,13 @@ export default { }, "event_teams_min_order_by": { "created_at": [ - 2781 + 2829 ], "event_id": [ - 2781 + 2829 ], "team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20794,7 +21655,7 @@ export default { 38 ], "returning": [ - 1423 + 1471 ], "__typename": [ 78 @@ -20802,13 +21663,13 @@ export default { }, "event_teams_on_conflict": { "constraint": [ - 1431 + 1479 ], "update_columns": [ - 1445 + 1493 ], "where": [ - 1430 + 1478 ], "__typename": [ 78 @@ -20816,19 +21677,19 @@ export default { }, "event_teams_order_by": { "created_at": [ - 2781 + 2829 ], "event": [ - 1484 + 1532 ], "event_id": [ - 2781 + 2829 ], "team": [ - 4301 + 4351 ], "team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -20836,10 +21697,10 @@ export default { }, "event_teams_pk_columns_input": { "event_id": [ - 4762 + 4921 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -20848,13 +21709,13 @@ export default { "event_teams_select_column": {}, "event_teams_set_input": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -20862,7 +21723,7 @@ export default { }, "event_teams_stream_cursor_input": { "initial_value": [ - 1444 + 1492 ], "ordering": [ 236 @@ -20873,13 +21734,13 @@ export default { }, "event_teams_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -20888,10 +21749,10 @@ export default { "event_teams_update_column": {}, "event_teams_updates": { "_set": [ - 1442 + 1490 ], "where": [ - 1430 + 1478 ], "__typename": [ 78 @@ -20899,19 +21760,19 @@ export default { }, "event_tournaments": { "created_at": [ - 4324 + 4376 ], "event": [ - 1471 + 1519 ], "event_id": [ - 4762 + 4921 ], "tournament": [ - 4716 + 4857 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -20919,10 +21780,10 @@ export default { }, "event_tournaments_aggregate": { "aggregate": [ - 1451 + 1499 ], "nodes": [ - 1447 + 1495 ], "__typename": [ 78 @@ -20930,7 +21791,7 @@ export default { }, "event_tournaments_aggregate_bool_exp": { "count": [ - 1450 + 1498 ], "__typename": [ 78 @@ -20938,13 +21799,13 @@ export default { }, "event_tournaments_aggregate_bool_exp_count": { "arguments": [ - 1465 + 1513 ], "distinct": [ 3 ], "filter": [ - 1454 + 1502 ], "predicate": [ 39 @@ -20958,7 +21819,7 @@ export default { 38, { "columns": [ - 1465, + 1513, "[event_tournaments_select_column!]" ], "distinct": [ @@ -20967,10 +21828,10 @@ export default { } ], "max": [ - 1457 + 1505 ], "min": [ - 1459 + 1507 ], "__typename": [ 78 @@ -20978,13 +21839,13 @@ export default { }, "event_tournaments_aggregate_order_by": { "count": [ - 2781 + 2829 ], "max": [ - 1458 + 1506 ], "min": [ - 1460 + 1508 ], "__typename": [ 78 @@ -20992,10 +21853,10 @@ export default { }, "event_tournaments_arr_rel_insert_input": { "data": [ - 1456 + 1504 ], "on_conflict": [ - 1462 + 1510 ], "__typename": [ 78 @@ -21003,28 +21864,28 @@ export default { }, "event_tournaments_bool_exp": { "_and": [ - 1454 + 1502 ], "_not": [ - 1454 + 1502 ], "_or": [ - 1454 + 1502 ], "created_at": [ - 4325 + 4377 ], "event": [ - 1475 + 1523 ], "event_id": [ - 4764 + 4923 ], "tournament": [ - 4727 + 4878 ], "tournament_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -21033,19 +21894,19 @@ export default { "event_tournaments_constraint": {}, "event_tournaments_insert_input": { "created_at": [ - 4324 + 4376 ], "event": [ - 1482 + 1530 ], "event_id": [ - 4762 + 4921 ], "tournament": [ - 4736 + 4887 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -21053,13 +21914,13 @@ export default { }, "event_tournaments_max_fields": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -21067,13 +21928,13 @@ export default { }, "event_tournaments_max_order_by": { "created_at": [ - 2781 + 2829 ], "event_id": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -21081,13 +21942,13 @@ export default { }, "event_tournaments_min_fields": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -21095,13 +21956,13 @@ export default { }, "event_tournaments_min_order_by": { "created_at": [ - 2781 + 2829 ], "event_id": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -21112,7 +21973,7 @@ export default { 38 ], "returning": [ - 1447 + 1495 ], "__typename": [ 78 @@ -21120,13 +21981,13 @@ export default { }, "event_tournaments_on_conflict": { "constraint": [ - 1455 + 1503 ], "update_columns": [ - 1469 + 1517 ], "where": [ - 1454 + 1502 ], "__typename": [ 78 @@ -21134,19 +21995,19 @@ export default { }, "event_tournaments_order_by": { "created_at": [ - 2781 + 2829 ], "event": [ - 1484 + 1532 ], "event_id": [ - 2781 + 2829 ], "tournament": [ - 4738 + 4889 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -21154,10 +22015,10 @@ export default { }, "event_tournaments_pk_columns_input": { "event_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -21166,13 +22027,13 @@ export default { "event_tournaments_select_column": {}, "event_tournaments_set_input": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -21180,7 +22041,7 @@ export default { }, "event_tournaments_stream_cursor_input": { "initial_value": [ - 1468 + 1516 ], "ordering": [ 236 @@ -21191,13 +22052,13 @@ export default { }, "event_tournaments_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "event_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -21206,10 +22067,10 @@ export default { "event_tournaments_update_column": {}, "event_tournaments_updates": { "_set": [ - 1466 + 1514 ], "where": [ - 1454 + 1502 ], "__typename": [ 78 @@ -21217,10 +22078,10 @@ export default { }, "events": { "banner": [ - 1258 + 1306 ], "banner_media_id": [ - 4762 + 4921 ], "can_upload_media": [ 3 @@ -21229,28 +22090,28 @@ export default { 3 ], "created_at": [ - 4324 + 4376 ], "description": [ 78 ], "ends_at": [ - 4324 + 4376 ], "hide_creator_organizer": [ 3 ], "id": [ - 4762 + 4921 ], "is_organizer": [ 3 ], "media": [ - 1258, + 1306, { "distinct_on": [ - 1321, + 1369, "[event_media_select_column!]" ], "limit": [ @@ -21260,22 +22121,22 @@ export default { 38 ], "order_by": [ - 1278, + 1326, "[event_media_order_by!]" ], "where": [ - 1267 + 1315 ] } ], "media_access": [ - 530 + 557 ], "media_aggregate": [ - 1259, + 1307, { "distinct_on": [ - 1321, + 1369, "[event_media_select_column!]" ], "limit": [ @@ -21285,11 +22146,11 @@ export default { 38 ], "order_by": [ - 1278, + 1326, "[event_media_order_by!]" ], "where": [ - 1267 + 1315 ] } ], @@ -21297,16 +22158,16 @@ export default { 78 ], "organizer": [ - 3739 + 3787 ], "organizer_steam_id": [ 180 ], "organizers": [ - 1341, + 1389, { "distinct_on": [ - 1362, + 1410, "[event_organizers_select_column!]" ], "limit": [ @@ -21316,19 +22177,19 @@ export default { 38 ], "order_by": [ - 1360, + 1408, "[event_organizers_order_by!]" ], "where": [ - 1350 + 1398 ] } ], "organizers_aggregate": [ - 1342, + 1390, { "distinct_on": [ - 1362, + 1410, "[event_organizers_select_column!]" ], "limit": [ @@ -21338,19 +22199,19 @@ export default { 38 ], "order_by": [ - 1360, + 1408, "[event_organizers_order_by!]" ], "where": [ - 1350 + 1398 ] } ], "player_stats": [ - 4765, + 4924, { "distinct_on": [ - 4791, + 4950, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -21360,19 +22221,19 @@ export default { 38 ], "order_by": [ - 4790, + 4949, "[v_event_player_stats_order_by!]" ], "where": [ - 4784 + 4943 ] } ], "player_stats_aggregate": [ - 4766, + 4925, { "distinct_on": [ - 4791, + 4950, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -21382,19 +22243,19 @@ export default { 38 ], "order_by": [ - 4790, + 4949, "[v_event_player_stats_order_by!]" ], "where": [ - 4784 + 4943 ] } ], "players": [ - 1382, + 1430, { "distinct_on": [ - 1403, + 1451, "[event_players_select_column!]" ], "limit": [ @@ -21404,19 +22265,19 @@ export default { 38 ], "order_by": [ - 1401, + 1449, "[event_players_order_by!]" ], "where": [ - 1391 + 1439 ] } ], "players_aggregate": [ - 1383, + 1431, { "distinct_on": [ - 1403, + 1451, "[event_players_select_column!]" ], "limit": [ @@ -21426,22 +22287,22 @@ export default { 38 ], "order_by": [ - 1401, + 1449, "[event_players_order_by!]" ], "where": [ - 1391 + 1439 ] } ], "starts_at": [ - 4324 + 4376 ], "teams": [ - 1423, + 1471, { "distinct_on": [ - 1441, + 1489, "[event_teams_select_column!]" ], "limit": [ @@ -21451,19 +22312,19 @@ export default { 38 ], "order_by": [ - 1439, + 1487, "[event_teams_order_by!]" ], "where": [ - 1430 + 1478 ] } ], "teams_aggregate": [ - 1424, + 1472, { "distinct_on": [ - 1441, + 1489, "[event_teams_select_column!]" ], "limit": [ @@ -21473,19 +22334,19 @@ export default { 38 ], "order_by": [ - 1439, + 1487, "[event_teams_order_by!]" ], "where": [ - 1430 + 1478 ] } ], "tournaments": [ - 1447, + 1495, { "distinct_on": [ - 1465, + 1513, "[event_tournaments_select_column!]" ], "limit": [ @@ -21495,19 +22356,19 @@ export default { 38 ], "order_by": [ - 1463, + 1511, "[event_tournaments_order_by!]" ], "where": [ - 1454 + 1502 ] } ], "tournaments_aggregate": [ - 1448, + 1496, { "distinct_on": [ - 1465, + 1513, "[event_tournaments_select_column!]" ], "limit": [ @@ -21517,16 +22378,16 @@ export default { 38 ], "order_by": [ - 1463, + 1511, "[event_tournaments_order_by!]" ], "where": [ - 1454 + 1502 ] } ], "visibility": [ - 550 + 577 ], "__typename": [ 78 @@ -21534,10 +22395,10 @@ export default { }, "events_aggregate": { "aggregate": [ - 1473 + 1521 ], "nodes": [ - 1471 + 1519 ], "__typename": [ 78 @@ -21545,13 +22406,13 @@ export default { }, "events_aggregate_fields": { "avg": [ - 1474 + 1522 ], "count": [ 38, { "columns": [ - 1486, + 1534, "[events_select_column!]" ], "distinct": [ @@ -21560,31 +22421,31 @@ export default { } ], "max": [ - 1479 + 1527 ], "min": [ - 1480 + 1528 ], "stddev": [ - 1488 + 1536 ], "stddev_pop": [ - 1489 + 1537 ], "stddev_samp": [ - 1490 + 1538 ], "sum": [ - 1493 + 1541 ], "var_pop": [ - 1496 + 1544 ], "var_samp": [ - 1497 + 1545 ], "variance": [ - 1498 + 1546 ], "__typename": [ 78 @@ -21600,19 +22461,19 @@ export default { }, "events_bool_exp": { "_and": [ - 1475 + 1523 ], "_not": [ - 1475 + 1523 ], "_or": [ - 1475 + 1523 ], "banner": [ - 1267 + 1315 ], "banner_media_id": [ - 4764 + 4923 ], "can_upload_media": [ 4 @@ -21621,76 +22482,76 @@ export default { 4 ], "created_at": [ - 4325 + 4377 ], "description": [ 80 ], "ends_at": [ - 4325 + 4377 ], "hide_creator_organizer": [ 4 ], "id": [ - 4764 + 4923 ], "is_organizer": [ 4 ], "media": [ - 1267 + 1315 ], "media_access": [ - 531 + 558 ], "media_aggregate": [ - 1260 + 1308 ], "name": [ 80 ], "organizer": [ - 3743 + 3791 ], "organizer_steam_id": [ 182 ], "organizers": [ - 1350 + 1398 ], "organizers_aggregate": [ - 1343 + 1391 ], "player_stats": [ - 4784 + 4943 ], "player_stats_aggregate": [ - 4767 + 4926 ], "players": [ - 1391 + 1439 ], "players_aggregate": [ - 1384 + 1432 ], "starts_at": [ - 4325 + 4377 ], "teams": [ - 1430 + 1478 ], "teams_aggregate": [ - 1425 + 1473 ], "tournaments": [ - 1454 + 1502 ], "tournaments_aggregate": [ - 1449 + 1497 ], "visibility": [ - 551 + 578 ], "__typename": [ 78 @@ -21707,61 +22568,61 @@ export default { }, "events_insert_input": { "banner": [ - 1276 + 1324 ], "banner_media_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "description": [ 78 ], "ends_at": [ - 4324 + 4376 ], "hide_creator_organizer": [ 3 ], "id": [ - 4762 + 4921 ], "media": [ - 1264 + 1312 ], "media_access": [ - 530 + 557 ], "name": [ 78 ], "organizer": [ - 3750 + 3798 ], "organizer_steam_id": [ 180 ], "organizers": [ - 1347 + 1395 ], "player_stats": [ - 4781 + 4940 ], "players": [ - 1388 + 1436 ], "starts_at": [ - 4324 + 4376 ], "teams": [ - 1429 + 1477 ], "tournaments": [ - 1453 + 1501 ], "visibility": [ - 550 + 577 ], "__typename": [ 78 @@ -21769,19 +22630,19 @@ export default { }, "events_max_fields": { "banner_media_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "description": [ 78 ], "ends_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 @@ -21790,7 +22651,7 @@ export default { 180 ], "starts_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -21798,19 +22659,19 @@ export default { }, "events_min_fields": { "banner_media_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "description": [ 78 ], "ends_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 @@ -21819,7 +22680,7 @@ export default { 180 ], "starts_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -21830,7 +22691,7 @@ export default { 38 ], "returning": [ - 1471 + 1519 ], "__typename": [ 78 @@ -21838,10 +22699,10 @@ export default { }, "events_obj_rel_insert_input": { "data": [ - 1478 + 1526 ], "on_conflict": [ - 1483 + 1531 ], "__typename": [ 78 @@ -21849,13 +22710,13 @@ export default { }, "events_on_conflict": { "constraint": [ - 1476 + 1524 ], "update_columns": [ - 1494 + 1542 ], "where": [ - 1475 + 1523 ], "__typename": [ 78 @@ -21863,70 +22724,70 @@ export default { }, "events_order_by": { "banner": [ - 1278 + 1326 ], "banner_media_id": [ - 2781 + 2829 ], "can_upload_media": [ - 2781 + 2829 ], "can_view": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "description": [ - 2781 + 2829 ], "ends_at": [ - 2781 + 2829 ], "hide_creator_organizer": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "is_organizer": [ - 2781 + 2829 ], "media_access": [ - 2781 + 2829 ], "media_aggregate": [ - 1263 + 1311 ], "name": [ - 2781 + 2829 ], "organizer": [ - 3752 + 3800 ], "organizer_steam_id": [ - 2781 + 2829 ], "organizers_aggregate": [ - 1346 + 1394 ], "player_stats_aggregate": [ - 4780 + 4939 ], "players_aggregate": [ - 1387 + 1435 ], "starts_at": [ - 2781 + 2829 ], "teams_aggregate": [ - 1428 + 1476 ], "tournaments_aggregate": [ - 1452 + 1500 ], "visibility": [ - 2781 + 2829 ], "__typename": [ 78 @@ -21934,7 +22795,7 @@ export default { }, "events_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -21943,25 +22804,25 @@ export default { "events_select_column": {}, "events_set_input": { "banner_media_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "description": [ 78 ], "ends_at": [ - 4324 + 4376 ], "hide_creator_organizer": [ 3 ], "id": [ - 4762 + 4921 ], "media_access": [ - 530 + 557 ], "name": [ 78 @@ -21970,10 +22831,10 @@ export default { 180 ], "starts_at": [ - 4324 + 4376 ], "visibility": [ - 550 + 577 ], "__typename": [ 78 @@ -22005,7 +22866,7 @@ export default { }, "events_stream_cursor_input": { "initial_value": [ - 1492 + 1540 ], "ordering": [ 236 @@ -22016,25 +22877,25 @@ export default { }, "events_stream_cursor_value_input": { "banner_media_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "description": [ 78 ], "ends_at": [ - 4324 + 4376 ], "hide_creator_organizer": [ 3 ], "id": [ - 4762 + 4921 ], "media_access": [ - 530 + 557 ], "name": [ 78 @@ -22043,10 +22904,10 @@ export default { 180 ], "starts_at": [ - 4324 + 4376 ], "visibility": [ - 550 + 577 ], "__typename": [ 78 @@ -22063,13 +22924,13 @@ export default { "events_update_column": {}, "events_updates": { "_inc": [ - 1477 + 1525 ], "_set": [ - 1487 + 1535 ], "where": [ - 1475 + 1523 ], "__typename": [ 78 @@ -22102,31 +22963,31 @@ export default { "float8": {}, "float8_comparison_exp": { "_eq": [ - 1499 + 1547 ], "_gt": [ - 1499 + 1547 ], "_gte": [ - 1499 + 1547 ], "_in": [ - 1499 + 1547 ], "_is_null": [ 3 ], "_lt": [ - 1499 + 1547 ], "_lte": [ - 1499 + 1547 ], "_neq": [ - 1499 + 1547 ], "_nin": [ - 1499 + 1547 ], "__typename": [ 78 @@ -22134,7 +22995,7 @@ export default { }, "friends": { "e_status": [ - 565 + 592 ], "other_player_steam_id": [ 180 @@ -22143,7 +23004,7 @@ export default { 180 ], "status": [ - 570 + 597 ], "__typename": [ 78 @@ -22151,10 +23012,10 @@ export default { }, "friends_aggregate": { "aggregate": [ - 1503 + 1551 ], "nodes": [ - 1501 + 1549 ], "__typename": [ 78 @@ -22162,13 +23023,13 @@ export default { }, "friends_aggregate_fields": { "avg": [ - 1504 + 1552 ], "count": [ 38, { "columns": [ - 1515, + 1563, "[friends_select_column!]" ], "distinct": [ @@ -22177,31 +23038,31 @@ export default { } ], "max": [ - 1509 + 1557 ], "min": [ - 1510 + 1558 ], "stddev": [ - 1517 + 1565 ], "stddev_pop": [ - 1518 + 1566 ], "stddev_samp": [ - 1519 + 1567 ], "sum": [ - 1522 + 1570 ], "var_pop": [ - 1525 + 1573 ], "var_samp": [ - 1526 + 1574 ], "variance": [ - 1527 + 1575 ], "__typename": [ 78 @@ -22220,16 +23081,16 @@ export default { }, "friends_bool_exp": { "_and": [ - 1505 + 1553 ], "_not": [ - 1505 + 1553 ], "_or": [ - 1505 + 1553 ], "e_status": [ - 568 + 595 ], "other_player_steam_id": [ 182 @@ -22238,7 +23099,7 @@ export default { 182 ], "status": [ - 571 + 598 ], "__typename": [ 78 @@ -22258,7 +23119,7 @@ export default { }, "friends_insert_input": { "e_status": [ - 576 + 603 ], "other_player_steam_id": [ 180 @@ -22267,7 +23128,7 @@ export default { 180 ], "status": [ - 570 + 597 ], "__typename": [ 78 @@ -22300,7 +23161,7 @@ export default { 38 ], "returning": [ - 1501 + 1549 ], "__typename": [ 78 @@ -22308,13 +23169,13 @@ export default { }, "friends_on_conflict": { "constraint": [ - 1506 + 1554 ], "update_columns": [ - 1523 + 1571 ], "where": [ - 1505 + 1553 ], "__typename": [ 78 @@ -22322,16 +23183,16 @@ export default { }, "friends_order_by": { "e_status": [ - 578 + 605 ], "other_player_steam_id": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "__typename": [ 78 @@ -22357,7 +23218,7 @@ export default { 180 ], "status": [ - 570 + 597 ], "__typename": [ 78 @@ -22398,7 +23259,7 @@ export default { }, "friends_stream_cursor_input": { "initial_value": [ - 1521 + 1569 ], "ordering": [ 236 @@ -22415,7 +23276,7 @@ export default { 180 ], "status": [ - 570 + 597 ], "__typename": [ 78 @@ -22435,13 +23296,13 @@ export default { "friends_update_column": {}, "friends_updates": { "_inc": [ - 1507 + 1555 ], "_set": [ - 1516 + 1564 ], "where": [ - 1505 + 1553 ], "__typename": [ 78 @@ -22491,7 +23352,7 @@ export default { 38 ], "cpu_frequency_info": [ - 1652, + 1700, { "path": [ 78 @@ -22499,7 +23360,7 @@ export default { } ], "cpu_governor_info": [ - 1652, + 1700, { "path": [ 78 @@ -22513,7 +23374,7 @@ export default { 38 ], "cpu_warnings": [ - 1652, + 1700, { "path": [ 78 @@ -22521,7 +23382,7 @@ export default { } ], "cs2_launch_options": [ - 1652, + 1700, { "path": [ 78 @@ -22529,7 +23390,7 @@ export default { } ], "cs2_video_settings": [ - 1652, + 1700, { "path": [ 78 @@ -22549,10 +23410,10 @@ export default { 38 ], "e_region": [ - 3826 + 3874 ], "e_status": [ - 606 + 633 ], "enabled": [ 3 @@ -22570,7 +23431,7 @@ export default { 3 ], "gpu_info": [ - 1652, + 1700, { "path": [ 78 @@ -22590,13 +23451,13 @@ export default { 78 ], "lan_ip": [ - 1648 + 1696 ], "node_ip": [ - 1648 + 1696 ], "offline_at": [ - 4324 + 4376 ], "pin_build_id": [ 38 @@ -22608,22 +23469,22 @@ export default { 78 ], "pinned_version": [ - 1579 + 1627 ], "plugin_supported": [ 3 ], "public_ip": [ - 1648 + 1696 ], "region": [ 78 ], "servers": [ - 3853, + 3901, { "distinct_on": [ - 3877, + 3925, "[servers_select_column!]" ], "limit": [ @@ -22633,19 +23494,19 @@ export default { 38 ], "order_by": [ - 3875, + 3923, "[servers_order_by!]" ], "where": [ - 3864 + 3912 ] } ], "servers_aggregate": [ - 3854, + 3902, { "distinct_on": [ - 3877, + 3925, "[servers_select_column!]" ], "limit": [ @@ -22655,16 +23516,16 @@ export default { 38 ], "order_by": [ - 3875, + 3923, "[servers_order_by!]" ], "where": [ - 3864 + 3912 ] } ], "shader_bake_progress": [ - 2779 + 2827 ], "shader_bake_progress_stage": [ 78 @@ -22673,7 +23534,7 @@ export default { 78 ], "shader_bake_status_history": [ - 1652, + 1700, { "path": [ 78 @@ -22684,7 +23545,7 @@ export default { 38 ], "status": [ - 611 + 638 ], "supports_cpu_pinning": [ 3 @@ -22702,7 +23563,7 @@ export default { 78 ], "version": [ - 1579 + 1627 ], "__typename": [ 78 @@ -22710,10 +23571,10 @@ export default { }, "game_server_nodes_aggregate": { "aggregate": [ - 1534 + 1582 ], "nodes": [ - 1528 + 1576 ], "__typename": [ 78 @@ -22721,13 +23582,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 1531 + 1579 ], "bool_or": [ - 1532 + 1580 ], "count": [ - 1533 + 1581 ], "__typename": [ 78 @@ -22735,13 +23596,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 1558 + 1606 ], "distinct": [ 3 ], "filter": [ - 1540 + 1588 ], "predicate": [ 4 @@ -22752,13 +23613,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 1559 + 1607 ], "distinct": [ 3 ], "filter": [ - 1540 + 1588 ], "predicate": [ 4 @@ -22769,13 +23630,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 1557 + 1605 ], "distinct": [ 3 ], "filter": [ - 1540 + 1588 ], "predicate": [ 39 @@ -22786,13 +23647,13 @@ export default { }, "game_server_nodes_aggregate_fields": { "avg": [ - 1538 + 1586 ], "count": [ 38, { "columns": [ - 1557, + 1605, "[game_server_nodes_select_column!]" ], "distinct": [ @@ -22801,31 +23662,31 @@ export default { } ], "max": [ - 1547 + 1595 ], "min": [ - 1549 + 1597 ], "stddev": [ - 1561 + 1609 ], "stddev_pop": [ - 1563 + 1611 ], "stddev_samp": [ - 1565 + 1613 ], "sum": [ - 1569 + 1617 ], "var_pop": [ - 1573 + 1621 ], "var_samp": [ - 1575 + 1623 ], "variance": [ - 1577 + 1625 ], "__typename": [ 78 @@ -22833,37 +23694,37 @@ export default { }, "game_server_nodes_aggregate_order_by": { "avg": [ - 1539 + 1587 ], "count": [ - 2781 + 2829 ], "max": [ - 1548 + 1596 ], "min": [ - 1550 + 1598 ], "stddev": [ - 1562 + 1610 ], "stddev_pop": [ - 1564 + 1612 ], "stddev_samp": [ - 1566 + 1614 ], "sum": [ - 1570 + 1618 ], "var_pop": [ - 1574 + 1622 ], "var_samp": [ - 1576 + 1624 ], "variance": [ - 1578 + 1626 ], "__typename": [ 78 @@ -22871,25 +23732,25 @@ export default { }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 1652 + 1700 ], "cpu_governor_info": [ - 1652 + 1700 ], "cpu_warnings": [ - 1652 + 1700 ], "cs2_launch_options": [ - 1652 + 1700 ], "cs2_video_settings": [ - 1652 + 1700 ], "gpu_info": [ - 1652 + 1700 ], "shader_bake_status_history": [ - 1652 + 1700 ], "__typename": [ 78 @@ -22897,10 +23758,10 @@ export default { }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 1546 + 1594 ], "on_conflict": [ - 1553 + 1601 ], "__typename": [ 78 @@ -22955,40 +23816,40 @@ export default { }, "game_server_nodes_avg_order_by": { "build_id": [ - 2781 + 2829 ], "cpu_cores_per_socket": [ - 2781 + 2829 ], "cpu_sockets": [ - 2781 + 2829 ], "cpu_threads_per_core": [ - 2781 + 2829 ], "csgo_build_id": [ - 2781 + 2829 ], "demo_network_limiter": [ - 2781 + 2829 ], "disk_available_gb": [ - 2781 + 2829 ], "disk_used_percent": [ - 2781 + 2829 ], "end_port_range": [ - 2781 + 2829 ], "pin_build_id": [ - 2781 + 2829 ], "shader_bake_progress": [ - 2781 + 2829 ], "start_port_range": [ - 2781 + 2829 ], "__typename": [ 78 @@ -22996,13 +23857,13 @@ export default { }, "game_server_nodes_bool_exp": { "_and": [ - 1540 + 1588 ], "_not": [ - 1540 + 1588 ], "_or": [ - 1540 + 1588 ], "available_server_count": [ 39 @@ -23014,10 +23875,10 @@ export default { 39 ], "cpu_frequency_info": [ - 1654 + 1702 ], "cpu_governor_info": [ - 1654 + 1702 ], "cpu_sockets": [ 39 @@ -23026,13 +23887,13 @@ export default { 39 ], "cpu_warnings": [ - 1654 + 1702 ], "cs2_launch_options": [ - 1654 + 1702 ], "cs2_video_settings": [ - 1654 + 1702 ], "csgo_build_id": [ 39 @@ -23047,10 +23908,10 @@ export default { 39 ], "e_region": [ - 3830 + 3878 ], "e_status": [ - 609 + 636 ], "enabled": [ 4 @@ -23068,7 +23929,7 @@ export default { 4 ], "gpu_info": [ - 1654 + 1702 ], "gpu_rendering_enabled": [ 4 @@ -23083,13 +23944,13 @@ export default { 80 ], "lan_ip": [ - 1649 + 1697 ], "node_ip": [ - 1649 + 1697 ], "offline_at": [ - 4325 + 4377 ], "pin_build_id": [ 39 @@ -23101,25 +23962,25 @@ export default { 80 ], "pinned_version": [ - 1584 + 1632 ], "plugin_supported": [ 4 ], "public_ip": [ - 1649 + 1697 ], "region": [ 80 ], "servers": [ - 3864 + 3912 ], "servers_aggregate": [ - 3855 + 3903 ], "shader_bake_progress": [ - 2780 + 2828 ], "shader_bake_progress_stage": [ 80 @@ -23128,13 +23989,13 @@ export default { 80 ], "shader_bake_status_history": [ - 1654 + 1702 ], "start_port_range": [ 39 ], "status": [ - 612 + 639 ], "supports_cpu_pinning": [ 4 @@ -23152,7 +24013,7 @@ export default { 80 ], "version": [ - 1584 + 1632 ], "__typename": [ 78 @@ -23269,7 +24130,7 @@ export default { 38 ], "shader_bake_progress": [ - 2779 + 2827 ], "start_port_range": [ 38 @@ -23286,10 +24147,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1652 + 1700 ], "cpu_governor_info": [ - 1652 + 1700 ], "cpu_sockets": [ 38 @@ -23298,13 +24159,13 @@ export default { 38 ], "cpu_warnings": [ - 1652 + 1700 ], "cs2_launch_options": [ - 1652 + 1700 ], "cs2_video_settings": [ - 1652 + 1700 ], "csgo_build_id": [ 38 @@ -23319,10 +24180,10 @@ export default { 38 ], "e_region": [ - 3836 + 3884 ], "e_status": [ - 617 + 644 ], "enabled": [ 3 @@ -23340,7 +24201,7 @@ export default { 3 ], "gpu_info": [ - 1652 + 1700 ], "gpu_rendering_enabled": [ 3 @@ -23355,13 +24216,13 @@ export default { 78 ], "lan_ip": [ - 1648 + 1696 ], "node_ip": [ - 1648 + 1696 ], "offline_at": [ - 4324 + 4376 ], "pin_build_id": [ 38 @@ -23373,19 +24234,19 @@ export default { 78 ], "pinned_version": [ - 1594 + 1642 ], "public_ip": [ - 1648 + 1696 ], "region": [ 78 ], "servers": [ - 3861 + 3909 ], "shader_bake_progress": [ - 2779 + 2827 ], "shader_bake_progress_stage": [ 78 @@ -23394,13 +24255,13 @@ export default { 78 ], "shader_bake_status_history": [ - 1652 + 1700 ], "start_port_range": [ 38 ], "status": [ - 611 + 638 ], "supports_cpu_pinning": [ 3 @@ -23415,7 +24276,7 @@ export default { 78 ], "version": [ - 1594 + 1642 ], "__typename": [ 78 @@ -23459,7 +24320,7 @@ export default { 78 ], "offline_at": [ - 4324 + 4376 ], "pin_build_id": [ 38 @@ -23474,7 +24335,7 @@ export default { 78 ], "shader_bake_progress": [ - 2779 + 2827 ], "shader_bake_progress_stage": [ 78 @@ -23500,70 +24361,70 @@ export default { }, "game_server_nodes_max_order_by": { "build_id": [ - 2781 + 2829 ], "cpu_cores_per_socket": [ - 2781 + 2829 ], "cpu_sockets": [ - 2781 + 2829 ], "cpu_threads_per_core": [ - 2781 + 2829 ], "csgo_build_id": [ - 2781 + 2829 ], "demo_network_limiter": [ - 2781 + 2829 ], "disk_available_gb": [ - 2781 + 2829 ], "disk_used_percent": [ - 2781 + 2829 ], "end_port_range": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "offline_at": [ - 2781 + 2829 ], "pin_build_id": [ - 2781 + 2829 ], "pin_plugin_runtime": [ - 2781 + 2829 ], "pin_plugin_version": [ - 2781 + 2829 ], "region": [ - 2781 + 2829 ], "shader_bake_progress": [ - 2781 + 2829 ], "shader_bake_progress_stage": [ - 2781 + 2829 ], "shader_bake_status": [ - 2781 + 2829 ], "start_port_range": [ - 2781 + 2829 ], "token": [ - 2781 + 2829 ], "update_status": [ - 2781 + 2829 ], "__typename": [ 78 @@ -23607,7 +24468,7 @@ export default { 78 ], "offline_at": [ - 4324 + 4376 ], "pin_build_id": [ 38 @@ -23622,7 +24483,7 @@ export default { 78 ], "shader_bake_progress": [ - 2779 + 2827 ], "shader_bake_progress_stage": [ 78 @@ -23648,70 +24509,70 @@ export default { }, "game_server_nodes_min_order_by": { "build_id": [ - 2781 + 2829 ], "cpu_cores_per_socket": [ - 2781 + 2829 ], "cpu_sockets": [ - 2781 + 2829 ], "cpu_threads_per_core": [ - 2781 + 2829 ], "csgo_build_id": [ - 2781 + 2829 ], "demo_network_limiter": [ - 2781 + 2829 ], "disk_available_gb": [ - 2781 + 2829 ], "disk_used_percent": [ - 2781 + 2829 ], "end_port_range": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "offline_at": [ - 2781 + 2829 ], "pin_build_id": [ - 2781 + 2829 ], "pin_plugin_runtime": [ - 2781 + 2829 ], "pin_plugin_version": [ - 2781 + 2829 ], "region": [ - 2781 + 2829 ], "shader_bake_progress": [ - 2781 + 2829 ], "shader_bake_progress_stage": [ - 2781 + 2829 ], "shader_bake_status": [ - 2781 + 2829 ], "start_port_range": [ - 2781 + 2829 ], "token": [ - 2781 + 2829 ], "update_status": [ - 2781 + 2829 ], "__typename": [ 78 @@ -23722,7 +24583,7 @@ export default { 38 ], "returning": [ - 1528 + 1576 ], "__typename": [ 78 @@ -23730,10 +24591,10 @@ export default { }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1546 + 1594 ], "on_conflict": [ - 1553 + 1601 ], "__typename": [ 78 @@ -23741,13 +24602,13 @@ export default { }, "game_server_nodes_on_conflict": { "constraint": [ - 1541 + 1589 ], "update_columns": [ - 1571 + 1619 ], "where": [ - 1540 + 1588 ], "__typename": [ 78 @@ -23755,151 +24616,151 @@ export default { }, "game_server_nodes_order_by": { "available_server_count": [ - 2781 + 2829 ], "build_id": [ - 2781 + 2829 ], "cpu_cores_per_socket": [ - 2781 + 2829 ], "cpu_frequency_info": [ - 2781 + 2829 ], "cpu_governor_info": [ - 2781 + 2829 ], "cpu_sockets": [ - 2781 + 2829 ], "cpu_threads_per_core": [ - 2781 + 2829 ], "cpu_warnings": [ - 2781 + 2829 ], "cs2_launch_options": [ - 2781 + 2829 ], "cs2_video_settings": [ - 2781 + 2829 ], "csgo_build_id": [ - 2781 + 2829 ], "demo_network_limiter": [ - 2781 + 2829 ], "disk_available_gb": [ - 2781 + 2829 ], "disk_used_percent": [ - 2781 + 2829 ], "e_region": [ - 3838 + 3886 ], "e_status": [ - 619 + 646 ], "enabled": [ - 2781 + 2829 ], "enabled_for_match_making": [ - 2781 + 2829 ], "end_port_range": [ - 2781 + 2829 ], "gpu": [ - 2781 + 2829 ], "gpu_demos_enabled": [ - 2781 + 2829 ], "gpu_info": [ - 2781 + 2829 ], "gpu_rendering_enabled": [ - 2781 + 2829 ], "gpu_streaming_enabled": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "lan_ip": [ - 2781 + 2829 ], "node_ip": [ - 2781 + 2829 ], "offline_at": [ - 2781 + 2829 ], "pin_build_id": [ - 2781 + 2829 ], "pin_plugin_runtime": [ - 2781 + 2829 ], "pin_plugin_version": [ - 2781 + 2829 ], "pinned_version": [ - 1596 + 1644 ], "plugin_supported": [ - 2781 + 2829 ], "public_ip": [ - 2781 + 2829 ], "region": [ - 2781 + 2829 ], "servers_aggregate": [ - 3860 + 3908 ], "shader_bake_progress": [ - 2781 + 2829 ], "shader_bake_progress_stage": [ - 2781 + 2829 ], "shader_bake_status": [ - 2781 + 2829 ], "shader_bake_status_history": [ - 2781 + 2829 ], "start_port_range": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "supports_cpu_pinning": [ - 2781 + 2829 ], "supports_low_latency": [ - 2781 + 2829 ], "token": [ - 2781 + 2829 ], "total_server_count": [ - 2781 + 2829 ], "update_status": [ - 2781 + 2829 ], "version": [ - 1596 + 1644 ], "__typename": [ 78 @@ -23915,25 +24776,25 @@ export default { }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1652 + 1700 ], "cpu_governor_info": [ - 1652 + 1700 ], "cpu_warnings": [ - 1652 + 1700 ], "cs2_launch_options": [ - 1652 + 1700 ], "cs2_video_settings": [ - 1652 + 1700 ], "gpu_info": [ - 1652 + 1700 ], "shader_bake_status_history": [ - 1652 + 1700 ], "__typename": [ 78 @@ -23950,10 +24811,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1652 + 1700 ], "cpu_governor_info": [ - 1652 + 1700 ], "cpu_sockets": [ 38 @@ -23962,13 +24823,13 @@ export default { 38 ], "cpu_warnings": [ - 1652 + 1700 ], "cs2_launch_options": [ - 1652 + 1700 ], "cs2_video_settings": [ - 1652 + 1700 ], "csgo_build_id": [ 38 @@ -23998,7 +24859,7 @@ export default { 3 ], "gpu_info": [ - 1652 + 1700 ], "gpu_rendering_enabled": [ 3 @@ -24013,13 +24874,13 @@ export default { 78 ], "lan_ip": [ - 1648 + 1696 ], "node_ip": [ - 1648 + 1696 ], "offline_at": [ - 4324 + 4376 ], "pin_build_id": [ 38 @@ -24031,13 +24892,13 @@ export default { 78 ], "public_ip": [ - 1648 + 1696 ], "region": [ 78 ], "shader_bake_progress": [ - 2779 + 2827 ], "shader_bake_progress_stage": [ 78 @@ -24046,13 +24907,13 @@ export default { 78 ], "shader_bake_status_history": [ - 1652 + 1700 ], "start_port_range": [ 38 ], "status": [ - 611 + 638 ], "supports_cpu_pinning": [ 3 @@ -24119,40 +24980,40 @@ export default { }, "game_server_nodes_stddev_order_by": { "build_id": [ - 2781 + 2829 ], "cpu_cores_per_socket": [ - 2781 + 2829 ], "cpu_sockets": [ - 2781 + 2829 ], "cpu_threads_per_core": [ - 2781 + 2829 ], "csgo_build_id": [ - 2781 + 2829 ], "demo_network_limiter": [ - 2781 + 2829 ], "disk_available_gb": [ - 2781 + 2829 ], "disk_used_percent": [ - 2781 + 2829 ], "end_port_range": [ - 2781 + 2829 ], "pin_build_id": [ - 2781 + 2829 ], "shader_bake_progress": [ - 2781 + 2829 ], "start_port_range": [ - 2781 + 2829 ], "__typename": [ 78 @@ -24207,40 +25068,40 @@ export default { }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 2781 + 2829 ], "cpu_cores_per_socket": [ - 2781 + 2829 ], "cpu_sockets": [ - 2781 + 2829 ], "cpu_threads_per_core": [ - 2781 + 2829 ], "csgo_build_id": [ - 2781 + 2829 ], "demo_network_limiter": [ - 2781 + 2829 ], "disk_available_gb": [ - 2781 + 2829 ], "disk_used_percent": [ - 2781 + 2829 ], "end_port_range": [ - 2781 + 2829 ], "pin_build_id": [ - 2781 + 2829 ], "shader_bake_progress": [ - 2781 + 2829 ], "start_port_range": [ - 2781 + 2829 ], "__typename": [ 78 @@ -24295,40 +25156,40 @@ export default { }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 2781 + 2829 ], "cpu_cores_per_socket": [ - 2781 + 2829 ], "cpu_sockets": [ - 2781 + 2829 ], "cpu_threads_per_core": [ - 2781 + 2829 ], "csgo_build_id": [ - 2781 + 2829 ], "demo_network_limiter": [ - 2781 + 2829 ], "disk_available_gb": [ - 2781 + 2829 ], "disk_used_percent": [ - 2781 + 2829 ], "end_port_range": [ - 2781 + 2829 ], "pin_build_id": [ - 2781 + 2829 ], "shader_bake_progress": [ - 2781 + 2829 ], "start_port_range": [ - 2781 + 2829 ], "__typename": [ 78 @@ -24336,7 +25197,7 @@ export default { }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1568 + 1616 ], "ordering": [ 236 @@ -24353,10 +25214,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1652 + 1700 ], "cpu_governor_info": [ - 1652 + 1700 ], "cpu_sockets": [ 38 @@ -24365,13 +25226,13 @@ export default { 38 ], "cpu_warnings": [ - 1652 + 1700 ], "cs2_launch_options": [ - 1652 + 1700 ], "cs2_video_settings": [ - 1652 + 1700 ], "csgo_build_id": [ 38 @@ -24401,7 +25262,7 @@ export default { 3 ], "gpu_info": [ - 1652 + 1700 ], "gpu_rendering_enabled": [ 3 @@ -24416,13 +25277,13 @@ export default { 78 ], "lan_ip": [ - 1648 + 1696 ], "node_ip": [ - 1648 + 1696 ], "offline_at": [ - 4324 + 4376 ], "pin_build_id": [ 38 @@ -24434,13 +25295,13 @@ export default { 78 ], "public_ip": [ - 1648 + 1696 ], "region": [ 78 ], "shader_bake_progress": [ - 2779 + 2827 ], "shader_bake_progress_stage": [ 78 @@ -24449,13 +25310,13 @@ export default { 78 ], "shader_bake_status_history": [ - 1652 + 1700 ], "start_port_range": [ 38 ], "status": [ - 611 + 638 ], "supports_cpu_pinning": [ 3 @@ -24508,7 +25369,7 @@ export default { 38 ], "shader_bake_progress": [ - 2779 + 2827 ], "start_port_range": [ 38 @@ -24522,40 +25383,40 @@ export default { }, "game_server_nodes_sum_order_by": { "build_id": [ - 2781 + 2829 ], "cpu_cores_per_socket": [ - 2781 + 2829 ], "cpu_sockets": [ - 2781 + 2829 ], "cpu_threads_per_core": [ - 2781 + 2829 ], "csgo_build_id": [ - 2781 + 2829 ], "demo_network_limiter": [ - 2781 + 2829 ], "disk_available_gb": [ - 2781 + 2829 ], "disk_used_percent": [ - 2781 + 2829 ], "end_port_range": [ - 2781 + 2829 ], "pin_build_id": [ - 2781 + 2829 ], "shader_bake_progress": [ - 2781 + 2829 ], "start_port_range": [ - 2781 + 2829 ], "__typename": [ 78 @@ -24564,28 +25425,28 @@ export default { "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1536 + 1584 ], "_delete_at_path": [ - 1542 + 1590 ], "_delete_elem": [ - 1543 + 1591 ], "_delete_key": [ - 1544 + 1592 ], "_inc": [ - 1545 + 1593 ], "_prepend": [ - 1556 + 1604 ], "_set": [ - 1560 + 1608 ], "where": [ - 1540 + 1588 ], "__typename": [ 78 @@ -24640,40 +25501,40 @@ export default { }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 2781 + 2829 ], "cpu_cores_per_socket": [ - 2781 + 2829 ], "cpu_sockets": [ - 2781 + 2829 ], "cpu_threads_per_core": [ - 2781 + 2829 ], "csgo_build_id": [ - 2781 + 2829 ], "demo_network_limiter": [ - 2781 + 2829 ], "disk_available_gb": [ - 2781 + 2829 ], "disk_used_percent": [ - 2781 + 2829 ], "end_port_range": [ - 2781 + 2829 ], "pin_build_id": [ - 2781 + 2829 ], "shader_bake_progress": [ - 2781 + 2829 ], "start_port_range": [ - 2781 + 2829 ], "__typename": [ 78 @@ -24728,40 +25589,40 @@ export default { }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 2781 + 2829 ], "cpu_cores_per_socket": [ - 2781 + 2829 ], "cpu_sockets": [ - 2781 + 2829 ], "cpu_threads_per_core": [ - 2781 + 2829 ], "csgo_build_id": [ - 2781 + 2829 ], "demo_network_limiter": [ - 2781 + 2829 ], "disk_available_gb": [ - 2781 + 2829 ], "disk_used_percent": [ - 2781 + 2829 ], "end_port_range": [ - 2781 + 2829 ], "pin_build_id": [ - 2781 + 2829 ], "shader_bake_progress": [ - 2781 + 2829 ], "start_port_range": [ - 2781 + 2829 ], "__typename": [ 78 @@ -24816,40 +25677,40 @@ export default { }, "game_server_nodes_variance_order_by": { "build_id": [ - 2781 + 2829 ], "cpu_cores_per_socket": [ - 2781 + 2829 ], "cpu_sockets": [ - 2781 + 2829 ], "cpu_threads_per_core": [ - 2781 + 2829 ], "csgo_build_id": [ - 2781 + 2829 ], "demo_network_limiter": [ - 2781 + 2829 ], "disk_available_gb": [ - 2781 + 2829 ], "disk_used_percent": [ - 2781 + 2829 ], "end_port_range": [ - 2781 + 2829 ], "pin_build_id": [ - 2781 + 2829 ], "shader_bake_progress": [ - 2781 + 2829 ], "start_port_range": [ - 2781 + 2829 ], "__typename": [ 78 @@ -24869,7 +25730,7 @@ export default { 78 ], "downloads": [ - 1652, + 1700, { "path": [ 78 @@ -24877,7 +25738,7 @@ export default { } ], "updated_at": [ - 4324 + 4376 ], "version": [ 78 @@ -24888,10 +25749,10 @@ export default { }, "game_versions_aggregate": { "aggregate": [ - 1581 + 1629 ], "nodes": [ - 1579 + 1627 ], "__typename": [ 78 @@ -24899,13 +25760,13 @@ export default { }, "game_versions_aggregate_fields": { "avg": [ - 1583 + 1631 ], "count": [ 38, { "columns": [ - 1599, + 1647, "[game_versions_select_column!]" ], "distinct": [ @@ -24914,31 +25775,31 @@ export default { } ], "max": [ - 1591 + 1639 ], "min": [ - 1592 + 1640 ], "stddev": [ - 1601 + 1649 ], "stddev_pop": [ - 1602 + 1650 ], "stddev_samp": [ - 1603 + 1651 ], "sum": [ - 1606 + 1654 ], "var_pop": [ - 1609 + 1657 ], "var_samp": [ - 1610 + 1658 ], "variance": [ - 1611 + 1659 ], "__typename": [ 78 @@ -24946,7 +25807,7 @@ export default { }, "game_versions_append_input": { "downloads": [ - 1652 + 1700 ], "__typename": [ 78 @@ -24962,13 +25823,13 @@ export default { }, "game_versions_bool_exp": { "_and": [ - 1584 + 1632 ], "_not": [ - 1584 + 1632 ], "_or": [ - 1584 + 1632 ], "build_id": [ 39 @@ -24983,10 +25844,10 @@ export default { 80 ], "downloads": [ - 1654 + 1702 ], "updated_at": [ - 4325 + 4377 ], "version": [ 80 @@ -25042,10 +25903,10 @@ export default { 78 ], "downloads": [ - 1652 + 1700 ], "updated_at": [ - 4324 + 4376 ], "version": [ 78 @@ -25062,7 +25923,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "version": [ 78 @@ -25079,7 +25940,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "version": [ 78 @@ -25093,7 +25954,7 @@ export default { 38 ], "returning": [ - 1579 + 1627 ], "__typename": [ 78 @@ -25101,10 +25962,10 @@ export default { }, "game_versions_obj_rel_insert_input": { "data": [ - 1590 + 1638 ], "on_conflict": [ - 1595 + 1643 ], "__typename": [ 78 @@ -25112,13 +25973,13 @@ export default { }, "game_versions_on_conflict": { "constraint": [ - 1585 + 1633 ], "update_columns": [ - 1607 + 1655 ], "where": [ - 1584 + 1632 ], "__typename": [ 78 @@ -25126,25 +25987,25 @@ export default { }, "game_versions_order_by": { "build_id": [ - 2781 + 2829 ], "current": [ - 2781 + 2829 ], "cvars": [ - 2781 + 2829 ], "description": [ - 2781 + 2829 ], "downloads": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "version": [ - 2781 + 2829 ], "__typename": [ 78 @@ -25160,7 +26021,7 @@ export default { }, "game_versions_prepend_input": { "downloads": [ - 1652 + 1700 ], "__typename": [ 78 @@ -25181,10 +26042,10 @@ export default { 78 ], "downloads": [ - 1652 + 1700 ], "updated_at": [ - 4324 + 4376 ], "version": [ 78 @@ -25219,7 +26080,7 @@ export default { }, "game_versions_stream_cursor_input": { "initial_value": [ - 1605 + 1653 ], "ordering": [ 236 @@ -25242,10 +26103,10 @@ export default { 78 ], "downloads": [ - 1652 + 1700 ], "updated_at": [ - 4324 + 4376 ], "version": [ 78 @@ -25265,28 +26126,28 @@ export default { "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1582 + 1630 ], "_delete_at_path": [ - 1586 + 1634 ], "_delete_elem": [ - 1587 + 1635 ], "_delete_key": [ - 1588 + 1636 ], "_inc": [ - 1589 + 1637 ], "_prepend": [ - 1598 + 1646 ], "_set": [ - 1600 + 1648 ], "where": [ - 1584 + 1632 ], "__typename": [ 78 @@ -25324,13 +26185,13 @@ export default { 38 ], "game_version": [ - 1579 + 1627 ], "id": [ - 4762 + 4921 ], "results": [ - 1652, + 1700, { "path": [ 78 @@ -25341,7 +26202,7 @@ export default { 78 ], "validated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -25349,10 +26210,10 @@ export default { }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1614 + 1662 ], "nodes": [ - 1612 + 1660 ], "__typename": [ 78 @@ -25360,13 +26221,13 @@ export default { }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1616 + 1664 ], "count": [ 38, { "columns": [ - 1631, + 1679, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -25375,31 +26236,31 @@ export default { } ], "max": [ - 1624 + 1672 ], "min": [ - 1625 + 1673 ], "stddev": [ - 1633 + 1681 ], "stddev_pop": [ - 1634 + 1682 ], "stddev_samp": [ - 1635 + 1683 ], "sum": [ - 1638 + 1686 ], "var_pop": [ - 1641 + 1689 ], "var_samp": [ - 1642 + 1690 ], "variance": [ - 1643 + 1691 ], "__typename": [ 78 @@ -25407,7 +26268,7 @@ export default { }, "gamedata_signature_validations_append_input": { "results": [ - 1652 + 1700 ], "__typename": [ 78 @@ -25423,13 +26284,13 @@ export default { }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1617 + 1665 ], "_not": [ - 1617 + 1665 ], "_or": [ - 1617 + 1665 ], "branch": [ 80 @@ -25438,19 +26299,19 @@ export default { 39 ], "game_version": [ - 1584 + 1632 ], "id": [ - 4764 + 4923 ], "results": [ - 1654 + 1702 ], "status": [ 80 ], "validated_at": [ - 4325 + 4377 ], "__typename": [ 78 @@ -25497,19 +26358,19 @@ export default { 38 ], "game_version": [ - 1594 + 1642 ], "id": [ - 4762 + 4921 ], "results": [ - 1652 + 1700 ], "status": [ 78 ], "validated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -25523,13 +26384,13 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "status": [ 78 ], "validated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -25543,13 +26404,13 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "status": [ 78 ], "validated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -25560,7 +26421,7 @@ export default { 38 ], "returning": [ - 1612 + 1660 ], "__typename": [ 78 @@ -25568,13 +26429,13 @@ export default { }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1618 + 1666 ], "update_columns": [ - 1639 + 1687 ], "where": [ - 1617 + 1665 ], "__typename": [ 78 @@ -25582,25 +26443,25 @@ export default { }, "gamedata_signature_validations_order_by": { "branch": [ - 2781 + 2829 ], "build_id": [ - 2781 + 2829 ], "game_version": [ - 1596 + 1644 ], "id": [ - 2781 + 2829 ], "results": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "validated_at": [ - 2781 + 2829 ], "__typename": [ 78 @@ -25608,7 +26469,7 @@ export default { }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -25616,7 +26477,7 @@ export default { }, "gamedata_signature_validations_prepend_input": { "results": [ - 1652 + 1700 ], "__typename": [ 78 @@ -25631,16 +26492,16 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "results": [ - 1652 + 1700 ], "status": [ 78 ], "validated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -25672,7 +26533,7 @@ export default { }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1637 + 1685 ], "ordering": [ 236 @@ -25689,16 +26550,16 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "results": [ - 1652 + 1700 ], "status": [ 78 ], "validated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -25715,28 +26576,28 @@ export default { "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1615 + 1663 ], "_delete_at_path": [ - 1619 + 1667 ], "_delete_elem": [ - 1620 + 1668 ], "_delete_key": [ - 1621 + 1669 ], "_inc": [ - 1622 + 1670 ], "_prepend": [ - 1630 + 1678 ], "_set": [ - 1632 + 1680 ], "where": [ - 1617 + 1665 ], "__typename": [ 78 @@ -25771,7 +26632,7 @@ export default { 78 ], "_event_id": [ - 4762 + 4921 ], "_match_type": [ 78 @@ -25797,7 +26658,7 @@ export default { 78 ], "_season_id": [ - 4762 + 4921 ], "_window_days": [ 38 @@ -25811,7 +26672,7 @@ export default { 78 ], "_league_season_id": [ - 4762 + 4921 ], "_role": [ 78 @@ -25834,7 +26695,7 @@ export default { 78 ], "_season_id": [ - 4762 + 4921 ], "_window_days": [ 38 @@ -25846,31 +26707,31 @@ export default { "inet": {}, "inet_comparison_exp": { "_eq": [ - 1648 + 1696 ], "_gt": [ - 1648 + 1696 ], "_gte": [ - 1648 + 1696 ], "_in": [ - 1648 + 1696 ], "_is_null": [ 3 ], "_lt": [ - 1648 + 1696 ], "_lte": [ - 1648 + 1696 ], "_neq": [ - 1648 + 1696 ], "_nin": [ - 1648 + 1696 ], "__typename": [ 78 @@ -25879,31 +26740,31 @@ export default { "json": {}, "json_comparison_exp": { "_eq": [ - 1650 + 1698 ], "_gt": [ - 1650 + 1698 ], "_gte": [ - 1650 + 1698 ], "_in": [ - 1650 + 1698 ], "_is_null": [ 3 ], "_lt": [ - 1650 + 1698 ], "_lte": [ - 1650 + 1698 ], "_neq": [ - 1650 + 1698 ], "_nin": [ - 1650 + 1698 ], "__typename": [ 78 @@ -25920,22 +26781,22 @@ export default { }, "jsonb_comparison_exp": { "_cast": [ - 1653 + 1701 ], "_contained_in": [ - 1652 + 1700 ], "_contains": [ - 1652 + 1700 ], "_eq": [ - 1652 + 1700 ], "_gt": [ - 1652 + 1700 ], "_gte": [ - 1652 + 1700 ], "_has_key": [ 78 @@ -25947,22 +26808,22 @@ export default { 78 ], "_in": [ - 1652 + 1700 ], "_is_null": [ 3 ], "_lt": [ - 1652 + 1700 ], "_lte": [ - 1652 + 1700 ], "_neq": [ - 1652 + 1700 ], "_nin": [ - 1652 + 1700 ], "__typename": [ 78 @@ -25985,13 +26846,13 @@ export default { 78 ], "secondary_value": [ - 1499 + 1547 ], "tertiary_value": [ - 1499 + 1547 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -25999,10 +26860,10 @@ export default { }, "leaderboard_entries_aggregate": { "aggregate": [ - 1657 + 1705 ], "nodes": [ - 1655 + 1703 ], "__typename": [ 78 @@ -26010,13 +26871,13 @@ export default { }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1658 + 1706 ], "count": [ 38, { "columns": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -26025,31 +26886,31 @@ export default { } ], "max": [ - 1662 + 1710 ], "min": [ - 1663 + 1711 ], "stddev": [ - 1668 + 1716 ], "stddev_pop": [ - 1669 + 1717 ], "stddev_samp": [ - 1670 + 1718 ], "sum": [ - 1673 + 1721 ], "var_pop": [ - 1675 + 1723 ], "var_samp": [ - 1676 + 1724 ], "variance": [ - 1677 + 1725 ], "__typename": [ 78 @@ -26074,13 +26935,13 @@ export default { }, "leaderboard_entries_bool_exp": { "_and": [ - 1659 + 1707 ], "_not": [ - 1659 + 1707 ], "_or": [ - 1659 + 1707 ], "matches_played": [ 39 @@ -26098,13 +26959,13 @@ export default { 80 ], "secondary_value": [ - 1500 + 1548 ], "tertiary_value": [ - 1500 + 1548 ], "value": [ - 1500 + 1548 ], "__typename": [ 78 @@ -26115,13 +26976,13 @@ export default { 38 ], "secondary_value": [ - 1499 + 1547 ], "tertiary_value": [ - 1499 + 1547 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -26144,13 +27005,13 @@ export default { 78 ], "secondary_value": [ - 1499 + 1547 ], "tertiary_value": [ - 1499 + 1547 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -26173,13 +27034,13 @@ export default { 78 ], "secondary_value": [ - 1499 + 1547 ], "tertiary_value": [ - 1499 + 1547 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -26202,13 +27063,13 @@ export default { 78 ], "secondary_value": [ - 1499 + 1547 ], "tertiary_value": [ - 1499 + 1547 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -26219,7 +27080,7 @@ export default { 38 ], "returning": [ - 1655 + 1703 ], "__typename": [ 78 @@ -26227,28 +27088,28 @@ export default { }, "leaderboard_entries_order_by": { "matches_played": [ - 2781 + 2829 ], "player_avatar_url": [ - 2781 + 2829 ], "player_country": [ - 2781 + 2829 ], "player_name": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "secondary_value": [ - 2781 + 2829 ], "tertiary_value": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -26272,13 +27133,13 @@ export default { 78 ], "secondary_value": [ - 1499 + 1547 ], "tertiary_value": [ - 1499 + 1547 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -26337,7 +27198,7 @@ export default { }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1672 + 1720 ], "ordering": [ 236 @@ -26363,13 +27224,13 @@ export default { 78 ], "secondary_value": [ - 1499 + 1547 ], "tertiary_value": [ - 1499 + 1547 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -26380,13 +27241,13 @@ export default { 38 ], "secondary_value": [ - 1499 + 1547 ], "tertiary_value": [ - 1499 + 1547 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -26394,13 +27255,13 @@ export default { }, "leaderboard_entries_updates": { "_inc": [ - 1660 + 1708 ], "_set": [ - 1667 + 1715 ], "where": [ - 1659 + 1707 ], "__typename": [ 78 @@ -26459,10 +27320,10 @@ export default { }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 4762 + 4921 ], "_winning_tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -26470,19 +27331,19 @@ export default { }, "league_divisions": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 ], "season_divisions": [ - 1830, + 1878, { "distinct_on": [ - 1849, + 1897, "[league_season_divisions_select_column!]" ], "limit": [ @@ -26492,19 +27353,19 @@ export default { 38 ], "order_by": [ - 1847, + 1895, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1885 ] } ], "season_divisions_aggregate": [ - 1831, + 1879, { "distinct_on": [ - 1849, + 1897, "[league_season_divisions_select_column!]" ], "limit": [ @@ -26514,16 +27375,16 @@ export default { 38 ], "order_by": [ - 1847, + 1895, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1885 ] } ], "tier": [ - 3917 + 3965 ], "__typename": [ 78 @@ -26531,10 +27392,10 @@ export default { }, "league_divisions_aggregate": { "aggregate": [ - 1681 + 1729 ], "nodes": [ - 1679 + 1727 ], "__typename": [ 78 @@ -26542,13 +27403,13 @@ export default { }, "league_divisions_aggregate_fields": { "avg": [ - 1682 + 1730 ], "count": [ 38, { "columns": [ - 1694, + 1742, "[league_divisions_select_column!]" ], "distinct": [ @@ -26557,31 +27418,31 @@ export default { } ], "max": [ - 1687 + 1735 ], "min": [ - 1688 + 1736 ], "stddev": [ - 1696 + 1744 ], "stddev_pop": [ - 1697 + 1745 ], "stddev_samp": [ - 1698 + 1746 ], "sum": [ - 1701 + 1749 ], "var_pop": [ - 1704 + 1752 ], "var_samp": [ - 1705 + 1753 ], "variance": [ - 1706 + 1754 ], "__typename": [ 78 @@ -26597,31 +27458,31 @@ export default { }, "league_divisions_bool_exp": { "_and": [ - 1683 + 1731 ], "_not": [ - 1683 + 1731 ], "_or": [ - 1683 + 1731 ], "created_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "name": [ 80 ], "season_divisions": [ - 1837 + 1885 ], "season_divisions_aggregate": [ - 1832 + 1880 ], "tier": [ - 3918 + 3966 ], "__typename": [ 78 @@ -26630,7 +27491,7 @@ export default { "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 3917 + 3965 ], "__typename": [ 78 @@ -26638,19 +27499,19 @@ export default { }, "league_divisions_insert_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 ], "season_divisions": [ - 1836 + 1884 ], "tier": [ - 3917 + 3965 ], "__typename": [ 78 @@ -26658,16 +27519,16 @@ export default { }, "league_divisions_max_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 ], "tier": [ - 3917 + 3965 ], "__typename": [ 78 @@ -26675,16 +27536,16 @@ export default { }, "league_divisions_min_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 ], "tier": [ - 3917 + 3965 ], "__typename": [ 78 @@ -26695,7 +27556,7 @@ export default { 38 ], "returning": [ - 1679 + 1727 ], "__typename": [ 78 @@ -26703,10 +27564,10 @@ export default { }, "league_divisions_obj_rel_insert_input": { "data": [ - 1686 + 1734 ], "on_conflict": [ - 1691 + 1739 ], "__typename": [ 78 @@ -26714,13 +27575,13 @@ export default { }, "league_divisions_on_conflict": { "constraint": [ - 1684 + 1732 ], "update_columns": [ - 1702 + 1750 ], "where": [ - 1683 + 1731 ], "__typename": [ 78 @@ -26728,19 +27589,19 @@ export default { }, "league_divisions_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "season_divisions_aggregate": [ - 1835 + 1883 ], "tier": [ - 2781 + 2829 ], "__typename": [ 78 @@ -26748,7 +27609,7 @@ export default { }, "league_divisions_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -26757,16 +27618,16 @@ export default { "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 ], "tier": [ - 3917 + 3965 ], "__typename": [ 78 @@ -26798,7 +27659,7 @@ export default { }, "league_divisions_stream_cursor_input": { "initial_value": [ - 1700 + 1748 ], "ordering": [ 236 @@ -26809,16 +27670,16 @@ export default { }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 ], "tier": [ - 3917 + 3965 ], "__typename": [ 78 @@ -26826,7 +27687,7 @@ export default { }, "league_divisions_sum_fields": { "tier": [ - 3917 + 3965 ], "__typename": [ 78 @@ -26835,13 +27696,13 @@ export default { "league_divisions_update_column": {}, "league_divisions_updates": { "_inc": [ - 1685 + 1733 ], "_set": [ - 1695 + 1743 ], "where": [ - 1683 + 1731 ], "__typename": [ 78 @@ -26873,25 +27734,25 @@ export default { }, "league_match_weeks": { "closes_at": [ - 4324 + 4376 ], "created_at": [ - 4324 + 4376 ], "default_match_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "opens_at": [ - 4324 + 4376 ], "season": [ - 1855 + 1903 ], "week_number": [ 38 @@ -26902,10 +27763,10 @@ export default { }, "league_match_weeks_aggregate": { "aggregate": [ - 1711 + 1759 ], "nodes": [ - 1707 + 1755 ], "__typename": [ 78 @@ -26913,7 +27774,7 @@ export default { }, "league_match_weeks_aggregate_bool_exp": { "count": [ - 1710 + 1758 ], "__typename": [ 78 @@ -26921,13 +27782,13 @@ export default { }, "league_match_weeks_aggregate_bool_exp_count": { "arguments": [ - 1728 + 1776 ], "distinct": [ 3 ], "filter": [ - 1716 + 1764 ], "predicate": [ 39 @@ -26938,13 +27799,13 @@ export default { }, "league_match_weeks_aggregate_fields": { "avg": [ - 1714 + 1762 ], "count": [ 38, { "columns": [ - 1728, + 1776, "[league_match_weeks_select_column!]" ], "distinct": [ @@ -26953,31 +27814,31 @@ export default { } ], "max": [ - 1720 + 1768 ], "min": [ - 1722 + 1770 ], "stddev": [ - 1730 + 1778 ], "stddev_pop": [ - 1732 + 1780 ], "stddev_samp": [ - 1734 + 1782 ], "sum": [ - 1738 + 1786 ], "var_pop": [ - 1742 + 1790 ], "var_samp": [ - 1744 + 1792 ], "variance": [ - 1746 + 1794 ], "__typename": [ 78 @@ -26985,37 +27846,37 @@ export default { }, "league_match_weeks_aggregate_order_by": { "avg": [ - 1715 + 1763 ], "count": [ - 2781 + 2829 ], "max": [ - 1721 + 1769 ], "min": [ - 1723 + 1771 ], "stddev": [ - 1731 + 1779 ], "stddev_pop": [ - 1733 + 1781 ], "stddev_samp": [ - 1735 + 1783 ], "sum": [ - 1739 + 1787 ], "var_pop": [ - 1743 + 1791 ], "var_samp": [ - 1745 + 1793 ], "variance": [ - 1747 + 1795 ], "__typename": [ 78 @@ -27023,10 +27884,10 @@ export default { }, "league_match_weeks_arr_rel_insert_input": { "data": [ - 1719 + 1767 ], "on_conflict": [ - 1725 + 1773 ], "__typename": [ 78 @@ -27042,7 +27903,7 @@ export default { }, "league_match_weeks_avg_order_by": { "week_number": [ - 2781 + 2829 ], "__typename": [ 78 @@ -27050,34 +27911,34 @@ export default { }, "league_match_weeks_bool_exp": { "_and": [ - 1716 + 1764 ], "_not": [ - 1716 + 1764 ], "_or": [ - 1716 + 1764 ], "closes_at": [ - 4325 + 4377 ], "created_at": [ - 4325 + 4377 ], "default_match_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "league_season_id": [ - 4764 + 4923 ], "opens_at": [ - 4325 + 4377 ], "season": [ - 1860 + 1908 ], "week_number": [ 39 @@ -27097,25 +27958,25 @@ export default { }, "league_match_weeks_insert_input": { "closes_at": [ - 4324 + 4376 ], "created_at": [ - 4324 + 4376 ], "default_match_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "opens_at": [ - 4324 + 4376 ], "season": [ - 1870 + 1918 ], "week_number": [ 38 @@ -27126,22 +27987,22 @@ export default { }, "league_match_weeks_max_fields": { "closes_at": [ - 4324 + 4376 ], "created_at": [ - 4324 + 4376 ], "default_match_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "opens_at": [ - 4324 + 4376 ], "week_number": [ 38 @@ -27152,25 +28013,25 @@ export default { }, "league_match_weeks_max_order_by": { "closes_at": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "default_match_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "opens_at": [ - 2781 + 2829 ], "week_number": [ - 2781 + 2829 ], "__typename": [ 78 @@ -27178,22 +28039,22 @@ export default { }, "league_match_weeks_min_fields": { "closes_at": [ - 4324 + 4376 ], "created_at": [ - 4324 + 4376 ], "default_match_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "opens_at": [ - 4324 + 4376 ], "week_number": [ 38 @@ -27204,25 +28065,25 @@ export default { }, "league_match_weeks_min_order_by": { "closes_at": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "default_match_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "opens_at": [ - 2781 + 2829 ], "week_number": [ - 2781 + 2829 ], "__typename": [ 78 @@ -27233,7 +28094,7 @@ export default { 38 ], "returning": [ - 1707 + 1755 ], "__typename": [ 78 @@ -27241,13 +28102,13 @@ export default { }, "league_match_weeks_on_conflict": { "constraint": [ - 1717 + 1765 ], "update_columns": [ - 1740 + 1788 ], "where": [ - 1716 + 1764 ], "__typename": [ 78 @@ -27255,28 +28116,28 @@ export default { }, "league_match_weeks_order_by": { "closes_at": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "default_match_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "opens_at": [ - 2781 + 2829 ], "season": [ - 1872 + 1920 ], "week_number": [ - 2781 + 2829 ], "__typename": [ 78 @@ -27284,7 +28145,7 @@ export default { }, "league_match_weeks_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -27293,22 +28154,22 @@ export default { "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4324 + 4376 ], "created_at": [ - 4324 + 4376 ], "default_match_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "opens_at": [ - 4324 + 4376 ], "week_number": [ 38 @@ -27327,7 +28188,7 @@ export default { }, "league_match_weeks_stddev_order_by": { "week_number": [ - 2781 + 2829 ], "__typename": [ 78 @@ -27343,7 +28204,7 @@ export default { }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 2781 + 2829 ], "__typename": [ 78 @@ -27359,7 +28220,7 @@ export default { }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 2781 + 2829 ], "__typename": [ 78 @@ -27367,7 +28228,7 @@ export default { }, "league_match_weeks_stream_cursor_input": { "initial_value": [ - 1737 + 1785 ], "ordering": [ 236 @@ -27378,22 +28239,22 @@ export default { }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4324 + 4376 ], "created_at": [ - 4324 + 4376 ], "default_match_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "opens_at": [ - 4324 + 4376 ], "week_number": [ 38 @@ -27412,7 +28273,7 @@ export default { }, "league_match_weeks_sum_order_by": { "week_number": [ - 2781 + 2829 ], "__typename": [ 78 @@ -27421,13 +28282,13 @@ export default { "league_match_weeks_update_column": {}, "league_match_weeks_updates": { "_inc": [ - 1718 + 1766 ], "_set": [ - 1729 + 1777 ], "where": [ - 1716 + 1764 ], "__typename": [ 78 @@ -27443,7 +28304,7 @@ export default { }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 2781 + 2829 ], "__typename": [ 78 @@ -27459,7 +28320,7 @@ export default { }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 2781 + 2829 ], "__typename": [ 78 @@ -27475,7 +28336,7 @@ export default { }, "league_match_weeks_variance_order_by": { "week_number": [ - 2781 + 2829 ], "__typename": [ 78 @@ -27483,40 +28344,40 @@ export default { }, "league_relegation_playoffs": { "created_at": [ - 4324 + 4376 ], "higher_division": [ - 1679 + 1727 ], "higher_division_id": [ - 4762 + 4921 ], "higher_slots": [ 38 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "lower_division": [ - 1679 + 1727 ], "lower_division_id": [ - 4762 + 4921 ], "resolved_at": [ - 4324 + 4376 ], "season": [ - 1855 + 1903 ], "tournament": [ - 4716 + 4857 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -27524,10 +28385,10 @@ export default { }, "league_relegation_playoffs_aggregate": { "aggregate": [ - 1752 + 1800 ], "nodes": [ - 1748 + 1796 ], "__typename": [ 78 @@ -27535,7 +28396,7 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp": { "count": [ - 1751 + 1799 ], "__typename": [ 78 @@ -27543,13 +28404,13 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp_count": { "arguments": [ - 1769 + 1817 ], "distinct": [ 3 ], "filter": [ - 1757 + 1805 ], "predicate": [ 39 @@ -27560,13 +28421,13 @@ export default { }, "league_relegation_playoffs_aggregate_fields": { "avg": [ - 1755 + 1803 ], "count": [ 38, { "columns": [ - 1769, + 1817, "[league_relegation_playoffs_select_column!]" ], "distinct": [ @@ -27575,31 +28436,31 @@ export default { } ], "max": [ - 1761 + 1809 ], "min": [ - 1763 + 1811 ], "stddev": [ - 1771 + 1819 ], "stddev_pop": [ - 1773 + 1821 ], "stddev_samp": [ - 1775 + 1823 ], "sum": [ - 1779 + 1827 ], "var_pop": [ - 1783 + 1831 ], "var_samp": [ - 1785 + 1833 ], "variance": [ - 1787 + 1835 ], "__typename": [ 78 @@ -27607,37 +28468,37 @@ export default { }, "league_relegation_playoffs_aggregate_order_by": { "avg": [ - 1756 + 1804 ], "count": [ - 2781 + 2829 ], "max": [ - 1762 + 1810 ], "min": [ - 1764 + 1812 ], "stddev": [ - 1772 + 1820 ], "stddev_pop": [ - 1774 + 1822 ], "stddev_samp": [ - 1776 + 1824 ], "sum": [ - 1780 + 1828 ], "var_pop": [ - 1784 + 1832 ], "var_samp": [ - 1786 + 1834 ], "variance": [ - 1788 + 1836 ], "__typename": [ 78 @@ -27645,10 +28506,10 @@ export default { }, "league_relegation_playoffs_arr_rel_insert_input": { "data": [ - 1760 + 1808 ], "on_conflict": [ - 1766 + 1814 ], "__typename": [ 78 @@ -27664,7 +28525,7 @@ export default { }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 2781 + 2829 ], "__typename": [ 78 @@ -27672,49 +28533,49 @@ export default { }, "league_relegation_playoffs_bool_exp": { "_and": [ - 1757 + 1805 ], "_not": [ - 1757 + 1805 ], "_or": [ - 1757 + 1805 ], "created_at": [ - 4325 + 4377 ], "higher_division": [ - 1683 + 1731 ], "higher_division_id": [ - 4764 + 4923 ], "higher_slots": [ 39 ], "id": [ - 4764 + 4923 ], "league_season_id": [ - 4764 + 4923 ], "lower_division": [ - 1683 + 1731 ], "lower_division_id": [ - 4764 + 4923 ], "resolved_at": [ - 4325 + 4377 ], "season": [ - 1860 + 1908 ], "tournament": [ - 4727 + 4878 ], "tournament_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -27731,40 +28592,40 @@ export default { }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4324 + 4376 ], "higher_division": [ - 1690 + 1738 ], "higher_division_id": [ - 4762 + 4921 ], "higher_slots": [ 38 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "lower_division": [ - 1690 + 1738 ], "lower_division_id": [ - 4762 + 4921 ], "resolved_at": [ - 4324 + 4376 ], "season": [ - 1870 + 1918 ], "tournament": [ - 4736 + 4887 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -27772,28 +28633,28 @@ export default { }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4324 + 4376 ], "higher_division_id": [ - 4762 + 4921 ], "higher_slots": [ 38 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "lower_division_id": [ - 4762 + 4921 ], "resolved_at": [ - 4324 + 4376 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -27801,28 +28662,28 @@ export default { }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 2781 + 2829 ], "higher_division_id": [ - 2781 + 2829 ], "higher_slots": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "lower_division_id": [ - 2781 + 2829 ], "resolved_at": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -27830,28 +28691,28 @@ export default { }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4324 + 4376 ], "higher_division_id": [ - 4762 + 4921 ], "higher_slots": [ 38 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "lower_division_id": [ - 4762 + 4921 ], "resolved_at": [ - 4324 + 4376 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -27859,28 +28720,28 @@ export default { }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 2781 + 2829 ], "higher_division_id": [ - 2781 + 2829 ], "higher_slots": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "lower_division_id": [ - 2781 + 2829 ], "resolved_at": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -27891,7 +28752,7 @@ export default { 38 ], "returning": [ - 1748 + 1796 ], "__typename": [ 78 @@ -27899,13 +28760,13 @@ export default { }, "league_relegation_playoffs_on_conflict": { "constraint": [ - 1758 + 1806 ], "update_columns": [ - 1781 + 1829 ], "where": [ - 1757 + 1805 ], "__typename": [ 78 @@ -27913,40 +28774,40 @@ export default { }, "league_relegation_playoffs_order_by": { "created_at": [ - 2781 + 2829 ], "higher_division": [ - 1692 + 1740 ], "higher_division_id": [ - 2781 + 2829 ], "higher_slots": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "lower_division": [ - 1692 + 1740 ], "lower_division_id": [ - 2781 + 2829 ], "resolved_at": [ - 2781 + 2829 ], "season": [ - 1872 + 1920 ], "tournament": [ - 4738 + 4889 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -27954,7 +28815,7 @@ export default { }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -27963,28 +28824,28 @@ export default { "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4324 + 4376 ], "higher_division_id": [ - 4762 + 4921 ], "higher_slots": [ 38 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "lower_division_id": [ - 4762 + 4921 ], "resolved_at": [ - 4324 + 4376 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -28000,7 +28861,7 @@ export default { }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28016,7 +28877,7 @@ export default { }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28032,7 +28893,7 @@ export default { }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28040,7 +28901,7 @@ export default { }, "league_relegation_playoffs_stream_cursor_input": { "initial_value": [ - 1778 + 1826 ], "ordering": [ 236 @@ -28051,28 +28912,28 @@ export default { }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "higher_division_id": [ - 4762 + 4921 ], "higher_slots": [ 38 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "lower_division_id": [ - 4762 + 4921 ], "resolved_at": [ - 4324 + 4376 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -28088,7 +28949,7 @@ export default { }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28097,13 +28958,13 @@ export default { "league_relegation_playoffs_update_column": {}, "league_relegation_playoffs_updates": { "_inc": [ - 1759 + 1807 ], "_set": [ - 1770 + 1818 ], "where": [ - 1757 + 1805 ], "__typename": [ 78 @@ -28119,7 +28980,7 @@ export default { }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28135,7 +28996,7 @@ export default { }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28151,7 +29012,7 @@ export default { }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28159,46 +29020,46 @@ export default { }, "league_scheduling_proposals": { "bracket": [ - 4326 + 4378 ], "created_at": [ - 4324 + 4376 ], "e_proposal_status": [ - 648 + 675 ], "id": [ - 4762 + 4921 ], "message": [ 78 ], "proposed_by": [ - 3739 + 3787 ], "proposed_by_league_team_season_id": [ - 4762 + 4921 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4324 + 4376 ], "responded_by": [ - 3739 + 3787 ], "responded_by_steam_id": [ 180 ], "status": [ - 653 + 680 ], "team_season": [ - 1970 + 2018 ], "tournament_bracket_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -28206,10 +29067,10 @@ export default { }, "league_scheduling_proposals_aggregate": { "aggregate": [ - 1793 + 1841 ], "nodes": [ - 1789 + 1837 ], "__typename": [ 78 @@ -28217,7 +29078,7 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp": { "count": [ - 1792 + 1840 ], "__typename": [ 78 @@ -28225,13 +29086,13 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp_count": { "arguments": [ - 1810 + 1858 ], "distinct": [ 3 ], "filter": [ - 1798 + 1846 ], "predicate": [ 39 @@ -28242,13 +29103,13 @@ export default { }, "league_scheduling_proposals_aggregate_fields": { "avg": [ - 1796 + 1844 ], "count": [ 38, { "columns": [ - 1810, + 1858, "[league_scheduling_proposals_select_column!]" ], "distinct": [ @@ -28257,31 +29118,31 @@ export default { } ], "max": [ - 1802 + 1850 ], "min": [ - 1804 + 1852 ], "stddev": [ - 1812 + 1860 ], "stddev_pop": [ - 1814 + 1862 ], "stddev_samp": [ - 1816 + 1864 ], "sum": [ - 1820 + 1868 ], "var_pop": [ - 1824 + 1872 ], "var_samp": [ - 1826 + 1874 ], "variance": [ - 1828 + 1876 ], "__typename": [ 78 @@ -28289,37 +29150,37 @@ export default { }, "league_scheduling_proposals_aggregate_order_by": { "avg": [ - 1797 + 1845 ], "count": [ - 2781 + 2829 ], "max": [ - 1803 + 1851 ], "min": [ - 1805 + 1853 ], "stddev": [ - 1813 + 1861 ], "stddev_pop": [ - 1815 + 1863 ], "stddev_samp": [ - 1817 + 1865 ], "sum": [ - 1821 + 1869 ], "var_pop": [ - 1825 + 1873 ], "var_samp": [ - 1827 + 1875 ], "variance": [ - 1829 + 1877 ], "__typename": [ 78 @@ -28327,10 +29188,10 @@ export default { }, "league_scheduling_proposals_arr_rel_insert_input": { "data": [ - 1801 + 1849 ], "on_conflict": [ - 1807 + 1855 ], "__typename": [ 78 @@ -28349,10 +29210,10 @@ export default { }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "responded_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28360,55 +29221,55 @@ export default { }, "league_scheduling_proposals_bool_exp": { "_and": [ - 1798 + 1846 ], "_not": [ - 1798 + 1846 ], "_or": [ - 1798 + 1846 ], "bracket": [ - 4337 + 4389 ], "created_at": [ - 4325 + 4377 ], "e_proposal_status": [ - 651 + 678 ], "id": [ - 4764 + 4923 ], "message": [ 80 ], "proposed_by": [ - 3743 + 3791 ], "proposed_by_league_team_season_id": [ - 4764 + 4923 ], "proposed_by_steam_id": [ 182 ], "proposed_time": [ - 4325 + 4377 ], "responded_by": [ - 3743 + 3791 ], "responded_by_steam_id": [ 182 ], "status": [ - 654 + 681 ], "team_season": [ - 1979 + 2027 ], "tournament_bracket_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -28428,46 +29289,46 @@ export default { }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4346 + 4398 ], "created_at": [ - 4324 + 4376 ], "e_proposal_status": [ - 659 + 686 ], "id": [ - 4762 + 4921 ], "message": [ 78 ], "proposed_by": [ - 3750 + 3798 ], "proposed_by_league_team_season_id": [ - 4762 + 4921 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4324 + 4376 ], "responded_by": [ - 3750 + 3798 ], "responded_by_steam_id": [ 180 ], "status": [ - 653 + 680 ], "team_season": [ - 1988 + 2036 ], "tournament_bracket_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -28475,28 +29336,28 @@ export default { }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4762 + 4921 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4324 + 4376 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -28504,28 +29365,28 @@ export default { }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "message": [ - 2781 + 2829 ], "proposed_by_league_team_season_id": [ - 2781 + 2829 ], "proposed_by_steam_id": [ - 2781 + 2829 ], "proposed_time": [ - 2781 + 2829 ], "responded_by_steam_id": [ - 2781 + 2829 ], "tournament_bracket_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28533,28 +29394,28 @@ export default { }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4762 + 4921 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4324 + 4376 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -28562,28 +29423,28 @@ export default { }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "message": [ - 2781 + 2829 ], "proposed_by_league_team_season_id": [ - 2781 + 2829 ], "proposed_by_steam_id": [ - 2781 + 2829 ], "proposed_time": [ - 2781 + 2829 ], "responded_by_steam_id": [ - 2781 + 2829 ], "tournament_bracket_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28594,7 +29455,7 @@ export default { 38 ], "returning": [ - 1789 + 1837 ], "__typename": [ 78 @@ -28602,13 +29463,13 @@ export default { }, "league_scheduling_proposals_on_conflict": { "constraint": [ - 1799 + 1847 ], "update_columns": [ - 1822 + 1870 ], "where": [ - 1798 + 1846 ], "__typename": [ 78 @@ -28616,46 +29477,46 @@ export default { }, "league_scheduling_proposals_order_by": { "bracket": [ - 4348 + 4400 ], "created_at": [ - 2781 + 2829 ], "e_proposal_status": [ - 661 + 688 ], "id": [ - 2781 + 2829 ], "message": [ - 2781 + 2829 ], "proposed_by": [ - 3752 + 3800 ], "proposed_by_league_team_season_id": [ - 2781 + 2829 ], "proposed_by_steam_id": [ - 2781 + 2829 ], "proposed_time": [ - 2781 + 2829 ], "responded_by": [ - 3752 + 3800 ], "responded_by_steam_id": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "team_season": [ - 1990 + 2038 ], "tournament_bracket_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28663,7 +29524,7 @@ export default { }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -28672,31 +29533,31 @@ export default { "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4762 + 4921 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4324 + 4376 ], "responded_by_steam_id": [ 180 ], "status": [ - 653 + 680 ], "tournament_bracket_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -28715,10 +29576,10 @@ export default { }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "responded_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28737,10 +29598,10 @@ export default { }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "responded_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28759,10 +29620,10 @@ export default { }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "responded_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28770,7 +29631,7 @@ export default { }, "league_scheduling_proposals_stream_cursor_input": { "initial_value": [ - 1819 + 1867 ], "ordering": [ 236 @@ -28781,31 +29642,31 @@ export default { }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4762 + 4921 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4324 + 4376 ], "responded_by_steam_id": [ 180 ], "status": [ - 653 + 680 ], "tournament_bracket_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -28824,10 +29685,10 @@ export default { }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "responded_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28836,13 +29697,13 @@ export default { "league_scheduling_proposals_update_column": {}, "league_scheduling_proposals_updates": { "_inc": [ - 1800 + 1848 ], "_set": [ - 1811 + 1859 ], "where": [ - 1798 + 1846 ], "__typename": [ 78 @@ -28861,10 +29722,10 @@ export default { }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "responded_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28883,10 +29744,10 @@ export default { }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "responded_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28905,10 +29766,10 @@ export default { }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "responded_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -28916,28 +29777,28 @@ export default { }, "league_season_divisions": { "created_at": [ - 4324 + 4376 ], "division": [ - 1679 + 1727 ], "id": [ - 4762 + 4921 ], "league_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "season": [ - 1855 + 1903 ], "standings": [ - 4834, + 4993, { "distinct_on": [ - 4850, + 5009, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -28947,19 +29808,19 @@ export default { 38 ], "order_by": [ - 4849, + 5008, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 5002 ] } ], "standings_aggregate": [ - 4835, + 4994, { "distinct_on": [ - 4850, + 5009, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -28969,19 +29830,19 @@ export default { 38 ], "order_by": [ - 4849, + 5008, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 5002 ] } ], "tournament": [ - 4716 + 4857 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -28989,10 +29850,10 @@ export default { }, "league_season_divisions_aggregate": { "aggregate": [ - 1834 + 1882 ], "nodes": [ - 1830 + 1878 ], "__typename": [ 78 @@ -29000,7 +29861,7 @@ export default { }, "league_season_divisions_aggregate_bool_exp": { "count": [ - 1833 + 1881 ], "__typename": [ 78 @@ -29008,13 +29869,13 @@ export default { }, "league_season_divisions_aggregate_bool_exp_count": { "arguments": [ - 1849 + 1897 ], "distinct": [ 3 ], "filter": [ - 1837 + 1885 ], "predicate": [ 39 @@ -29028,7 +29889,7 @@ export default { 38, { "columns": [ - 1849, + 1897, "[league_season_divisions_select_column!]" ], "distinct": [ @@ -29037,10 +29898,10 @@ export default { } ], "max": [ - 1840 + 1888 ], "min": [ - 1842 + 1890 ], "__typename": [ 78 @@ -29048,13 +29909,13 @@ export default { }, "league_season_divisions_aggregate_order_by": { "count": [ - 2781 + 2829 ], "max": [ - 1841 + 1889 ], "min": [ - 1843 + 1891 ], "__typename": [ 78 @@ -29062,10 +29923,10 @@ export default { }, "league_season_divisions_arr_rel_insert_input": { "data": [ - 1839 + 1887 ], "on_conflict": [ - 1846 + 1894 ], "__typename": [ 78 @@ -29073,43 +29934,43 @@ export default { }, "league_season_divisions_bool_exp": { "_and": [ - 1837 + 1885 ], "_not": [ - 1837 + 1885 ], "_or": [ - 1837 + 1885 ], "created_at": [ - 4325 + 4377 ], "division": [ - 1683 + 1731 ], "id": [ - 4764 + 4923 ], "league_division_id": [ - 4764 + 4923 ], "league_season_id": [ - 4764 + 4923 ], "season": [ - 1860 + 1908 ], "standings": [ - 4843 + 5002 ], "standings_aggregate": [ - 4836 + 4995 ], "tournament": [ - 4727 + 4878 ], "tournament_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -29118,31 +29979,31 @@ export default { "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4324 + 4376 ], "division": [ - 1690 + 1738 ], "id": [ - 4762 + 4921 ], "league_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "season": [ - 1870 + 1918 ], "standings": [ - 4840 + 4999 ], "tournament": [ - 4736 + 4887 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -29150,19 +30011,19 @@ export default { }, "league_season_divisions_max_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "league_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -29170,19 +30031,19 @@ export default { }, "league_season_divisions_max_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "league_division_id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -29190,19 +30051,19 @@ export default { }, "league_season_divisions_min_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "league_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -29210,19 +30071,19 @@ export default { }, "league_season_divisions_min_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "league_division_id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -29233,7 +30094,7 @@ export default { 38 ], "returning": [ - 1830 + 1878 ], "__typename": [ 78 @@ -29241,10 +30102,10 @@ export default { }, "league_season_divisions_obj_rel_insert_input": { "data": [ - 1839 + 1887 ], "on_conflict": [ - 1846 + 1894 ], "__typename": [ 78 @@ -29252,13 +30113,13 @@ export default { }, "league_season_divisions_on_conflict": { "constraint": [ - 1838 + 1886 ], "update_columns": [ - 1853 + 1901 ], "where": [ - 1837 + 1885 ], "__typename": [ 78 @@ -29266,31 +30127,31 @@ export default { }, "league_season_divisions_order_by": { "created_at": [ - 2781 + 2829 ], "division": [ - 1692 + 1740 ], "id": [ - 2781 + 2829 ], "league_division_id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "season": [ - 1872 + 1920 ], "standings_aggregate": [ - 4839 + 4998 ], "tournament": [ - 4738 + 4889 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -29298,7 +30159,7 @@ export default { }, "league_season_divisions_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -29307,19 +30168,19 @@ export default { "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "league_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -29327,7 +30188,7 @@ export default { }, "league_season_divisions_stream_cursor_input": { "initial_value": [ - 1852 + 1900 ], "ordering": [ 236 @@ -29338,19 +30199,19 @@ export default { }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "league_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -29359,10 +30220,10 @@ export default { "league_season_divisions_update_column": {}, "league_season_divisions_updates": { "_set": [ - 1850 + 1898 ], "where": [ - 1837 + 1885 ], "__typename": [ 78 @@ -29376,7 +30237,7 @@ export default { 3 ], "created_at": [ - 4324 + 4376 ], "created_by_steam_id": [ 180 @@ -29391,13 +30252,13 @@ export default { 38 ], "e_league_season_status": [ - 690 + 717 ], "games_per_week": [ 38 ], "id": [ - 4762 + 4921 ], "is_league_admin": [ 3 @@ -29406,13 +30267,13 @@ export default { 3 ], "match_options_id": [ - 4762 + 4921 ], "match_weeks": [ - 1707, + 1755, { "distinct_on": [ - 1728, + 1776, "[league_match_weeks_select_column!]" ], "limit": [ @@ -29422,19 +30283,19 @@ export default { 38 ], "order_by": [ - 1726, + 1774, "[league_match_weeks_order_by!]" ], "where": [ - 1716 + 1764 ] } ], "match_weeks_aggregate": [ - 1708, + 1756, { "distinct_on": [ - 1728, + 1776, "[league_match_weeks_select_column!]" ], "limit": [ @@ -29444,11 +30305,11 @@ export default { 38 ], "order_by": [ - 1726, + 1774, "[league_match_weeks_order_by!]" ], "where": [ - 1716 + 1764 ] } ], @@ -29462,10 +30323,10 @@ export default { 38 ], "movements": [ - 1888, + 1936, { "distinct_on": [ - 1909, + 1957, "[league_team_movements_select_column!]" ], "limit": [ @@ -29475,19 +30336,19 @@ export default { 38 ], "order_by": [ - 1907, + 1955, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1945 ] } ], "movements_aggregate": [ - 1889, + 1937, { "distinct_on": [ - 1909, + 1957, "[league_team_movements_select_column!]" ], "limit": [ @@ -29497,19 +30358,19 @@ export default { 38 ], "order_by": [ - 1907, + 1955, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1945 ] } ], "my_registration": [ - 1970, + 2018, { "distinct_on": [ - 1992, + 2040, "[league_team_seasons_select_column!]" ], "limit": [ @@ -29519,11 +30380,11 @@ export default { 38 ], "order_by": [ - 1990, + 2038, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 2027 ] } ], @@ -29531,13 +30392,13 @@ export default { 78 ], "options": [ - 2476 + 2524 ], "player_stats": [ - 4867, + 5026, { "distinct_on": [ - 4893, + 5052, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -29547,19 +30408,19 @@ export default { 38 ], "order_by": [ - 4892, + 5051, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4886 + 5045 ] } ], "player_stats_aggregate": [ - 4868, + 5027, { "distinct_on": [ - 4893, + 5052, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -29569,11 +30430,11 @@ export default { 38 ], "order_by": [ - 4892, + 5051, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4886 + 5045 ] } ], @@ -29581,7 +30442,7 @@ export default { 38 ], "playoff_round_best_of": [ - 1652, + 1700, { "path": [ 78 @@ -29592,7 +30453,7 @@ export default { 38 ], "playoff_stage_type": [ - 1143 + 1191 ], "playoff_third_place_match": [ 3 @@ -29601,7 +30462,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1143 + 1191 ], "relegate_count": [ 38 @@ -29610,10 +30471,10 @@ export default { 38 ], "relegation_playoffs": [ - 1748, + 1796, { "distinct_on": [ - 1769, + 1817, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -29623,19 +30484,19 @@ export default { 38 ], "order_by": [ - 1767, + 1815, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1757 + 1805 ] } ], "relegation_playoffs_aggregate": [ - 1749, + 1797, { "distinct_on": [ - 1769, + 1817, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -29645,11 +30506,11 @@ export default { 38 ], "order_by": [ - 1767, + 1815, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1757 + 1805 ] } ], @@ -29657,13 +30518,13 @@ export default { 38 ], "roster_lock_at": [ - 4324 + 4376 ], "season_divisions": [ - 1830, + 1878, { "distinct_on": [ - 1849, + 1897, "[league_season_divisions_select_column!]" ], "limit": [ @@ -29673,19 +30534,19 @@ export default { 38 ], "order_by": [ - 1847, + 1895, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1885 ] } ], "season_divisions_aggregate": [ - 1831, + 1879, { "distinct_on": [ - 1849, + 1897, "[league_season_divisions_select_column!]" ], "limit": [ @@ -29695,11 +30556,11 @@ export default { 38 ], "order_by": [ - 1847, + 1895, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1885 ] } ], @@ -29707,16 +30568,16 @@ export default { 38 ], "signup_closes_at": [ - 4324 + 4376 ], "signup_opens_at": [ - 4324 + 4376 ], "standings": [ - 4834, + 4993, { "distinct_on": [ - 4850, + 5009, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -29726,19 +30587,19 @@ export default { 38 ], "order_by": [ - 4849, + 5008, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 5002 ] } ], "standings_aggregate": [ - 4835, + 4994, { "distinct_on": [ - 4850, + 5009, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -29748,25 +30609,25 @@ export default { 38 ], "order_by": [ - 4849, + 5008, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 5002 ] } ], "starts_at": [ - 4324 + 4376 ], "status": [ - 695 + 722 ], "team_seasons": [ - 1970, + 2018, { "distinct_on": [ - 1992, + 2040, "[league_team_seasons_select_column!]" ], "limit": [ @@ -29776,19 +30637,19 @@ export default { 38 ], "order_by": [ - 1990, + 2038, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 2027 ] } ], "team_seasons_aggregate": [ - 1971, + 2019, { "distinct_on": [ - 1992, + 2040, "[league_team_seasons_select_column!]" ], "limit": [ @@ -29798,16 +30659,16 @@ export default { 38 ], "order_by": [ - 1990, + 2038, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 2027 ] } ], "week_best_of": [ - 1652, + 1700, { "path": [ 78 @@ -29820,10 +30681,10 @@ export default { }, "league_seasons_aggregate": { "aggregate": [ - 1857 + 1905 ], "nodes": [ - 1855 + 1903 ], "__typename": [ 78 @@ -29831,13 +30692,13 @@ export default { }, "league_seasons_aggregate_fields": { "avg": [ - 1859 + 1907 ], "count": [ 38, { "columns": [ - 1875, + 1923, "[league_seasons_select_column!]" ], "distinct": [ @@ -29846,31 +30707,31 @@ export default { } ], "max": [ - 1867 + 1915 ], "min": [ - 1868 + 1916 ], "stddev": [ - 1877 + 1925 ], "stddev_pop": [ - 1878 + 1926 ], "stddev_samp": [ - 1879 + 1927 ], "sum": [ - 1882 + 1930 ], "var_pop": [ - 1885 + 1933 ], "var_samp": [ - 1886 + 1934 ], "variance": [ - 1887 + 1935 ], "__typename": [ 78 @@ -29878,10 +30739,10 @@ export default { }, "league_seasons_append_input": { "playoff_round_best_of": [ - 1652 + 1700 ], "week_best_of": [ - 1652 + 1700 ], "__typename": [ 78 @@ -29939,13 +30800,13 @@ export default { }, "league_seasons_bool_exp": { "_and": [ - 1860 + 1908 ], "_not": [ - 1860 + 1908 ], "_or": [ - 1860 + 1908 ], "auto_regular_season_format": [ 4 @@ -29954,7 +30815,7 @@ export default { 4 ], "created_at": [ - 4325 + 4377 ], "created_by_steam_id": [ 182 @@ -29969,13 +30830,13 @@ export default { 39 ], "e_league_season_status": [ - 693 + 720 ], "games_per_week": [ 39 ], "id": [ - 4764 + 4923 ], "is_league_admin": [ 4 @@ -29984,13 +30845,13 @@ export default { 4 ], "match_options_id": [ - 4764 + 4923 ], "match_weeks": [ - 1716 + 1764 ], "match_weeks_aggregate": [ - 1709 + 1757 ], "match_weeks_count": [ 39 @@ -30002,37 +30863,37 @@ export default { 39 ], "movements": [ - 1897 + 1945 ], "movements_aggregate": [ - 1890 + 1938 ], "my_registration": [ - 1979 + 2027 ], "name": [ 80 ], "options": [ - 2480 + 2528 ], "player_stats": [ - 4886 + 5045 ], "player_stats_aggregate": [ - 4869 + 5028 ], "playoff_best_of": [ 39 ], "playoff_round_best_of": [ - 1654 + 1702 ], "playoff_seats": [ 39 ], "playoff_stage_type": [ - 1144 + 1192 ], "playoff_third_place_match": [ 4 @@ -30041,7 +30902,7 @@ export default { 39 ], "regular_season_stage_type": [ - 1144 + 1192 ], "relegate_count": [ 39 @@ -30050,52 +30911,52 @@ export default { 39 ], "relegation_playoffs": [ - 1757 + 1805 ], "relegation_playoffs_aggregate": [ - 1750 + 1798 ], "relegation_up_count": [ 39 ], "roster_lock_at": [ - 4325 + 4377 ], "season_divisions": [ - 1837 + 1885 ], "season_divisions_aggregate": [ - 1832 + 1880 ], "season_number": [ 39 ], "signup_closes_at": [ - 4325 + 4377 ], "signup_opens_at": [ - 4325 + 4377 ], "standings": [ - 4843 + 5002 ], "standings_aggregate": [ - 4836 + 4995 ], "starts_at": [ - 4325 + 4377 ], "status": [ - 696 + 723 ], "team_seasons": [ - 1979 + 2027 ], "team_seasons_aggregate": [ - 1972 + 2020 ], "week_best_of": [ - 1654 + 1702 ], "__typename": [ 78 @@ -30190,7 +31051,7 @@ export default { 3 ], "created_at": [ - 4324 + 4376 ], "created_by_steam_id": [ 180 @@ -30205,19 +31066,19 @@ export default { 38 ], "e_league_season_status": [ - 701 + 728 ], "games_per_week": [ 38 ], "id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "match_weeks": [ - 1713 + 1761 ], "match_weeks_count": [ 38 @@ -30229,28 +31090,28 @@ export default { 38 ], "movements": [ - 1894 + 1942 ], "name": [ 78 ], "options": [ - 2487 + 2535 ], "player_stats": [ - 4883 + 5042 ], "playoff_best_of": [ 38 ], "playoff_round_best_of": [ - 1652 + 1700 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1143 + 1191 ], "playoff_third_place_match": [ 3 @@ -30259,7 +31120,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1143 + 1191 ], "relegate_count": [ 38 @@ -30268,40 +31129,40 @@ export default { 38 ], "relegation_playoffs": [ - 1754 + 1802 ], "relegation_up_count": [ 38 ], "roster_lock_at": [ - 4324 + 4376 ], "season_divisions": [ - 1836 + 1884 ], "season_number": [ 38 ], "signup_closes_at": [ - 4324 + 4376 ], "signup_opens_at": [ - 4324 + 4376 ], "standings": [ - 4840 + 4999 ], "starts_at": [ - 4324 + 4376 ], "status": [ - 695 + 722 ], "team_seasons": [ - 1976 + 2024 ], "week_best_of": [ - 1652 + 1700 ], "__typename": [ 78 @@ -30309,7 +31170,7 @@ export default { }, "league_seasons_max_fields": { "created_at": [ - 4324 + 4376 ], "created_by_steam_id": [ 180 @@ -30327,10 +31188,10 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "match_weeks_count": [ 38 @@ -30363,19 +31224,19 @@ export default { 38 ], "roster_lock_at": [ - 4324 + 4376 ], "season_number": [ 38 ], "signup_closes_at": [ - 4324 + 4376 ], "signup_opens_at": [ - 4324 + 4376 ], "starts_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -30383,7 +31244,7 @@ export default { }, "league_seasons_min_fields": { "created_at": [ - 4324 + 4376 ], "created_by_steam_id": [ 180 @@ -30401,10 +31262,10 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "match_weeks_count": [ 38 @@ -30437,19 +31298,19 @@ export default { 38 ], "roster_lock_at": [ - 4324 + 4376 ], "season_number": [ 38 ], "signup_closes_at": [ - 4324 + 4376 ], "signup_opens_at": [ - 4324 + 4376 ], "starts_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -30460,7 +31321,7 @@ export default { 38 ], "returning": [ - 1855 + 1903 ], "__typename": [ 78 @@ -30468,10 +31329,10 @@ export default { }, "league_seasons_obj_rel_insert_input": { "data": [ - 1866 + 1914 ], "on_conflict": [ - 1871 + 1919 ], "__typename": [ 78 @@ -30479,13 +31340,13 @@ export default { }, "league_seasons_on_conflict": { "constraint": [ - 1861 + 1909 ], "update_columns": [ - 1883 + 1931 ], "where": [ - 1860 + 1908 ], "__typename": [ 78 @@ -30493,133 +31354,133 @@ export default { }, "league_seasons_order_by": { "auto_regular_season_format": [ - 2781 + 2829 ], "can_register": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "created_by_steam_id": [ - 2781 + 2829 ], "default_best_of": [ - 2781 + 2829 ], "direct_promote_count": [ - 2781 + 2829 ], "direct_relegate_count": [ - 2781 + 2829 ], "e_league_season_status": [ - 703 + 730 ], "games_per_week": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "is_league_admin": [ - 2781 + 2829 ], "is_roster_locked": [ - 2781 + 2829 ], "match_options_id": [ - 2781 + 2829 ], "match_weeks_aggregate": [ - 1712 + 1760 ], "match_weeks_count": [ - 2781 + 2829 ], "max_roster_size": [ - 2781 + 2829 ], "min_roster_size": [ - 2781 + 2829 ], "movements_aggregate": [ - 1893 + 1941 ], "my_registration_aggregate": [ - 1975 + 2023 ], "name": [ - 2781 + 2829 ], "options": [ - 2489 + 2537 ], "player_stats_aggregate": [ - 4882 + 5041 ], "playoff_best_of": [ - 2781 + 2829 ], "playoff_round_best_of": [ - 2781 + 2829 ], "playoff_seats": [ - 2781 + 2829 ], "playoff_stage_type": [ - 2781 + 2829 ], "playoff_third_place_match": [ - 2781 + 2829 ], "promote_count": [ - 2781 + 2829 ], "regular_season_stage_type": [ - 2781 + 2829 ], "relegate_count": [ - 2781 + 2829 ], "relegation_down_count": [ - 2781 + 2829 ], "relegation_playoffs_aggregate": [ - 1753 + 1801 ], "relegation_up_count": [ - 2781 + 2829 ], "roster_lock_at": [ - 2781 + 2829 ], "season_divisions_aggregate": [ - 1835 + 1883 ], "season_number": [ - 2781 + 2829 ], "signup_closes_at": [ - 2781 + 2829 ], "signup_opens_at": [ - 2781 + 2829 ], "standings_aggregate": [ - 4839 + 4998 ], "starts_at": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "team_seasons_aggregate": [ - 1975 + 2023 ], "week_best_of": [ - 2781 + 2829 ], "__typename": [ 78 @@ -30627,7 +31488,7 @@ export default { }, "league_seasons_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -30635,10 +31496,10 @@ export default { }, "league_seasons_prepend_input": { "playoff_round_best_of": [ - 1652 + 1700 ], "week_best_of": [ - 1652 + 1700 ], "__typename": [ 78 @@ -30650,7 +31511,7 @@ export default { 3 ], "created_at": [ - 4324 + 4376 ], "created_by_steam_id": [ 180 @@ -30668,10 +31529,10 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "match_weeks_count": [ 38 @@ -30689,13 +31550,13 @@ export default { 38 ], "playoff_round_best_of": [ - 1652 + 1700 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1143 + 1191 ], "playoff_third_place_match": [ 3 @@ -30704,7 +31565,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1143 + 1191 ], "relegate_count": [ 38 @@ -30716,25 +31577,25 @@ export default { 38 ], "roster_lock_at": [ - 4324 + 4376 ], "season_number": [ 38 ], "signup_closes_at": [ - 4324 + 4376 ], "signup_opens_at": [ - 4324 + 4376 ], "starts_at": [ - 4324 + 4376 ], "status": [ - 695 + 722 ], "week_best_of": [ - 1652 + 1700 ], "__typename": [ 78 @@ -30892,7 +31753,7 @@ export default { }, "league_seasons_stream_cursor_input": { "initial_value": [ - 1881 + 1929 ], "ordering": [ 236 @@ -30906,7 +31767,7 @@ export default { 3 ], "created_at": [ - 4324 + 4376 ], "created_by_steam_id": [ 180 @@ -30924,10 +31785,10 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "match_weeks_count": [ 38 @@ -30945,13 +31806,13 @@ export default { 38 ], "playoff_round_best_of": [ - 1652 + 1700 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1143 + 1191 ], "playoff_third_place_match": [ 3 @@ -30960,7 +31821,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1143 + 1191 ], "relegate_count": [ 38 @@ -30972,25 +31833,25 @@ export default { 38 ], "roster_lock_at": [ - 4324 + 4376 ], "season_number": [ 38 ], "signup_closes_at": [ - 4324 + 4376 ], "signup_opens_at": [ - 4324 + 4376 ], "starts_at": [ - 4324 + 4376 ], "status": [ - 695 + 722 ], "week_best_of": [ - 1652 + 1700 ], "__typename": [ 78 @@ -31049,28 +31910,28 @@ export default { "league_seasons_update_column": {}, "league_seasons_updates": { "_append": [ - 1858 + 1906 ], "_delete_at_path": [ - 1862 + 1910 ], "_delete_elem": [ - 1863 + 1911 ], "_delete_key": [ - 1864 + 1912 ], "_inc": [ - 1865 + 1913 ], "_prepend": [ - 1874 + 1922 ], "_set": [ - 1876 + 1924 ], "where": [ - 1860 + 1908 ], "__typename": [ 78 @@ -31228,58 +32089,58 @@ export default { }, "league_team_movements": { "approved_at": [ - 4324 + 4376 ], "approved_by": [ - 3739 + 3787 ], "approved_by_steam_id": [ 180 ], "computed_to_division": [ - 1679 + 1727 ], "computed_to_division_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "e_movement_type": [ - 627 + 654 ], "final_rank": [ 38 ], "final_to_division": [ - 1679 + 1727 ], "final_to_division_id": [ - 4762 + 4921 ], "from_division": [ - 1679 + 1727 ], "from_division_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team": [ - 2012 + 2060 ], "league_team_id": [ - 4762 + 4921 ], "season": [ - 1855 + 1903 ], "type": [ - 632 + 659 ], "__typename": [ 78 @@ -31287,10 +32148,10 @@ export default { }, "league_team_movements_aggregate": { "aggregate": [ - 1892 + 1940 ], "nodes": [ - 1888 + 1936 ], "__typename": [ 78 @@ -31298,7 +32159,7 @@ export default { }, "league_team_movements_aggregate_bool_exp": { "count": [ - 1891 + 1939 ], "__typename": [ 78 @@ -31306,13 +32167,13 @@ export default { }, "league_team_movements_aggregate_bool_exp_count": { "arguments": [ - 1909 + 1957 ], "distinct": [ 3 ], "filter": [ - 1897 + 1945 ], "predicate": [ 39 @@ -31323,13 +32184,13 @@ export default { }, "league_team_movements_aggregate_fields": { "avg": [ - 1895 + 1943 ], "count": [ 38, { "columns": [ - 1909, + 1957, "[league_team_movements_select_column!]" ], "distinct": [ @@ -31338,31 +32199,31 @@ export default { } ], "max": [ - 1901 + 1949 ], "min": [ - 1903 + 1951 ], "stddev": [ - 1911 + 1959 ], "stddev_pop": [ - 1913 + 1961 ], "stddev_samp": [ - 1915 + 1963 ], "sum": [ - 1919 + 1967 ], "var_pop": [ - 1923 + 1971 ], "var_samp": [ - 1925 + 1973 ], "variance": [ - 1927 + 1975 ], "__typename": [ 78 @@ -31370,37 +32231,37 @@ export default { }, "league_team_movements_aggregate_order_by": { "avg": [ - 1896 + 1944 ], "count": [ - 2781 + 2829 ], "max": [ - 1902 + 1950 ], "min": [ - 1904 + 1952 ], "stddev": [ - 1912 + 1960 ], "stddev_pop": [ - 1914 + 1962 ], "stddev_samp": [ - 1916 + 1964 ], "sum": [ - 1920 + 1968 ], "var_pop": [ - 1924 + 1972 ], "var_samp": [ - 1926 + 1974 ], "variance": [ - 1928 + 1976 ], "__typename": [ 78 @@ -31408,10 +32269,10 @@ export default { }, "league_team_movements_arr_rel_insert_input": { "data": [ - 1900 + 1948 ], "on_conflict": [ - 1906 + 1954 ], "__typename": [ 78 @@ -31430,10 +32291,10 @@ export default { }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 2781 + 2829 ], "final_rank": [ - 2781 + 2829 ], "__typename": [ 78 @@ -31441,67 +32302,67 @@ export default { }, "league_team_movements_bool_exp": { "_and": [ - 1897 + 1945 ], "_not": [ - 1897 + 1945 ], "_or": [ - 1897 + 1945 ], "approved_at": [ - 4325 + 4377 ], "approved_by": [ - 3743 + 3791 ], "approved_by_steam_id": [ 182 ], "computed_to_division": [ - 1683 + 1731 ], "computed_to_division_id": [ - 4764 + 4923 ], "created_at": [ - 4325 + 4377 ], "e_movement_type": [ - 630 + 657 ], "final_rank": [ 39 ], "final_to_division": [ - 1683 + 1731 ], "final_to_division_id": [ - 4764 + 4923 ], "from_division": [ - 1683 + 1731 ], "from_division_id": [ - 4764 + 4923 ], "id": [ - 4764 + 4923 ], "league_season_id": [ - 4764 + 4923 ], "league_team": [ - 2015 + 2063 ], "league_team_id": [ - 4764 + 4923 ], "season": [ - 1860 + 1908 ], "type": [ - 633 + 660 ], "__typename": [ 78 @@ -31521,58 +32382,58 @@ export default { }, "league_team_movements_insert_input": { "approved_at": [ - 4324 + 4376 ], "approved_by": [ - 3750 + 3798 ], "approved_by_steam_id": [ 180 ], "computed_to_division": [ - 1690 + 1738 ], "computed_to_division_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "e_movement_type": [ - 638 + 665 ], "final_rank": [ 38 ], "final_to_division": [ - 1690 + 1738 ], "final_to_division_id": [ - 4762 + 4921 ], "from_division": [ - 1690 + 1738 ], "from_division_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team": [ - 2021 + 2069 ], "league_team_id": [ - 4762 + 4921 ], "season": [ - 1870 + 1918 ], "type": [ - 632 + 659 ], "__typename": [ 78 @@ -31580,34 +32441,34 @@ export default { }, "league_team_movements_max_fields": { "approved_at": [ - 4324 + 4376 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4762 + 4921 ], "from_division_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -31615,34 +32476,34 @@ export default { }, "league_team_movements_max_order_by": { "approved_at": [ - 2781 + 2829 ], "approved_by_steam_id": [ - 2781 + 2829 ], "computed_to_division_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "final_rank": [ - 2781 + 2829 ], "final_to_division_id": [ - 2781 + 2829 ], "from_division_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "league_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -31650,34 +32511,34 @@ export default { }, "league_team_movements_min_fields": { "approved_at": [ - 4324 + 4376 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4762 + 4921 ], "from_division_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -31685,34 +32546,34 @@ export default { }, "league_team_movements_min_order_by": { "approved_at": [ - 2781 + 2829 ], "approved_by_steam_id": [ - 2781 + 2829 ], "computed_to_division_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "final_rank": [ - 2781 + 2829 ], "final_to_division_id": [ - 2781 + 2829 ], "from_division_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "league_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -31723,7 +32584,7 @@ export default { 38 ], "returning": [ - 1888 + 1936 ], "__typename": [ 78 @@ -31731,13 +32592,13 @@ export default { }, "league_team_movements_on_conflict": { "constraint": [ - 1898 + 1946 ], "update_columns": [ - 1921 + 1969 ], "where": [ - 1897 + 1945 ], "__typename": [ 78 @@ -31745,58 +32606,58 @@ export default { }, "league_team_movements_order_by": { "approved_at": [ - 2781 + 2829 ], "approved_by": [ - 3752 + 3800 ], "approved_by_steam_id": [ - 2781 + 2829 ], "computed_to_division": [ - 1692 + 1740 ], "computed_to_division_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "e_movement_type": [ - 640 + 667 ], "final_rank": [ - 2781 + 2829 ], "final_to_division": [ - 1692 + 1740 ], "final_to_division_id": [ - 2781 + 2829 ], "from_division": [ - 1692 + 1740 ], "from_division_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "league_team": [ - 2023 + 2071 ], "league_team_id": [ - 2781 + 2829 ], "season": [ - 1872 + 1920 ], "type": [ - 2781 + 2829 ], "__typename": [ 78 @@ -31804,7 +32665,7 @@ export default { }, "league_team_movements_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -31813,37 +32674,37 @@ export default { "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4324 + 4376 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4762 + 4921 ], "from_division_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team_id": [ - 4762 + 4921 ], "type": [ - 632 + 659 ], "__typename": [ 78 @@ -31862,10 +32723,10 @@ export default { }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 2781 + 2829 ], "final_rank": [ - 2781 + 2829 ], "__typename": [ 78 @@ -31884,10 +32745,10 @@ export default { }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 2781 + 2829 ], "final_rank": [ - 2781 + 2829 ], "__typename": [ 78 @@ -31906,10 +32767,10 @@ export default { }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 2781 + 2829 ], "final_rank": [ - 2781 + 2829 ], "__typename": [ 78 @@ -31917,7 +32778,7 @@ export default { }, "league_team_movements_stream_cursor_input": { "initial_value": [ - 1918 + 1966 ], "ordering": [ 236 @@ -31928,37 +32789,37 @@ export default { }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4324 + 4376 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4762 + 4921 ], "from_division_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team_id": [ - 4762 + 4921 ], "type": [ - 632 + 659 ], "__typename": [ 78 @@ -31977,10 +32838,10 @@ export default { }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 2781 + 2829 ], "final_rank": [ - 2781 + 2829 ], "__typename": [ 78 @@ -31989,13 +32850,13 @@ export default { "league_team_movements_update_column": {}, "league_team_movements_updates": { "_inc": [ - 1899 + 1947 ], "_set": [ - 1910 + 1958 ], "where": [ - 1897 + 1945 ], "__typename": [ 78 @@ -32014,10 +32875,10 @@ export default { }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 2781 + 2829 ], "final_rank": [ - 2781 + 2829 ], "__typename": [ 78 @@ -32036,10 +32897,10 @@ export default { }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 2781 + 2829 ], "final_rank": [ - 2781 + 2829 ], "__typename": [ 78 @@ -32058,10 +32919,10 @@ export default { }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 2781 + 2829 ], "final_rank": [ - 2781 + 2829 ], "__typename": [ 78 @@ -32069,28 +32930,28 @@ export default { }, "league_team_rosters": { "added_at": [ - 4324 + 4376 ], "league_team_season_id": [ - 4762 + 4921 ], "player": [ - 3739 + 3787 ], "player_steam_id": [ 180 ], "removed_at": [ - 4324 + 4376 ], "removed_reason": [ 78 ], "status": [ - 1103 + 1130 ], "team_season": [ - 1970 + 2018 ], "__typename": [ 78 @@ -32098,10 +32959,10 @@ export default { }, "league_team_rosters_aggregate": { "aggregate": [ - 1933 + 1981 ], "nodes": [ - 1929 + 1977 ], "__typename": [ 78 @@ -32109,7 +32970,7 @@ export default { }, "league_team_rosters_aggregate_bool_exp": { "count": [ - 1932 + 1980 ], "__typename": [ 78 @@ -32117,13 +32978,13 @@ export default { }, "league_team_rosters_aggregate_bool_exp_count": { "arguments": [ - 1950 + 1998 ], "distinct": [ 3 ], "filter": [ - 1938 + 1986 ], "predicate": [ 39 @@ -32134,13 +32995,13 @@ export default { }, "league_team_rosters_aggregate_fields": { "avg": [ - 1936 + 1984 ], "count": [ 38, { "columns": [ - 1950, + 1998, "[league_team_rosters_select_column!]" ], "distinct": [ @@ -32149,31 +33010,31 @@ export default { } ], "max": [ - 1942 + 1990 ], "min": [ - 1944 + 1992 ], "stddev": [ - 1952 + 2000 ], "stddev_pop": [ - 1954 + 2002 ], "stddev_samp": [ - 1956 + 2004 ], "sum": [ - 1960 + 2008 ], "var_pop": [ - 1964 + 2012 ], "var_samp": [ - 1966 + 2014 ], "variance": [ - 1968 + 2016 ], "__typename": [ 78 @@ -32181,37 +33042,37 @@ export default { }, "league_team_rosters_aggregate_order_by": { "avg": [ - 1937 + 1985 ], "count": [ - 2781 + 2829 ], "max": [ - 1943 + 1991 ], "min": [ - 1945 + 1993 ], "stddev": [ - 1953 + 2001 ], "stddev_pop": [ - 1955 + 2003 ], "stddev_samp": [ - 1957 + 2005 ], "sum": [ - 1961 + 2009 ], "var_pop": [ - 1965 + 2013 ], "var_samp": [ - 1967 + 2015 ], "variance": [ - 1969 + 2017 ], "__typename": [ 78 @@ -32219,10 +33080,10 @@ export default { }, "league_team_rosters_arr_rel_insert_input": { "data": [ - 1941 + 1989 ], "on_conflict": [ - 1947 + 1995 ], "__typename": [ 78 @@ -32238,7 +33099,7 @@ export default { }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -32246,37 +33107,37 @@ export default { }, "league_team_rosters_bool_exp": { "_and": [ - 1938 + 1986 ], "_not": [ - 1938 + 1986 ], "_or": [ - 1938 + 1986 ], "added_at": [ - 4325 + 4377 ], "league_team_season_id": [ - 4764 + 4923 ], "player": [ - 3743 + 3791 ], "player_steam_id": [ 182 ], "removed_at": [ - 4325 + 4377 ], "removed_reason": [ 80 ], "status": [ - 1104 + 1131 ], "team_season": [ - 1979 + 2027 ], "__typename": [ 78 @@ -32293,28 +33154,28 @@ export default { }, "league_team_rosters_insert_input": { "added_at": [ - 4324 + 4376 ], "league_team_season_id": [ - 4762 + 4921 ], "player": [ - 3750 + 3798 ], "player_steam_id": [ 180 ], "removed_at": [ - 4324 + 4376 ], "removed_reason": [ 78 ], "status": [ - 1103 + 1130 ], "team_season": [ - 1988 + 2036 ], "__typename": [ 78 @@ -32322,16 +33183,16 @@ export default { }, "league_team_rosters_max_fields": { "added_at": [ - 4324 + 4376 ], "league_team_season_id": [ - 4762 + 4921 ], "player_steam_id": [ 180 ], "removed_at": [ - 4324 + 4376 ], "removed_reason": [ 78 @@ -32342,19 +33203,19 @@ export default { }, "league_team_rosters_max_order_by": { "added_at": [ - 2781 + 2829 ], "league_team_season_id": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "removed_at": [ - 2781 + 2829 ], "removed_reason": [ - 2781 + 2829 ], "__typename": [ 78 @@ -32362,16 +33223,16 @@ export default { }, "league_team_rosters_min_fields": { "added_at": [ - 4324 + 4376 ], "league_team_season_id": [ - 4762 + 4921 ], "player_steam_id": [ 180 ], "removed_at": [ - 4324 + 4376 ], "removed_reason": [ 78 @@ -32382,19 +33243,19 @@ export default { }, "league_team_rosters_min_order_by": { "added_at": [ - 2781 + 2829 ], "league_team_season_id": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "removed_at": [ - 2781 + 2829 ], "removed_reason": [ - 2781 + 2829 ], "__typename": [ 78 @@ -32405,7 +33266,7 @@ export default { 38 ], "returning": [ - 1929 + 1977 ], "__typename": [ 78 @@ -32413,13 +33274,13 @@ export default { }, "league_team_rosters_on_conflict": { "constraint": [ - 1939 + 1987 ], "update_columns": [ - 1962 + 2010 ], "where": [ - 1938 + 1986 ], "__typename": [ 78 @@ -32427,28 +33288,28 @@ export default { }, "league_team_rosters_order_by": { "added_at": [ - 2781 + 2829 ], "league_team_season_id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "player_steam_id": [ - 2781 + 2829 ], "removed_at": [ - 2781 + 2829 ], "removed_reason": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "team_season": [ - 1990 + 2038 ], "__typename": [ 78 @@ -32456,7 +33317,7 @@ export default { }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 4762 + 4921 ], "player_steam_id": [ 180 @@ -32468,22 +33329,22 @@ export default { "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4324 + 4376 ], "league_team_season_id": [ - 4762 + 4921 ], "player_steam_id": [ 180 ], "removed_at": [ - 4324 + 4376 ], "removed_reason": [ 78 ], "status": [ - 1103 + 1130 ], "__typename": [ 78 @@ -32499,7 +33360,7 @@ export default { }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -32515,7 +33376,7 @@ export default { }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -32531,7 +33392,7 @@ export default { }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -32539,7 +33400,7 @@ export default { }, "league_team_rosters_stream_cursor_input": { "initial_value": [ - 1959 + 2007 ], "ordering": [ 236 @@ -32550,22 +33411,22 @@ export default { }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4324 + 4376 ], "league_team_season_id": [ - 4762 + 4921 ], "player_steam_id": [ 180 ], "removed_at": [ - 4324 + 4376 ], "removed_reason": [ 78 ], "status": [ - 1103 + 1130 ], "__typename": [ 78 @@ -32581,7 +33442,7 @@ export default { }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -32590,13 +33451,13 @@ export default { "league_team_rosters_update_column": {}, "league_team_rosters_updates": { "_inc": [ - 1940 + 1988 ], "_set": [ - 1951 + 1999 ], "where": [ - 1938 + 1986 ], "__typename": [ 78 @@ -32612,7 +33473,7 @@ export default { }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -32628,7 +33489,7 @@ export default { }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -32644,7 +33505,7 @@ export default { }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -32652,55 +33513,55 @@ export default { }, "league_team_seasons": { "assigned_division": [ - 1679 + 1727 ], "assigned_division_id": [ - 4762 + 4921 ], "captain": [ - 3739 + 3787 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4376 ], "decline_reason": [ 78 ], "e_registration_status": [ - 669 + 696 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team": [ - 2012 + 2060 ], "league_team_id": [ - 4762 + 4921 ], "registered_by": [ - 3739 + 3787 ], "registered_by_steam_id": [ 180 ], "requested_division": [ - 1679 + 1727 ], "requested_division_id": [ - 4762 + 4921 ], "roster": [ - 1929, + 1977, { "distinct_on": [ - 1950, + 1998, "[league_team_rosters_select_column!]" ], "limit": [ @@ -32710,19 +33571,19 @@ export default { 38 ], "order_by": [ - 1948, + 1996, "[league_team_rosters_order_by!]" ], "where": [ - 1938 + 1986 ] } ], "roster_aggregate": [ - 1930, + 1978, { "distinct_on": [ - 1950, + 1998, "[league_team_rosters_select_column!]" ], "limit": [ @@ -32732,28 +33593,28 @@ export default { 38 ], "order_by": [ - 1948, + 1996, "[league_team_rosters_order_by!]" ], "where": [ - 1938 + 1986 ] } ], "season": [ - 1855 + 1903 ], "seed": [ 38 ], "status": [ - 674 + 701 ], "tournament_team": [ - 4587 + 4728 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -32761,10 +33622,10 @@ export default { }, "league_team_seasons_aggregate": { "aggregate": [ - 1974 + 2022 ], "nodes": [ - 1970 + 2018 ], "__typename": [ 78 @@ -32772,7 +33633,7 @@ export default { }, "league_team_seasons_aggregate_bool_exp": { "count": [ - 1973 + 2021 ], "__typename": [ 78 @@ -32780,13 +33641,13 @@ export default { }, "league_team_seasons_aggregate_bool_exp_count": { "arguments": [ - 1992 + 2040 ], "distinct": [ 3 ], "filter": [ - 1979 + 2027 ], "predicate": [ 39 @@ -32797,13 +33658,13 @@ export default { }, "league_team_seasons_aggregate_fields": { "avg": [ - 1977 + 2025 ], "count": [ 38, { "columns": [ - 1992, + 2040, "[league_team_seasons_select_column!]" ], "distinct": [ @@ -32812,31 +33673,31 @@ export default { } ], "max": [ - 1983 + 2031 ], "min": [ - 1985 + 2033 ], "stddev": [ - 1994 + 2042 ], "stddev_pop": [ - 1996 + 2044 ], "stddev_samp": [ - 1998 + 2046 ], "sum": [ - 2002 + 2050 ], "var_pop": [ - 2006 + 2054 ], "var_samp": [ - 2008 + 2056 ], "variance": [ - 2010 + 2058 ], "__typename": [ 78 @@ -32844,37 +33705,37 @@ export default { }, "league_team_seasons_aggregate_order_by": { "avg": [ - 1978 + 2026 ], "count": [ - 2781 + 2829 ], "max": [ - 1984 + 2032 ], "min": [ - 1986 + 2034 ], "stddev": [ - 1995 + 2043 ], "stddev_pop": [ - 1997 + 2045 ], "stddev_samp": [ - 1999 + 2047 ], "sum": [ - 2003 + 2051 ], "var_pop": [ - 2007 + 2055 ], "var_samp": [ - 2009 + 2057 ], "variance": [ - 2011 + 2059 ], "__typename": [ 78 @@ -32882,10 +33743,10 @@ export default { }, "league_team_seasons_arr_rel_insert_input": { "data": [ - 1982 + 2030 ], "on_conflict": [ - 1989 + 2037 ], "__typename": [ 78 @@ -32907,13 +33768,13 @@ export default { }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "registered_by_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -32921,79 +33782,79 @@ export default { }, "league_team_seasons_bool_exp": { "_and": [ - 1979 + 2027 ], "_not": [ - 1979 + 2027 ], "_or": [ - 1979 + 2027 ], "assigned_division": [ - 1683 + 1731 ], "assigned_division_id": [ - 4764 + 4923 ], "captain": [ - 3743 + 3791 ], "captain_steam_id": [ 182 ], "created_at": [ - 4325 + 4377 ], "decline_reason": [ 80 ], "e_registration_status": [ - 672 + 699 ], "id": [ - 4764 + 4923 ], "league_season_id": [ - 4764 + 4923 ], "league_team": [ - 2015 + 2063 ], "league_team_id": [ - 4764 + 4923 ], "registered_by": [ - 3743 + 3791 ], "registered_by_steam_id": [ 182 ], "requested_division": [ - 1683 + 1731 ], "requested_division_id": [ - 4764 + 4923 ], "roster": [ - 1938 + 1986 ], "roster_aggregate": [ - 1931 + 1979 ], "season": [ - 1860 + 1908 ], "seed": [ 39 ], "status": [ - 675 + 702 ], "tournament_team": [ - 4596 + 4737 ], "tournament_team_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -33016,67 +33877,67 @@ export default { }, "league_team_seasons_insert_input": { "assigned_division": [ - 1690 + 1738 ], "assigned_division_id": [ - 4762 + 4921 ], "captain": [ - 3750 + 3798 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4376 ], "decline_reason": [ 78 ], "e_registration_status": [ - 680 + 707 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team": [ - 2021 + 2069 ], "league_team_id": [ - 4762 + 4921 ], "registered_by": [ - 3750 + 3798 ], "registered_by_steam_id": [ 180 ], "requested_division": [ - 1690 + 1738 ], "requested_division_id": [ - 4762 + 4921 ], "roster": [ - 1935 + 1983 ], "season": [ - 1870 + 1918 ], "seed": [ 38 ], "status": [ - 674 + 701 ], "tournament_team": [ - 4605 + 4746 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -33084,37 +33945,37 @@ export default { }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 4762 + 4921 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4376 ], "decline_reason": [ 78 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team_id": [ - 4762 + 4921 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4762 + 4921 ], "seed": [ 38 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -33122,37 +33983,37 @@ export default { }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 2781 + 2829 ], "captain_steam_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "decline_reason": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "league_team_id": [ - 2781 + 2829 ], "registered_by_steam_id": [ - 2781 + 2829 ], "requested_division_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -33160,37 +34021,37 @@ export default { }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 4762 + 4921 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4376 ], "decline_reason": [ 78 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team_id": [ - 4762 + 4921 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4762 + 4921 ], "seed": [ 38 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -33198,37 +34059,37 @@ export default { }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 2781 + 2829 ], "captain_steam_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "decline_reason": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "league_team_id": [ - 2781 + 2829 ], "registered_by_steam_id": [ - 2781 + 2829 ], "requested_division_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -33239,7 +34100,7 @@ export default { 38 ], "returning": [ - 1970 + 2018 ], "__typename": [ 78 @@ -33247,10 +34108,10 @@ export default { }, "league_team_seasons_obj_rel_insert_input": { "data": [ - 1982 + 2030 ], "on_conflict": [ - 1989 + 2037 ], "__typename": [ 78 @@ -33258,13 +34119,13 @@ export default { }, "league_team_seasons_on_conflict": { "constraint": [ - 1980 + 2028 ], "update_columns": [ - 2004 + 2052 ], "where": [ - 1979 + 2027 ], "__typename": [ 78 @@ -33272,67 +34133,67 @@ export default { }, "league_team_seasons_order_by": { "assigned_division": [ - 1692 + 1740 ], "assigned_division_id": [ - 2781 + 2829 ], "captain": [ - 3752 + 3800 ], "captain_steam_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "decline_reason": [ - 2781 + 2829 ], "e_registration_status": [ - 682 + 709 ], "id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "league_team": [ - 2023 + 2071 ], "league_team_id": [ - 2781 + 2829 ], "registered_by": [ - 3752 + 3800 ], "registered_by_steam_id": [ - 2781 + 2829 ], "requested_division": [ - 1692 + 1740 ], "requested_division_id": [ - 2781 + 2829 ], "roster_aggregate": [ - 1934 + 1982 ], "season": [ - 1872 + 1920 ], "seed": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "tournament_team": [ - 4607 + 4748 ], "tournament_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -33340,7 +34201,7 @@ export default { }, "league_team_seasons_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -33349,40 +34210,40 @@ export default { "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 4762 + 4921 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4376 ], "decline_reason": [ 78 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team_id": [ - 4762 + 4921 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4762 + 4921 ], "seed": [ 38 ], "status": [ - 674 + 701 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -33404,13 +34265,13 @@ export default { }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "registered_by_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -33432,13 +34293,13 @@ export default { }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "registered_by_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -33460,13 +34321,13 @@ export default { }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "registered_by_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -33474,7 +34335,7 @@ export default { }, "league_team_seasons_stream_cursor_input": { "initial_value": [ - 2001 + 2049 ], "ordering": [ 236 @@ -33485,40 +34346,40 @@ export default { }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 4762 + 4921 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4376 ], "decline_reason": [ 78 ], "id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team_id": [ - 4762 + 4921 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4762 + 4921 ], "seed": [ 38 ], "status": [ - 674 + 701 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -33540,13 +34401,13 @@ export default { }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "registered_by_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -33555,13 +34416,13 @@ export default { "league_team_seasons_update_column": {}, "league_team_seasons_updates": { "_inc": [ - 1981 + 2029 ], "_set": [ - 1993 + 2041 ], "where": [ - 1979 + 2027 ], "__typename": [ 78 @@ -33583,13 +34444,13 @@ export default { }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "registered_by_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -33611,13 +34472,13 @@ export default { }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "registered_by_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -33639,13 +34500,13 @@ export default { }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "registered_by_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -33653,16 +34514,16 @@ export default { }, "league_teams": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "movements": [ - 1888, + 1936, { "distinct_on": [ - 1909, + 1957, "[league_team_movements_select_column!]" ], "limit": [ @@ -33672,19 +34533,19 @@ export default { 38 ], "order_by": [ - 1907, + 1955, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1945 ] } ], "movements_aggregate": [ - 1889, + 1937, { "distinct_on": [ - 1909, + 1957, "[league_team_movements_select_column!]" ], "limit": [ @@ -33694,25 +34555,25 @@ export default { 38 ], "order_by": [ - 1907, + 1955, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1945 ] } ], "team": [ - 4281 + 4329 ], "team_id": [ - 4762 + 4921 ], "team_seasons": [ - 1970, + 2018, { "distinct_on": [ - 1992, + 2040, "[league_team_seasons_select_column!]" ], "limit": [ @@ -33722,19 +34583,19 @@ export default { 38 ], "order_by": [ - 1990, + 2038, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 2027 ] } ], "team_seasons_aggregate": [ - 1971, + 2019, { "distinct_on": [ - 1992, + 2040, "[league_team_seasons_select_column!]" ], "limit": [ @@ -33744,11 +34605,11 @@ export default { 38 ], "order_by": [ - 1990, + 2038, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 2027 ] } ], @@ -33758,10 +34619,10 @@ export default { }, "league_teams_aggregate": { "aggregate": [ - 2014 + 2062 ], "nodes": [ - 2012 + 2060 ], "__typename": [ 78 @@ -33772,7 +34633,7 @@ export default { 38, { "columns": [ - 2025, + 2073, "[league_teams_select_column!]" ], "distinct": [ @@ -33781,10 +34642,10 @@ export default { } ], "max": [ - 2018 + 2066 ], "min": [ - 2019 + 2067 ], "__typename": [ 78 @@ -33792,37 +34653,37 @@ export default { }, "league_teams_bool_exp": { "_and": [ - 2015 + 2063 ], "_not": [ - 2015 + 2063 ], "_or": [ - 2015 + 2063 ], "created_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "movements": [ - 1897 + 1945 ], "movements_aggregate": [ - 1890 + 1938 ], "team": [ - 4290 + 4340 ], "team_id": [ - 4764 + 4923 ], "team_seasons": [ - 1979 + 2027 ], "team_seasons_aggregate": [ - 1972 + 2020 ], "__typename": [ 78 @@ -33831,22 +34692,22 @@ export default { "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "movements": [ - 1894 + 1942 ], "team": [ - 4299 + 4349 ], "team_id": [ - 4762 + 4921 ], "team_seasons": [ - 1976 + 2024 ], "__typename": [ 78 @@ -33854,13 +34715,13 @@ export default { }, "league_teams_max_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -33868,13 +34729,13 @@ export default { }, "league_teams_min_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -33885,7 +34746,7 @@ export default { 38 ], "returning": [ - 2012 + 2060 ], "__typename": [ 78 @@ -33893,10 +34754,10 @@ export default { }, "league_teams_obj_rel_insert_input": { "data": [ - 2017 + 2065 ], "on_conflict": [ - 2022 + 2070 ], "__typename": [ 78 @@ -33904,13 +34765,13 @@ export default { }, "league_teams_on_conflict": { "constraint": [ - 2016 + 2064 ], "update_columns": [ - 2029 + 2077 ], "where": [ - 2015 + 2063 ], "__typename": [ 78 @@ -33918,22 +34779,22 @@ export default { }, "league_teams_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "movements_aggregate": [ - 1893 + 1941 ], "team": [ - 4301 + 4351 ], "team_id": [ - 2781 + 2829 ], "team_seasons_aggregate": [ - 1975 + 2023 ], "__typename": [ 78 @@ -33941,7 +34802,7 @@ export default { }, "league_teams_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -33950,13 +34811,13 @@ export default { "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -33964,7 +34825,7 @@ export default { }, "league_teams_stream_cursor_input": { "initial_value": [ - 2028 + 2076 ], "ordering": [ 236 @@ -33975,13 +34836,13 @@ export default { }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -33990,10 +34851,10 @@ export default { "league_teams_update_column": {}, "league_teams_updates": { "_set": [ - 2026 + 2074 ], "where": [ - 2015 + 2063 ], "__typename": [ 78 @@ -34001,22 +34862,22 @@ export default { }, "lobbies": { "access": [ - 716 + 743 ], "created_at": [ - 4324 + 4376 ], "e_lobby_access": [ - 711 + 738 ], "id": [ - 4762 + 4921 ], "players": [ - 2050, + 2098, { "distinct_on": [ - 2073, + 2121, "[lobby_players_select_column!]" ], "limit": [ @@ -34026,19 +34887,19 @@ export default { 38 ], "order_by": [ - 2071, + 2119, "[lobby_players_order_by!]" ], "where": [ - 2061 + 2109 ] } ], "players_aggregate": [ - 2051, + 2099, { "distinct_on": [ - 2073, + 2121, "[lobby_players_select_column!]" ], "limit": [ @@ -34048,11 +34909,11 @@ export default { 38 ], "order_by": [ - 2071, + 2119, "[lobby_players_order_by!]" ], "where": [ - 2061 + 2109 ] } ], @@ -34062,10 +34923,10 @@ export default { }, "lobbies_aggregate": { "aggregate": [ - 2033 + 2081 ], "nodes": [ - 2031 + 2079 ], "__typename": [ 78 @@ -34076,7 +34937,7 @@ export default { 38, { "columns": [ - 2044, + 2092, "[lobbies_select_column!]" ], "distinct": [ @@ -34085,10 +34946,10 @@ export default { } ], "max": [ - 2037 + 2085 ], "min": [ - 2038 + 2086 ], "__typename": [ 78 @@ -34096,31 +34957,31 @@ export default { }, "lobbies_bool_exp": { "_and": [ - 2034 + 2082 ], "_not": [ - 2034 + 2082 ], "_or": [ - 2034 + 2082 ], "access": [ - 717 + 744 ], "created_at": [ - 4325 + 4377 ], "e_lobby_access": [ - 714 + 741 ], "id": [ - 4764 + 4923 ], "players": [ - 2061 + 2109 ], "players_aggregate": [ - 2052 + 2100 ], "__typename": [ 78 @@ -34129,19 +34990,19 @@ export default { "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 716 + 743 ], "created_at": [ - 4324 + 4376 ], "e_lobby_access": [ - 722 + 749 ], "id": [ - 4762 + 4921 ], "players": [ - 2058 + 2106 ], "__typename": [ 78 @@ -34149,10 +35010,10 @@ export default { }, "lobbies_max_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -34160,10 +35021,10 @@ export default { }, "lobbies_min_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -34174,7 +35035,7 @@ export default { 38 ], "returning": [ - 2031 + 2079 ], "__typename": [ 78 @@ -34182,10 +35043,10 @@ export default { }, "lobbies_obj_rel_insert_input": { "data": [ - 2036 + 2084 ], "on_conflict": [ - 2041 + 2089 ], "__typename": [ 78 @@ -34193,13 +35054,13 @@ export default { }, "lobbies_on_conflict": { "constraint": [ - 2035 + 2083 ], "update_columns": [ - 2048 + 2096 ], "where": [ - 2034 + 2082 ], "__typename": [ 78 @@ -34207,19 +35068,19 @@ export default { }, "lobbies_order_by": { "access": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "e_lobby_access": [ - 724 + 751 ], "id": [ - 2781 + 2829 ], "players_aggregate": [ - 2057 + 2105 ], "__typename": [ 78 @@ -34227,7 +35088,7 @@ export default { }, "lobbies_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -34236,13 +35097,13 @@ export default { "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 716 + 743 ], "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -34250,7 +35111,7 @@ export default { }, "lobbies_stream_cursor_input": { "initial_value": [ - 2047 + 2095 ], "ordering": [ 236 @@ -34261,13 +35122,13 @@ export default { }, "lobbies_stream_cursor_value_input": { "access": [ - 716 + 743 ], "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -34276,10 +35137,10 @@ export default { "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 2045 + 2093 ], "where": [ - 2034 + 2082 ], "__typename": [ 78 @@ -34293,16 +35154,16 @@ export default { 180 ], "lobby": [ - 2031 + 2079 ], "lobby_id": [ - 4762 + 4921 ], "player": [ - 3739 + 3787 ], "status": [ - 737 + 764 ], "steam_id": [ 180 @@ -34313,10 +35174,10 @@ export default { }, "lobby_players_aggregate": { "aggregate": [ - 2056 + 2104 ], "nodes": [ - 2050 + 2098 ], "__typename": [ 78 @@ -34324,13 +35185,13 @@ export default { }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 2053 + 2101 ], "bool_or": [ - 2054 + 2102 ], "count": [ - 2055 + 2103 ], "__typename": [ 78 @@ -34338,13 +35199,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2074 + 2122 ], "distinct": [ 3 ], "filter": [ - 2061 + 2109 ], "predicate": [ 4 @@ -34355,13 +35216,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2075 + 2123 ], "distinct": [ 3 ], "filter": [ - 2061 + 2109 ], "predicate": [ 4 @@ -34372,13 +35233,13 @@ export default { }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 2073 + 2121 ], "distinct": [ 3 ], "filter": [ - 2061 + 2109 ], "predicate": [ 39 @@ -34389,13 +35250,13 @@ export default { }, "lobby_players_aggregate_fields": { "avg": [ - 2059 + 2107 ], "count": [ 38, { "columns": [ - 2073, + 2121, "[lobby_players_select_column!]" ], "distinct": [ @@ -34404,31 +35265,31 @@ export default { } ], "max": [ - 2065 + 2113 ], "min": [ - 2067 + 2115 ], "stddev": [ - 2077 + 2125 ], "stddev_pop": [ - 2079 + 2127 ], "stddev_samp": [ - 2081 + 2129 ], "sum": [ - 2085 + 2133 ], "var_pop": [ - 2089 + 2137 ], "var_samp": [ - 2091 + 2139 ], "variance": [ - 2093 + 2141 ], "__typename": [ 78 @@ -34436,37 +35297,37 @@ export default { }, "lobby_players_aggregate_order_by": { "avg": [ - 2060 + 2108 ], "count": [ - 2781 + 2829 ], "max": [ - 2066 + 2114 ], "min": [ - 2068 + 2116 ], "stddev": [ - 2078 + 2126 ], "stddev_pop": [ - 2080 + 2128 ], "stddev_samp": [ - 2082 + 2130 ], "sum": [ - 2086 + 2134 ], "var_pop": [ - 2090 + 2138 ], "var_samp": [ - 2092 + 2140 ], "variance": [ - 2094 + 2142 ], "__typename": [ 78 @@ -34474,10 +35335,10 @@ export default { }, "lobby_players_arr_rel_insert_input": { "data": [ - 2064 + 2112 ], "on_conflict": [ - 2070 + 2118 ], "__typename": [ 78 @@ -34496,10 +35357,10 @@ export default { }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -34507,13 +35368,13 @@ export default { }, "lobby_players_bool_exp": { "_and": [ - 2061 + 2109 ], "_not": [ - 2061 + 2109 ], "_or": [ - 2061 + 2109 ], "captain": [ 4 @@ -34522,16 +35383,16 @@ export default { 182 ], "lobby": [ - 2034 + 2082 ], "lobby_id": [ - 4764 + 4923 ], "player": [ - 3743 + 3791 ], "status": [ - 738 + 765 ], "steam_id": [ 182 @@ -34560,16 +35421,16 @@ export default { 180 ], "lobby": [ - 2040 + 2088 ], "lobby_id": [ - 4762 + 4921 ], "player": [ - 3750 + 3798 ], "status": [ - 737 + 764 ], "steam_id": [ 180 @@ -34583,7 +35444,7 @@ export default { 180 ], "lobby_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -34594,13 +35455,13 @@ export default { }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 2781 + 2829 ], "lobby_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -34611,7 +35472,7 @@ export default { 180 ], "lobby_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -34622,13 +35483,13 @@ export default { }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 2781 + 2829 ], "lobby_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -34639,7 +35500,7 @@ export default { 38 ], "returning": [ - 2050 + 2098 ], "__typename": [ 78 @@ -34647,13 +35508,13 @@ export default { }, "lobby_players_on_conflict": { "constraint": [ - 2062 + 2110 ], "update_columns": [ - 2087 + 2135 ], "where": [ - 2061 + 2109 ], "__typename": [ 78 @@ -34661,25 +35522,25 @@ export default { }, "lobby_players_order_by": { "captain": [ - 2781 + 2829 ], "invited_by_steam_id": [ - 2781 + 2829 ], "lobby": [ - 2042 + 2090 ], "lobby_id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "status": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -34687,7 +35548,7 @@ export default { }, "lobby_players_pk_columns_input": { "lobby_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -34707,10 +35568,10 @@ export default { 180 ], "lobby_id": [ - 4762 + 4921 ], "status": [ - 737 + 764 ], "steam_id": [ 180 @@ -34732,10 +35593,10 @@ export default { }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -34754,10 +35615,10 @@ export default { }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -34776,10 +35637,10 @@ export default { }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -34787,7 +35648,7 @@ export default { }, "lobby_players_stream_cursor_input": { "initial_value": [ - 2084 + 2132 ], "ordering": [ 236 @@ -34804,10 +35665,10 @@ export default { 180 ], "lobby_id": [ - 4762 + 4921 ], "status": [ - 737 + 764 ], "steam_id": [ 180 @@ -34829,10 +35690,10 @@ export default { }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -34841,13 +35702,13 @@ export default { "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 2063 + 2111 ], "_set": [ - 2076 + 2124 ], "where": [ - 2061 + 2109 ], "__typename": [ 78 @@ -34866,10 +35727,10 @@ export default { }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -34888,10 +35749,10 @@ export default { }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -34910,10 +35771,10 @@ export default { }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -34921,19 +35782,19 @@ export default { }, "map_pools": { "e_type": [ - 752 + 779 ], "enabled": [ 3 ], "id": [ - 4762 + 4921 ], "maps": [ - 5404, + 5563, { "distinct_on": [ - 5421, + 5580, "[v_pool_maps_select_column!]" ], "limit": [ @@ -34943,19 +35804,19 @@ export default { 38 ], "order_by": [ - 5420, + 5579, "[v_pool_maps_order_by!]" ], "where": [ - 5413 + 5572 ] } ], "maps_aggregate": [ - 5405, + 5564, { "distinct_on": [ - 5421, + 5580, "[v_pool_maps_select_column!]" ], "limit": [ @@ -34965,11 +35826,11 @@ export default { 38 ], "order_by": [ - 5420, + 5579, "[v_pool_maps_order_by!]" ], "where": [ - 5413 + 5572 ] } ], @@ -34977,7 +35838,7 @@ export default { 3 ], "type": [ - 757 + 784 ], "__typename": [ 78 @@ -34985,10 +35846,10 @@ export default { }, "map_pools_aggregate": { "aggregate": [ - 2097 + 2145 ], "nodes": [ - 2095 + 2143 ], "__typename": [ 78 @@ -34999,7 +35860,7 @@ export default { 38, { "columns": [ - 2108, + 2156, "[map_pools_select_column!]" ], "distinct": [ @@ -35008,10 +35869,10 @@ export default { } ], "max": [ - 2101 + 2149 ], "min": [ - 2102 + 2150 ], "__typename": [ 78 @@ -35019,34 +35880,34 @@ export default { }, "map_pools_bool_exp": { "_and": [ - 2098 + 2146 ], "_not": [ - 2098 + 2146 ], "_or": [ - 2098 + 2146 ], "e_type": [ - 755 + 782 ], "enabled": [ 4 ], "id": [ - 4764 + 4923 ], "maps": [ - 5413 + 5572 ], "maps_aggregate": [ - 5406 + 5565 ], "seed": [ 4 ], "type": [ - 758 + 785 ], "__typename": [ 78 @@ -35055,22 +35916,22 @@ export default { "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 763 + 790 ], "enabled": [ 3 ], "id": [ - 4762 + 4921 ], "maps": [ - 5412 + 5571 ], "seed": [ 3 ], "type": [ - 757 + 784 ], "__typename": [ 78 @@ -35078,7 +35939,7 @@ export default { }, "map_pools_max_fields": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -35086,7 +35947,7 @@ export default { }, "map_pools_min_fields": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -35097,7 +35958,7 @@ export default { 38 ], "returning": [ - 2095 + 2143 ], "__typename": [ 78 @@ -35105,10 +35966,10 @@ export default { }, "map_pools_obj_rel_insert_input": { "data": [ - 2100 + 2148 ], "on_conflict": [ - 2105 + 2153 ], "__typename": [ 78 @@ -35116,13 +35977,13 @@ export default { }, "map_pools_on_conflict": { "constraint": [ - 2099 + 2147 ], "update_columns": [ - 2112 + 2160 ], "where": [ - 2098 + 2146 ], "__typename": [ 78 @@ -35130,22 +35991,22 @@ export default { }, "map_pools_order_by": { "e_type": [ - 765 + 792 ], "enabled": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "maps_aggregate": [ - 5411 + 5570 ], "seed": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "__typename": [ 78 @@ -35153,7 +36014,7 @@ export default { }, "map_pools_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -35165,13 +36026,13 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "seed": [ 3 ], "type": [ - 757 + 784 ], "__typename": [ 78 @@ -35179,7 +36040,7 @@ export default { }, "map_pools_stream_cursor_input": { "initial_value": [ - 2111 + 2159 ], "ordering": [ 236 @@ -35193,13 +36054,13 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "seed": [ 3 ], "type": [ - 757 + 784 ], "__typename": [ 78 @@ -35208,10 +36069,10 @@ export default { "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 2109 + 2157 ], "where": [ - 2098 + 2146 ], "__typename": [ 78 @@ -35222,22 +36083,22 @@ export default { 3 ], "e_match_type": [ - 855 + 882 ], "enabled": [ 3 ], "id": [ - 4762 + 4921 ], "label": [ 78 ], "match_maps": [ - 2434, + 2482, { "distinct_on": [ - 2456, + 2504, "[match_maps_select_column!]" ], "limit": [ @@ -35247,19 +36108,19 @@ export default { 38 ], "order_by": [ - 2454, + 2502, "[match_maps_order_by!]" ], "where": [ - 2443 + 2491 ] } ], "match_maps_aggregate": [ - 2435, + 2483, { "distinct_on": [ - 2456, + 2504, "[match_maps_select_column!]" ], "limit": [ @@ -35269,19 +36130,19 @@ export default { 38 ], "order_by": [ - 2454, + 2502, "[match_maps_order_by!]" ], "where": [ - 2443 + 2491 ] } ], "match_veto_picks": [ - 2410, + 2458, { "distinct_on": [ - 2428, + 2476, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -35291,19 +36152,19 @@ export default { 38 ], "order_by": [ - 2426, + 2474, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2465 ] } ], "match_veto_picks_aggregate": [ - 2411, + 2459, { "distinct_on": [ - 2428, + 2476, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -35313,11 +36174,11 @@ export default { 38 ], "order_by": [ - 2426, + 2474, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2465 ] } ], @@ -35331,7 +36192,7 @@ export default { 78 ], "type": [ - 860 + 887 ], "workshop_map_id": [ 78 @@ -35342,10 +36203,10 @@ export default { }, "maps_aggregate": { "aggregate": [ - 2120 + 2168 ], "nodes": [ - 2114 + 2162 ], "__typename": [ 78 @@ -35353,13 +36214,13 @@ export default { }, "maps_aggregate_bool_exp": { "bool_and": [ - 2117 + 2165 ], "bool_or": [ - 2118 + 2166 ], "count": [ - 2119 + 2167 ], "__typename": [ 78 @@ -35367,13 +36228,13 @@ export default { }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 2136 + 2184 ], "distinct": [ 3 ], "filter": [ - 2123 + 2171 ], "predicate": [ 4 @@ -35384,13 +36245,13 @@ export default { }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 2137 + 2185 ], "distinct": [ 3 ], "filter": [ - 2123 + 2171 ], "predicate": [ 4 @@ -35401,13 +36262,13 @@ export default { }, "maps_aggregate_bool_exp_count": { "arguments": [ - 2135 + 2183 ], "distinct": [ 3 ], "filter": [ - 2123 + 2171 ], "predicate": [ 39 @@ -35421,7 +36282,7 @@ export default { 38, { "columns": [ - 2135, + 2183, "[maps_select_column!]" ], "distinct": [ @@ -35430,10 +36291,10 @@ export default { } ], "max": [ - 2126 + 2174 ], "min": [ - 2128 + 2176 ], "__typename": [ 78 @@ -35441,13 +36302,13 @@ export default { }, "maps_aggregate_order_by": { "count": [ - 2781 + 2829 ], "max": [ - 2127 + 2175 ], "min": [ - 2129 + 2177 ], "__typename": [ 78 @@ -35455,10 +36316,10 @@ export default { }, "maps_arr_rel_insert_input": { "data": [ - 2125 + 2173 ], "on_conflict": [ - 2132 + 2180 ], "__typename": [ 78 @@ -35466,40 +36327,40 @@ export default { }, "maps_bool_exp": { "_and": [ - 2123 + 2171 ], "_not": [ - 2123 + 2171 ], "_or": [ - 2123 + 2171 ], "active_pool": [ 4 ], "e_match_type": [ - 858 + 885 ], "enabled": [ 4 ], "id": [ - 4764 + 4923 ], "label": [ 80 ], "match_maps": [ - 2443 + 2491 ], "match_maps_aggregate": [ - 2436 + 2484 ], "match_veto_picks": [ - 2417 + 2465 ], "match_veto_picks_aggregate": [ - 2412 + 2460 ], "name": [ 80 @@ -35511,7 +36372,7 @@ export default { 80 ], "type": [ - 861 + 888 ], "workshop_map_id": [ 80 @@ -35526,22 +36387,22 @@ export default { 3 ], "e_match_type": [ - 866 + 893 ], "enabled": [ 3 ], "id": [ - 4762 + 4921 ], "label": [ 78 ], "match_maps": [ - 2440 + 2488 ], "match_veto_picks": [ - 2416 + 2464 ], "name": [ 78 @@ -35553,7 +36414,7 @@ export default { 78 ], "type": [ - 860 + 887 ], "workshop_map_id": [ 78 @@ -35564,7 +36425,7 @@ export default { }, "maps_max_fields": { "id": [ - 4762 + 4921 ], "label": [ 78 @@ -35587,22 +36448,22 @@ export default { }, "maps_max_order_by": { "id": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "patch": [ - 2781 + 2829 ], "poster": [ - 2781 + 2829 ], "workshop_map_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -35610,7 +36471,7 @@ export default { }, "maps_min_fields": { "id": [ - 4762 + 4921 ], "label": [ 78 @@ -35633,22 +36494,22 @@ export default { }, "maps_min_order_by": { "id": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "patch": [ - 2781 + 2829 ], "poster": [ - 2781 + 2829 ], "workshop_map_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -35659,7 +36520,7 @@ export default { 38 ], "returning": [ - 2114 + 2162 ], "__typename": [ 78 @@ -35667,10 +36528,10 @@ export default { }, "maps_obj_rel_insert_input": { "data": [ - 2125 + 2173 ], "on_conflict": [ - 2132 + 2180 ], "__typename": [ 78 @@ -35678,13 +36539,13 @@ export default { }, "maps_on_conflict": { "constraint": [ - 2124 + 2172 ], "update_columns": [ - 2141 + 2189 ], "where": [ - 2123 + 2171 ], "__typename": [ 78 @@ -35692,40 +36553,40 @@ export default { }, "maps_order_by": { "active_pool": [ - 2781 + 2829 ], "e_match_type": [ - 868 + 895 ], "enabled": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "match_maps_aggregate": [ - 2439 + 2487 ], "match_veto_picks_aggregate": [ - 2415 + 2463 ], "name": [ - 2781 + 2829 ], "patch": [ - 2781 + 2829 ], "poster": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "workshop_map_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -35733,7 +36594,7 @@ export default { }, "maps_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -35750,7 +36611,7 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "label": [ 78 @@ -35765,7 +36626,7 @@ export default { 78 ], "type": [ - 860 + 887 ], "workshop_map_id": [ 78 @@ -35776,7 +36637,7 @@ export default { }, "maps_stream_cursor_input": { "initial_value": [ - 2140 + 2188 ], "ordering": [ 236 @@ -35793,7 +36654,7 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "label": [ 78 @@ -35808,7 +36669,7 @@ export default { 78 ], "type": [ - 860 + 887 ], "workshop_map_id": [ 78 @@ -35820,10 +36681,10 @@ export default { "maps_update_column": {}, "maps_updates": { "_set": [ - 2138 + 2186 ], "where": [ - 2123 + 2171 ], "__typename": [ 78 @@ -35831,7 +36692,7 @@ export default { }, "match_clips": { "created_at": [ - 4324 + 4376 ], "download_url": [ 78 @@ -35843,22 +36704,22 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "kills_count": [ 38 ], "match_map": [ - 2434 + 2482 ], "match_map_demo": [ - 2318 + 2366 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "render_jobs": [ 185, @@ -35911,7 +36772,7 @@ export default { 180 ], "target": [ - 3739 + 3787 ], "target_steam_id": [ 180 @@ -35926,7 +36787,7 @@ export default { 78 ], "user": [ - 3739 + 3787 ], "user_steam_id": [ 180 @@ -35935,7 +36796,7 @@ export default { 38 ], "visibility": [ - 778 + 805 ], "__typename": [ 78 @@ -35943,10 +36804,10 @@ export default { }, "match_clips_aggregate": { "aggregate": [ - 2147 + 2195 ], "nodes": [ - 2143 + 2191 ], "__typename": [ 78 @@ -35954,7 +36815,7 @@ export default { }, "match_clips_aggregate_bool_exp": { "count": [ - 2146 + 2194 ], "__typename": [ 78 @@ -35962,13 +36823,13 @@ export default { }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 2165 + 2213 ], "distinct": [ 3 ], "filter": [ - 2152 + 2200 ], "predicate": [ 39 @@ -35979,13 +36840,13 @@ export default { }, "match_clips_aggregate_fields": { "avg": [ - 2150 + 2198 ], "count": [ 38, { "columns": [ - 2165, + 2213, "[match_clips_select_column!]" ], "distinct": [ @@ -35994,31 +36855,31 @@ export default { } ], "max": [ - 2156 + 2204 ], "min": [ - 2158 + 2206 ], "stddev": [ - 2167 + 2215 ], "stddev_pop": [ - 2169 + 2217 ], "stddev_samp": [ - 2171 + 2219 ], "sum": [ - 2175 + 2223 ], "var_pop": [ - 2179 + 2227 ], "var_samp": [ - 2181 + 2229 ], "variance": [ - 2183 + 2231 ], "__typename": [ 78 @@ -36026,37 +36887,37 @@ export default { }, "match_clips_aggregate_order_by": { "avg": [ - 2151 + 2199 ], "count": [ - 2781 + 2829 ], "max": [ - 2157 + 2205 ], "min": [ - 2159 + 2207 ], "stddev": [ - 2168 + 2216 ], "stddev_pop": [ - 2170 + 2218 ], "stddev_samp": [ - 2172 + 2220 ], "sum": [ - 2176 + 2224 ], "var_pop": [ - 2180 + 2228 ], "var_samp": [ - 2182 + 2230 ], "variance": [ - 2184 + 2232 ], "__typename": [ 78 @@ -36064,10 +36925,10 @@ export default { }, "match_clips_arr_rel_insert_input": { "data": [ - 2155 + 2203 ], "on_conflict": [ - 2162 + 2210 ], "__typename": [ 78 @@ -36101,25 +36962,25 @@ export default { }, "match_clips_avg_order_by": { "duration_ms": [ - 2781 + 2829 ], "kills_count": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "target_steam_id": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "views_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -36127,16 +36988,16 @@ export default { }, "match_clips_bool_exp": { "_and": [ - 2152 + 2200 ], "_not": [ - 2152 + 2200 ], "_or": [ - 2152 + 2200 ], "created_at": [ - 4325 + 4377 ], "download_url": [ 80 @@ -36148,22 +37009,22 @@ export default { 80 ], "id": [ - 4764 + 4923 ], "kills_count": [ 39 ], "match_map": [ - 2443 + 2491 ], "match_map_demo": [ - 2330 + 2378 ], "match_map_demo_id": [ - 4764 + 4923 ], "match_map_id": [ - 4764 + 4923 ], "render_jobs": [ 197 @@ -36178,7 +37039,7 @@ export default { 182 ], "target": [ - 3743 + 3791 ], "target_steam_id": [ 182 @@ -36193,7 +37054,7 @@ export default { 80 ], "user": [ - 3743 + 3791 ], "user_steam_id": [ 182 @@ -36202,7 +37063,7 @@ export default { 39 ], "visibility": [ - 779 + 806 ], "__typename": [ 78 @@ -36237,7 +37098,7 @@ export default { }, "match_clips_insert_input": { "created_at": [ - 4324 + 4376 ], "duration_ms": [ 38 @@ -36246,22 +37107,22 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "kills_count": [ 38 ], "match_map": [ - 2452 + 2500 ], "match_map_demo": [ - 2342 + 2390 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "render_jobs": [ 194 @@ -36273,7 +37134,7 @@ export default { 180 ], "target": [ - 3750 + 3798 ], "target_steam_id": [ 180 @@ -36285,7 +37146,7 @@ export default { 78 ], "user": [ - 3750 + 3798 ], "user_steam_id": [ 180 @@ -36294,7 +37155,7 @@ export default { 38 ], "visibility": [ - 778 + 805 ], "__typename": [ 78 @@ -36302,7 +37163,7 @@ export default { }, "match_clips_max_fields": { "created_at": [ - 4324 + 4376 ], "download_url": [ 78 @@ -36314,16 +37175,16 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 @@ -36355,46 +37216,46 @@ export default { }, "match_clips_max_order_by": { "created_at": [ - 2781 + 2829 ], "duration_ms": [ - 2781 + 2829 ], "file": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "kills_count": [ - 2781 + 2829 ], "match_map_demo_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "target_steam_id": [ - 2781 + 2829 ], "thumbnail_url": [ - 2781 + 2829 ], "title": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "views_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -36402,7 +37263,7 @@ export default { }, "match_clips_min_fields": { "created_at": [ - 4324 + 4376 ], "download_url": [ 78 @@ -36414,16 +37275,16 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 @@ -36455,46 +37316,46 @@ export default { }, "match_clips_min_order_by": { "created_at": [ - 2781 + 2829 ], "duration_ms": [ - 2781 + 2829 ], "file": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "kills_count": [ - 2781 + 2829 ], "match_map_demo_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "target_steam_id": [ - 2781 + 2829 ], "thumbnail_url": [ - 2781 + 2829 ], "title": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "views_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -36505,7 +37366,7 @@ export default { 38 ], "returning": [ - 2143 + 2191 ], "__typename": [ 78 @@ -36513,10 +37374,10 @@ export default { }, "match_clips_obj_rel_insert_input": { "data": [ - 2155 + 2203 ], "on_conflict": [ - 2162 + 2210 ], "__typename": [ 78 @@ -36524,13 +37385,13 @@ export default { }, "match_clips_on_conflict": { "constraint": [ - 2153 + 2201 ], "update_columns": [ - 2177 + 2225 ], "where": [ - 2152 + 2200 ], "__typename": [ 78 @@ -36538,70 +37399,70 @@ export default { }, "match_clips_order_by": { "created_at": [ - 2781 + 2829 ], "download_url": [ - 2781 + 2829 ], "duration_ms": [ - 2781 + 2829 ], "file": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "kills_count": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_demo": [ - 2344 + 2392 ], "match_map_demo_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "render_jobs_aggregate": [ 192 ], "round": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "target": [ - 3752 + 3800 ], "target_steam_id": [ - 2781 + 2829 ], "thumbnail_download_url": [ - 2781 + 2829 ], "thumbnail_url": [ - 2781 + 2829 ], "title": [ - 2781 + 2829 ], "user": [ - 3752 + 3800 ], "user_steam_id": [ - 2781 + 2829 ], "views_count": [ - 2781 + 2829 ], "visibility": [ - 2781 + 2829 ], "__typename": [ 78 @@ -36609,7 +37470,7 @@ export default { }, "match_clips_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -36618,7 +37479,7 @@ export default { "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4324 + 4376 ], "duration_ms": [ 38 @@ -36627,16 +37488,16 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 @@ -36660,7 +37521,7 @@ export default { 38 ], "visibility": [ - 778 + 805 ], "__typename": [ 78 @@ -36694,25 +37555,25 @@ export default { }, "match_clips_stddev_order_by": { "duration_ms": [ - 2781 + 2829 ], "kills_count": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "target_steam_id": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "views_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -36746,25 +37607,25 @@ export default { }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 2781 + 2829 ], "kills_count": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "target_steam_id": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "views_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -36798,25 +37659,25 @@ export default { }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 2781 + 2829 ], "kills_count": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "target_steam_id": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "views_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -36824,7 +37685,7 @@ export default { }, "match_clips_stream_cursor_input": { "initial_value": [ - 2174 + 2222 ], "ordering": [ 236 @@ -36835,7 +37696,7 @@ export default { }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "duration_ms": [ 38 @@ -36844,16 +37705,16 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 @@ -36877,7 +37738,7 @@ export default { 38 ], "visibility": [ - 778 + 805 ], "__typename": [ 78 @@ -36911,25 +37772,25 @@ export default { }, "match_clips_sum_order_by": { "duration_ms": [ - 2781 + 2829 ], "kills_count": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "target_steam_id": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "views_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -36938,13 +37799,13 @@ export default { "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 2154 + 2202 ], "_set": [ - 2166 + 2214 ], "where": [ - 2152 + 2200 ], "__typename": [ 78 @@ -36978,25 +37839,25 @@ export default { }, "match_clips_var_pop_order_by": { "duration_ms": [ - 2781 + 2829 ], "kills_count": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "target_steam_id": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "views_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -37030,25 +37891,25 @@ export default { }, "match_clips_var_samp_order_by": { "duration_ms": [ - 2781 + 2829 ], "kills_count": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "target_steam_id": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "views_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -37082,25 +37943,25 @@ export default { }, "match_clips_variance_order_by": { "duration_ms": [ - 2781 + 2829 ], "kills_count": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "target_steam_id": [ - 2781 + 2829 ], "user_steam_id": [ - 2781 + 2829 ], "views_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -37108,52 +37969,52 @@ export default { }, "match_demo_sessions": { "created_at": [ - 4324 + 4376 ], "error_message": [ 78 ], "game_server_node": [ - 1528 + 1576 ], "game_server_node_id": [ 78 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4324 + 4376 ], "last_status_at": [ - 4324 + 4376 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_demo": [ - 2318 + 2366 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "status": [ 78 ], "status_history": [ - 1652, + 1700, { "path": [ 78 @@ -37164,7 +38025,7 @@ export default { 78 ], "watcher": [ - 3739 + 3787 ], "watcher_steam_id": [ 180 @@ -37175,10 +38036,10 @@ export default { }, "match_demo_sessions_aggregate": { "aggregate": [ - 2189 + 2237 ], "nodes": [ - 2185 + 2233 ], "__typename": [ 78 @@ -37186,7 +38047,7 @@ export default { }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 2188 + 2236 ], "__typename": [ 78 @@ -37194,13 +38055,13 @@ export default { }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 2211 + 2259 ], "distinct": [ 3 ], "filter": [ - 2195 + 2243 ], "predicate": [ 39 @@ -37211,13 +38072,13 @@ export default { }, "match_demo_sessions_aggregate_fields": { "avg": [ - 2193 + 2241 ], "count": [ 38, { "columns": [ - 2211, + 2259, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -37226,31 +38087,31 @@ export default { } ], "max": [ - 2202 + 2250 ], "min": [ - 2204 + 2252 ], "stddev": [ - 2213 + 2261 ], "stddev_pop": [ - 2215 + 2263 ], "stddev_samp": [ - 2217 + 2265 ], "sum": [ - 2221 + 2269 ], "var_pop": [ - 2225 + 2273 ], "var_samp": [ - 2227 + 2275 ], "variance": [ - 2229 + 2277 ], "__typename": [ 78 @@ -37258,37 +38119,37 @@ export default { }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 2194 + 2242 ], "count": [ - 2781 + 2829 ], "max": [ - 2203 + 2251 ], "min": [ - 2205 + 2253 ], "stddev": [ - 2214 + 2262 ], "stddev_pop": [ - 2216 + 2264 ], "stddev_samp": [ - 2218 + 2266 ], "sum": [ - 2222 + 2270 ], "var_pop": [ - 2226 + 2274 ], "var_samp": [ - 2228 + 2276 ], "variance": [ - 2230 + 2278 ], "__typename": [ 78 @@ -37296,7 +38157,7 @@ export default { }, "match_demo_sessions_append_input": { "status_history": [ - 1652 + 1700 ], "__typename": [ 78 @@ -37304,10 +38165,10 @@ export default { }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 2201 + 2249 ], "on_conflict": [ - 2207 + 2255 ], "__typename": [ 78 @@ -37323,7 +38184,7 @@ export default { }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -37331,67 +38192,67 @@ export default { }, "match_demo_sessions_bool_exp": { "_and": [ - 2195 + 2243 ], "_not": [ - 2195 + 2243 ], "_or": [ - 2195 + 2243 ], "created_at": [ - 4325 + 4377 ], "error_message": [ 80 ], "game_server_node": [ - 1540 + 1588 ], "game_server_node_id": [ 80 ], "id": [ - 4764 + 4923 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4325 + 4377 ], "last_status_at": [ - 4325 + 4377 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_demo": [ - 2330 + 2378 ], "match_map_demo_id": [ - 4764 + 4923 ], "match_map_id": [ - 4764 + 4923 ], "status": [ 80 ], "status_history": [ - 1654 + 1702 ], "stream_url": [ 80 ], "watcher": [ - 3743 + 3791 ], "watcher_steam_id": [ 182 @@ -37435,58 +38296,58 @@ export default { }, "match_demo_sessions_insert_input": { "created_at": [ - 4324 + 4376 ], "error_message": [ 78 ], "game_server_node": [ - 1552 + 1600 ], "game_server_node_id": [ 78 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4324 + 4376 ], "last_status_at": [ - 4324 + 4376 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2452 + 2500 ], "match_map_demo": [ - 2342 + 2390 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "status": [ 78 ], "status_history": [ - 1652 + 1700 ], "stream_url": [ 78 ], "watcher": [ - 3750 + 3798 ], "watcher_steam_id": [ 180 @@ -37497,7 +38358,7 @@ export default { }, "match_demo_sessions_max_fields": { "created_at": [ - 4324 + 4376 ], "error_message": [ 78 @@ -37506,25 +38367,25 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4324 + 4376 ], "last_status_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "status": [ 78 @@ -37541,43 +38402,43 @@ export default { }, "match_demo_sessions_max_order_by": { "created_at": [ - 2781 + 2829 ], "error_message": [ - 2781 + 2829 ], "game_server_node_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "k8s_job_name": [ - 2781 + 2829 ], "last_activity_at": [ - 2781 + 2829 ], "last_status_at": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_demo_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "stream_url": [ - 2781 + 2829 ], "watcher_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -37585,7 +38446,7 @@ export default { }, "match_demo_sessions_min_fields": { "created_at": [ - 4324 + 4376 ], "error_message": [ 78 @@ -37594,25 +38455,25 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4324 + 4376 ], "last_status_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "status": [ 78 @@ -37629,43 +38490,43 @@ export default { }, "match_demo_sessions_min_order_by": { "created_at": [ - 2781 + 2829 ], "error_message": [ - 2781 + 2829 ], "game_server_node_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "k8s_job_name": [ - 2781 + 2829 ], "last_activity_at": [ - 2781 + 2829 ], "last_status_at": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_demo_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "stream_url": [ - 2781 + 2829 ], "watcher_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -37676,7 +38537,7 @@ export default { 38 ], "returning": [ - 2185 + 2233 ], "__typename": [ 78 @@ -37684,13 +38545,13 @@ export default { }, "match_demo_sessions_on_conflict": { "constraint": [ - 2196 + 2244 ], "update_columns": [ - 2223 + 2271 ], "where": [ - 2195 + 2243 ], "__typename": [ 78 @@ -37698,61 +38559,61 @@ export default { }, "match_demo_sessions_order_by": { "created_at": [ - 2781 + 2829 ], "error_message": [ - 2781 + 2829 ], "game_server_node": [ - 1554 + 1602 ], "game_server_node_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "k8s_job_name": [ - 2781 + 2829 ], "last_activity_at": [ - 2781 + 2829 ], "last_status_at": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_demo": [ - 2344 + 2392 ], "match_map_demo_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "status_history": [ - 2781 + 2829 ], "stream_url": [ - 2781 + 2829 ], "watcher": [ - 3752 + 3800 ], "watcher_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -37760,7 +38621,7 @@ export default { }, "match_demo_sessions_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -37768,7 +38629,7 @@ export default { }, "match_demo_sessions_prepend_input": { "status_history": [ - 1652 + 1700 ], "__typename": [ 78 @@ -37777,7 +38638,7 @@ export default { "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4324 + 4376 ], "error_message": [ 78 @@ -37786,31 +38647,31 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4324 + 4376 ], "last_status_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "status": [ 78 ], "status_history": [ - 1652 + 1700 ], "stream_url": [ 78 @@ -37832,7 +38693,7 @@ export default { }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -37848,7 +38709,7 @@ export default { }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -37864,7 +38725,7 @@ export default { }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -37872,7 +38733,7 @@ export default { }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 2220 + 2268 ], "ordering": [ 236 @@ -37883,7 +38744,7 @@ export default { }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "error_message": [ 78 @@ -37892,31 +38753,31 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4324 + 4376 ], "last_status_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "status": [ 78 ], "status_history": [ - 1652 + 1700 ], "stream_url": [ 78 @@ -37938,7 +38799,7 @@ export default { }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -37947,28 +38808,28 @@ export default { "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 2191 + 2239 ], "_delete_at_path": [ - 2197 + 2245 ], "_delete_elem": [ - 2198 + 2246 ], "_delete_key": [ - 2199 + 2247 ], "_inc": [ - 2200 + 2248 ], "_prepend": [ - 2210 + 2258 ], "_set": [ - 2212 + 2260 ], "where": [ - 2195 + 2243 ], "__typename": [ 78 @@ -37984,7 +38845,7 @@ export default { }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -38000,7 +38861,7 @@ export default { }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -38016,7 +38877,7 @@ export default { }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -38033,19 +38894,19 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "lineup": [ - 2276 + 2324 ], "match_lineup_id": [ - 4762 + 4921 ], "placeholder_name": [ 78 ], "player": [ - 3739 + 3787 ], "steam_id": [ 180 @@ -38056,10 +38917,10 @@ export default { }, "match_lineup_players_aggregate": { "aggregate": [ - 2237 + 2285 ], "nodes": [ - 2231 + 2279 ], "__typename": [ 78 @@ -38067,13 +38928,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 2234 + 2282 ], "bool_or": [ - 2235 + 2283 ], "count": [ - 2236 + 2284 ], "__typename": [ 78 @@ -38081,13 +38942,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2255 + 2303 ], "distinct": [ 3 ], "filter": [ - 2242 + 2290 ], "predicate": [ 4 @@ -38098,13 +38959,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2256 + 2304 ], "distinct": [ 3 ], "filter": [ - 2242 + 2290 ], "predicate": [ 4 @@ -38115,13 +38976,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 2254 + 2302 ], "distinct": [ 3 ], "filter": [ - 2242 + 2290 ], "predicate": [ 39 @@ -38132,13 +38993,13 @@ export default { }, "match_lineup_players_aggregate_fields": { "avg": [ - 2240 + 2288 ], "count": [ 38, { "columns": [ - 2254, + 2302, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -38147,31 +39008,31 @@ export default { } ], "max": [ - 2246 + 2294 ], "min": [ - 2248 + 2296 ], "stddev": [ - 2258 + 2306 ], "stddev_pop": [ - 2260 + 2308 ], "stddev_samp": [ - 2262 + 2310 ], "sum": [ - 2266 + 2314 ], "var_pop": [ - 2270 + 2318 ], "var_samp": [ - 2272 + 2320 ], "variance": [ - 2274 + 2322 ], "__typename": [ 78 @@ -38179,37 +39040,37 @@ export default { }, "match_lineup_players_aggregate_order_by": { "avg": [ - 2241 + 2289 ], "count": [ - 2781 + 2829 ], "max": [ - 2247 + 2295 ], "min": [ - 2249 + 2297 ], "stddev": [ - 2259 + 2307 ], "stddev_pop": [ - 2261 + 2309 ], "stddev_samp": [ - 2263 + 2311 ], "sum": [ - 2267 + 2315 ], "var_pop": [ - 2271 + 2319 ], "var_samp": [ - 2273 + 2321 ], "variance": [ - 2275 + 2323 ], "__typename": [ 78 @@ -38217,10 +39078,10 @@ export default { }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 2245 + 2293 ], "on_conflict": [ - 2251 + 2299 ], "__typename": [ 78 @@ -38236,7 +39097,7 @@ export default { }, "match_lineup_players_avg_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -38244,13 +39105,13 @@ export default { }, "match_lineup_players_bool_exp": { "_and": [ - 2242 + 2290 ], "_not": [ - 2242 + 2290 ], "_or": [ - 2242 + 2290 ], "captain": [ 4 @@ -38262,19 +39123,19 @@ export default { 80 ], "id": [ - 4764 + 4923 ], "lineup": [ - 2285 + 2333 ], "match_lineup_id": [ - 4764 + 4923 ], "placeholder_name": [ 80 ], "player": [ - 3743 + 3791 ], "steam_id": [ 182 @@ -38303,19 +39164,19 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "lineup": [ - 2294 + 2342 ], "match_lineup_id": [ - 4762 + 4921 ], "placeholder_name": [ 78 ], "player": [ - 3750 + 3798 ], "steam_id": [ 180 @@ -38329,10 +39190,10 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "placeholder_name": [ 78 @@ -38346,19 +39207,19 @@ export default { }, "match_lineup_players_max_order_by": { "discord_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match_lineup_id": [ - 2781 + 2829 ], "placeholder_name": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -38369,10 +39230,10 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "placeholder_name": [ 78 @@ -38386,19 +39247,19 @@ export default { }, "match_lineup_players_min_order_by": { "discord_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match_lineup_id": [ - 2781 + 2829 ], "placeholder_name": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -38409,7 +39270,7 @@ export default { 38 ], "returning": [ - 2231 + 2279 ], "__typename": [ 78 @@ -38417,13 +39278,13 @@ export default { }, "match_lineup_players_on_conflict": { "constraint": [ - 2243 + 2291 ], "update_columns": [ - 2268 + 2316 ], "where": [ - 2242 + 2290 ], "__typename": [ 78 @@ -38431,31 +39292,31 @@ export default { }, "match_lineup_players_order_by": { "captain": [ - 2781 + 2829 ], "checked_in": [ - 2781 + 2829 ], "discord_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "lineup": [ - 2296 + 2344 ], "match_lineup_id": [ - 2781 + 2829 ], "placeholder_name": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -38463,7 +39324,7 @@ export default { }, "match_lineup_players_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -38483,10 +39344,10 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "placeholder_name": [ 78 @@ -38508,7 +39369,7 @@ export default { }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -38524,7 +39385,7 @@ export default { }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -38540,7 +39401,7 @@ export default { }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -38548,7 +39409,7 @@ export default { }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 2265 + 2313 ], "ordering": [ 236 @@ -38568,10 +39429,10 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "placeholder_name": [ 78 @@ -38593,7 +39454,7 @@ export default { }, "match_lineup_players_sum_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -38602,13 +39463,13 @@ export default { "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 2244 + 2292 ], "_set": [ - 2257 + 2305 ], "where": [ - 2242 + 2290 ], "__typename": [ 78 @@ -38624,7 +39485,7 @@ export default { }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -38640,7 +39501,7 @@ export default { }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -38656,7 +39517,7 @@ export default { }, "match_lineup_players_variance_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -38673,16 +39534,16 @@ export default { 3 ], "captain": [ - 4918 + 5077 ], "coach": [ - 3739 + 3787 ], "coach_steam_id": [ 180 ], "id": [ - 4762 + 4921 ], "is_on_lineup": [ 3 @@ -38697,10 +39558,10 @@ export default { 3 ], "lineup_players": [ - 2231, + 2279, { "distinct_on": [ - 2254, + 2302, "[match_lineup_players_select_column!]" ], "limit": [ @@ -38710,19 +39571,19 @@ export default { 38 ], "order_by": [ - 2252, + 2300, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 2290 ] } ], "lineup_players_aggregate": [ - 2232, + 2280, { "distinct_on": [ - 2254, + 2302, "[match_lineup_players_select_column!]" ], "limit": [ @@ -38732,25 +39593,25 @@ export default { 38 ], "order_by": [ - 2252, + 2300, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 2290 ] } ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_veto_picks": [ - 2410, + 2458, { "distinct_on": [ - 2428, + 2476, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38760,19 +39621,19 @@ export default { 38 ], "order_by": [ - 2426, + 2474, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2465 ] } ], "match_veto_picks_aggregate": [ - 2411, + 2459, { "distinct_on": [ - 2428, + 2476, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38782,11 +39643,11 @@ export default { 38 ], "order_by": [ - 2426, + 2474, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2465 ] } ], @@ -38794,10 +39655,10 @@ export default { 78 ], "team": [ - 4281 + 4329 ], "team_id": [ - 4762 + 4921 ], "team_name": [ 78 @@ -38808,10 +39669,10 @@ export default { }, "match_lineups_aggregate": { "aggregate": [ - 2280 + 2328 ], "nodes": [ - 2276 + 2324 ], "__typename": [ 78 @@ -38819,7 +39680,7 @@ export default { }, "match_lineups_aggregate_bool_exp": { "count": [ - 2279 + 2327 ], "__typename": [ 78 @@ -38827,13 +39688,13 @@ export default { }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 2298 + 2346 ], "distinct": [ 3 ], "filter": [ - 2285 + 2333 ], "predicate": [ 39 @@ -38844,13 +39705,13 @@ export default { }, "match_lineups_aggregate_fields": { "avg": [ - 2283 + 2331 ], "count": [ 38, { "columns": [ - 2298, + 2346, "[match_lineups_select_column!]" ], "distinct": [ @@ -38859,31 +39720,31 @@ export default { } ], "max": [ - 2289 + 2337 ], "min": [ - 2291 + 2339 ], "stddev": [ - 2300 + 2348 ], "stddev_pop": [ - 2302 + 2350 ], "stddev_samp": [ - 2304 + 2352 ], "sum": [ - 2308 + 2356 ], "var_pop": [ - 2312 + 2360 ], "var_samp": [ - 2314 + 2362 ], "variance": [ - 2316 + 2364 ], "__typename": [ 78 @@ -38891,37 +39752,37 @@ export default { }, "match_lineups_aggregate_order_by": { "avg": [ - 2284 + 2332 ], "count": [ - 2781 + 2829 ], "max": [ - 2290 + 2338 ], "min": [ - 2292 + 2340 ], "stddev": [ - 2301 + 2349 ], "stddev_pop": [ - 2303 + 2351 ], "stddev_samp": [ - 2305 + 2353 ], "sum": [ - 2309 + 2357 ], "var_pop": [ - 2313 + 2361 ], "var_samp": [ - 2315 + 2363 ], "variance": [ - 2317 + 2365 ], "__typename": [ 78 @@ -38929,10 +39790,10 @@ export default { }, "match_lineups_arr_rel_insert_input": { "data": [ - 2288 + 2336 ], "on_conflict": [ - 2295 + 2343 ], "__typename": [ 78 @@ -38948,7 +39809,7 @@ export default { }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -38956,13 +39817,13 @@ export default { }, "match_lineups_bool_exp": { "_and": [ - 2285 + 2333 ], "_not": [ - 2285 + 2333 ], "_or": [ - 2285 + 2333 ], "can_pick_map_veto": [ 4 @@ -38974,16 +39835,16 @@ export default { 4 ], "captain": [ - 4922 + 5081 ], "coach": [ - 3743 + 3791 ], "coach_steam_id": [ 182 ], "id": [ - 4764 + 4923 ], "is_on_lineup": [ 4 @@ -38998,31 +39859,31 @@ export default { 4 ], "lineup_players": [ - 2242 + 2290 ], "lineup_players_aggregate": [ - 2233 + 2281 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_veto_picks": [ - 2417 + 2465 ], "match_veto_picks_aggregate": [ - 2412 + 2460 ], "name": [ 80 ], "team": [ - 4290 + 4340 ], "team_id": [ - 4764 + 4923 ], "team_name": [ 80 @@ -39042,34 +39903,34 @@ export default { }, "match_lineups_insert_input": { "captain": [ - 4928 + 5087 ], "coach": [ - 3750 + 3798 ], "coach_steam_id": [ 180 ], "id": [ - 4762 + 4921 ], "lineup_players": [ - 2239 + 2287 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_veto_picks": [ - 2416 + 2464 ], "team": [ - 4299 + 4349 ], "team_id": [ - 4762 + 4921 ], "team_name": [ 78 @@ -39083,16 +39944,16 @@ export default { 180 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "name": [ 78 ], "team_id": [ - 4762 + 4921 ], "team_name": [ 78 @@ -39103,19 +39964,19 @@ export default { }, "match_lineups_max_order_by": { "coach_steam_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "team_id": [ - 2781 + 2829 ], "team_name": [ - 2781 + 2829 ], "__typename": [ 78 @@ -39126,16 +39987,16 @@ export default { 180 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "name": [ 78 ], "team_id": [ - 4762 + 4921 ], "team_name": [ 78 @@ -39146,19 +40007,19 @@ export default { }, "match_lineups_min_order_by": { "coach_steam_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "team_id": [ - 2781 + 2829 ], "team_name": [ - 2781 + 2829 ], "__typename": [ 78 @@ -39169,7 +40030,7 @@ export default { 38 ], "returning": [ - 2276 + 2324 ], "__typename": [ 78 @@ -39177,10 +40038,10 @@ export default { }, "match_lineups_obj_rel_insert_input": { "data": [ - 2288 + 2336 ], "on_conflict": [ - 2295 + 2343 ], "__typename": [ 78 @@ -39188,13 +40049,13 @@ export default { }, "match_lineups_on_conflict": { "constraint": [ - 2286 + 2334 ], "update_columns": [ - 2310 + 2358 ], "where": [ - 2285 + 2333 ], "__typename": [ 78 @@ -39202,61 +40063,61 @@ export default { }, "match_lineups_order_by": { "can_pick_map_veto": [ - 2781 + 2829 ], "can_pick_region_veto": [ - 2781 + 2829 ], "can_update_lineup": [ - 2781 + 2829 ], "captain": [ - 4929 + 5088 ], "coach": [ - 3752 + 3800 ], "coach_steam_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "is_on_lineup": [ - 2781 + 2829 ], "is_picking_map_veto": [ - 2781 + 2829 ], "is_picking_region_veto": [ - 2781 + 2829 ], "is_ready": [ - 2781 + 2829 ], "lineup_players_aggregate": [ - 2238 + 2286 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_veto_picks_aggregate": [ - 2415 + 2463 ], "name": [ - 2781 + 2829 ], "team": [ - 4301 + 4351 ], "team_id": [ - 2781 + 2829 ], "team_name": [ - 2781 + 2829 ], "__typename": [ 78 @@ -39264,7 +40125,7 @@ export default { }, "match_lineups_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -39276,13 +40137,13 @@ export default { 180 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "team_id": [ - 4762 + 4921 ], "team_name": [ 78 @@ -39301,7 +40162,7 @@ export default { }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -39317,7 +40178,7 @@ export default { }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -39333,7 +40194,7 @@ export default { }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -39341,7 +40202,7 @@ export default { }, "match_lineups_stream_cursor_input": { "initial_value": [ - 2307 + 2355 ], "ordering": [ 236 @@ -39355,13 +40216,13 @@ export default { 180 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "team_id": [ - 4762 + 4921 ], "team_name": [ 78 @@ -39380,7 +40241,7 @@ export default { }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -39389,13 +40250,13 @@ export default { "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 2287 + 2335 ], "_set": [ - 2299 + 2347 ], "where": [ - 2285 + 2333 ], "__typename": [ 78 @@ -39411,7 +40272,7 @@ export default { }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -39427,7 +40288,7 @@ export default { }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -39443,7 +40304,7 @@ export default { }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -39451,7 +40312,7 @@ export default { }, "match_map_demos": { "bombs": [ - 1652, + 1700, { "path": [ 78 @@ -39503,16 +40364,16 @@ export default { } ], "created_at": [ - 4324 + 4376 ], "cs2_build": [ 78 ], "demo_sessions": [ - 2185, + 2233, { "distinct_on": [ - 2211, + 2259, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -39522,19 +40383,19 @@ export default { 38 ], "order_by": [ - 2208, + 2256, "[match_demo_sessions_order_by!]" ], "where": [ - 2195 + 2243 ] } ], "demo_sessions_aggregate": [ - 2186, + 2234, { "distinct_on": [ - 2211, + 2259, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -39544,11 +40405,11 @@ export default { 38 ], "order_by": [ - 2208, + 2256, "[match_demo_sessions_order_by!]" ], "where": [ - 2195 + 2243 ] } ], @@ -39565,10 +40426,10 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "kills": [ - 1652, + 1700, { "path": [ 78 @@ -39579,13 +40440,13 @@ export default { 78 ], "match": [ - 2596 + 2644 ], "match_clips": [ - 2143, + 2191, { "distinct_on": [ - 2165, + 2213, "[match_clips_select_column!]" ], "limit": [ @@ -39595,19 +40456,19 @@ export default { 38 ], "order_by": [ - 2163, + 2211, "[match_clips_order_by!]" ], "where": [ - 2152 + 2200 ] } ], "match_clips_aggregate": [ - 2144, + 2192, { "distinct_on": [ - 2165, + 2213, "[match_clips_select_column!]" ], "limit": [ @@ -39617,25 +40478,25 @@ export default { 38 ], "order_by": [ - 2163, + 2211, "[match_clips_order_by!]" ], "where": [ - 2152 + 2200 ] } ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "metadata_parsed_at": [ - 4324 + 4376 ], "playback_file": [ 78 @@ -39647,7 +40508,7 @@ export default { 78 ], "players": [ - 1652, + 1700, { "path": [ 78 @@ -39655,7 +40516,7 @@ export default { } ], "round_ticks": [ - 1652, + 1700, { "path": [ 78 @@ -39680,10 +40541,10 @@ export default { }, "match_map_demos_aggregate": { "aggregate": [ - 2324 + 2372 ], "nodes": [ - 2318 + 2366 ], "__typename": [ 78 @@ -39691,13 +40552,13 @@ export default { }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2321 + 2369 ], "bool_or": [ - 2322 + 2370 ], "count": [ - 2323 + 2371 ], "__typename": [ 78 @@ -39705,13 +40566,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2348 + 2396 ], "distinct": [ 3 ], "filter": [ - 2330 + 2378 ], "predicate": [ 4 @@ -39722,13 +40583,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2349 + 2397 ], "distinct": [ 3 ], "filter": [ - 2330 + 2378 ], "predicate": [ 4 @@ -39739,13 +40600,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2347 + 2395 ], "distinct": [ 3 ], "filter": [ - 2330 + 2378 ], "predicate": [ 39 @@ -39756,13 +40617,13 @@ export default { }, "match_map_demos_aggregate_fields": { "avg": [ - 2328 + 2376 ], "count": [ 38, { "columns": [ - 2347, + 2395, "[match_map_demos_select_column!]" ], "distinct": [ @@ -39771,31 +40632,31 @@ export default { } ], "max": [ - 2337 + 2385 ], "min": [ - 2339 + 2387 ], "stddev": [ - 2351 + 2399 ], "stddev_pop": [ - 2353 + 2401 ], "stddev_samp": [ - 2355 + 2403 ], "sum": [ - 2359 + 2407 ], "var_pop": [ - 2363 + 2411 ], "var_samp": [ - 2365 + 2413 ], "variance": [ - 2367 + 2415 ], "__typename": [ 78 @@ -39803,37 +40664,37 @@ export default { }, "match_map_demos_aggregate_order_by": { "avg": [ - 2329 + 2377 ], "count": [ - 2781 + 2829 ], "max": [ - 2338 + 2386 ], "min": [ - 2340 + 2388 ], "stddev": [ - 2352 + 2400 ], "stddev_pop": [ - 2354 + 2402 ], "stddev_samp": [ - 2356 + 2404 ], "sum": [ - 2360 + 2408 ], "var_pop": [ - 2364 + 2412 ], "var_samp": [ - 2366 + 2414 ], "variance": [ - 2368 + 2416 ], "__typename": [ 78 @@ -39841,16 +40702,16 @@ export default { }, "match_map_demos_append_input": { "bombs": [ - 1652 + 1700 ], "kills": [ - 1652 + 1700 ], "players": [ - 1652 + 1700 ], "round_ticks": [ - 1652 + 1700 ], "__typename": [ 78 @@ -39858,10 +40719,10 @@ export default { }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2336 + 2384 ], "on_conflict": [ - 2343 + 2391 ], "__typename": [ 78 @@ -39889,19 +40750,19 @@ export default { }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 2781 + 2829 ], "playback_size": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "tick_rate": [ - 2781 + 2829 ], "total_ticks": [ - 2781 + 2829 ], "__typename": [ 78 @@ -39909,16 +40770,16 @@ export default { }, "match_map_demos_bool_exp": { "_and": [ - 2330 + 2378 ], "_not": [ - 2330 + 2378 ], "_or": [ - 2330 + 2378 ], "bombs": [ - 1654 + 1702 ], "clip_render_jobs": [ 197 @@ -39927,16 +40788,16 @@ export default { 187 ], "created_at": [ - 4325 + 4377 ], "cs2_build": [ 80 ], "demo_sessions": [ - 2195 + 2243 ], "demo_sessions_aggregate": [ - 2187 + 2235 ], "download_url": [ 80 @@ -39951,34 +40812,34 @@ export default { 4 ], "id": [ - 4764 + 4923 ], "kills": [ - 1654 + 1702 ], "map_name": [ 80 ], "match": [ - 2605 + 2653 ], "match_clips": [ - 2152 + 2200 ], "match_clips_aggregate": [ - 2145 + 2193 ], "match_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "metadata_parsed_at": [ - 4325 + 4377 ], "playback_file": [ 80 @@ -39990,10 +40851,10 @@ export default { 80 ], "players": [ - 1654 + 1702 ], "round_ticks": [ - 1654 + 1702 ], "size": [ 39 @@ -40082,19 +40943,19 @@ export default { }, "match_map_demos_insert_input": { "bombs": [ - 1652 + 1700 ], "clip_render_jobs": [ 194 ], "created_at": [ - 4324 + 4376 ], "cs2_build": [ 78 ], "demo_sessions": [ - 2192 + 2240 ], "file": [ 78 @@ -40103,31 +40964,31 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "kills": [ - 1652 + 1700 ], "map_name": [ 78 ], "match": [ - 2614 + 2662 ], "match_clips": [ - 2149 + 2197 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2452 + 2500 ], "match_map_id": [ - 4762 + 4921 ], "metadata_parsed_at": [ - 4324 + 4376 ], "playback_file": [ 78 @@ -40136,10 +40997,10 @@ export default { 38 ], "players": [ - 1652 + 1700 ], "round_ticks": [ - 1652 + 1700 ], "size": [ 38 @@ -40159,7 +41020,7 @@ export default { }, "match_map_demos_max_fields": { "created_at": [ - 4324 + 4376 ], "cs2_build": [ 78 @@ -40174,19 +41035,19 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "map_name": [ 78 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "metadata_parsed_at": [ - 4324 + 4376 ], "playback_file": [ 78 @@ -40215,49 +41076,49 @@ export default { }, "match_map_demos_max_order_by": { "created_at": [ - 2781 + 2829 ], "cs2_build": [ - 2781 + 2829 ], "duration_seconds": [ - 2781 + 2829 ], "file": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "map_name": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "metadata_parsed_at": [ - 2781 + 2829 ], "playback_file": [ - 2781 + 2829 ], "playback_size": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "tick_rate": [ - 2781 + 2829 ], "total_ticks": [ - 2781 + 2829 ], "workshop_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -40265,7 +41126,7 @@ export default { }, "match_map_demos_min_fields": { "created_at": [ - 4324 + 4376 ], "cs2_build": [ 78 @@ -40280,19 +41141,19 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "map_name": [ 78 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "metadata_parsed_at": [ - 4324 + 4376 ], "playback_file": [ 78 @@ -40321,49 +41182,49 @@ export default { }, "match_map_demos_min_order_by": { "created_at": [ - 2781 + 2829 ], "cs2_build": [ - 2781 + 2829 ], "duration_seconds": [ - 2781 + 2829 ], "file": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "map_name": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "metadata_parsed_at": [ - 2781 + 2829 ], "playback_file": [ - 2781 + 2829 ], "playback_size": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "tick_rate": [ - 2781 + 2829 ], "total_ticks": [ - 2781 + 2829 ], "workshop_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -40374,7 +41235,7 @@ export default { 38 ], "returning": [ - 2318 + 2366 ], "__typename": [ 78 @@ -40382,10 +41243,10 @@ export default { }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2336 + 2384 ], "on_conflict": [ - 2343 + 2391 ], "__typename": [ 78 @@ -40393,13 +41254,13 @@ export default { }, "match_map_demos_on_conflict": { "constraint": [ - 2331 + 2379 ], "update_columns": [ - 2361 + 2409 ], "where": [ - 2330 + 2378 ], "__typename": [ 78 @@ -40407,85 +41268,85 @@ export default { }, "match_map_demos_order_by": { "bombs": [ - 2781 + 2829 ], "clip_render_jobs_aggregate": [ 192 ], "created_at": [ - 2781 + 2829 ], "cs2_build": [ - 2781 + 2829 ], "demo_sessions_aggregate": [ - 2190 + 2238 ], "download_url": [ - 2781 + 2829 ], "duration_seconds": [ - 2781 + 2829 ], "file": [ - 2781 + 2829 ], "geometry_validated": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "map_name": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_clips_aggregate": [ - 2148 + 2196 ], "match_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "metadata_parsed_at": [ - 2781 + 2829 ], "playback_file": [ - 2781 + 2829 ], "playback_size": [ - 2781 + 2829 ], "playback_url": [ - 2781 + 2829 ], "players": [ - 2781 + 2829 ], "round_ticks": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "tick_rate": [ - 2781 + 2829 ], "total_ticks": [ - 2781 + 2829 ], "workshop_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -40493,7 +41354,7 @@ export default { }, "match_map_demos_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -40501,16 +41362,16 @@ export default { }, "match_map_demos_prepend_input": { "bombs": [ - 1652 + 1700 ], "kills": [ - 1652 + 1700 ], "players": [ - 1652 + 1700 ], "round_ticks": [ - 1652 + 1700 ], "__typename": [ 78 @@ -40521,10 +41382,10 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 1652 + 1700 ], "created_at": [ - 4324 + 4376 ], "cs2_build": [ 78 @@ -40536,22 +41397,22 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "kills": [ - 1652 + 1700 ], "map_name": [ 78 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "metadata_parsed_at": [ - 4324 + 4376 ], "playback_file": [ 78 @@ -40560,10 +41421,10 @@ export default { 38 ], "players": [ - 1652 + 1700 ], "round_ticks": [ - 1652 + 1700 ], "size": [ 38 @@ -40603,19 +41464,19 @@ export default { }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 2781 + 2829 ], "playback_size": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "tick_rate": [ - 2781 + 2829 ], "total_ticks": [ - 2781 + 2829 ], "__typename": [ 78 @@ -40643,19 +41504,19 @@ export default { }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 2781 + 2829 ], "playback_size": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "tick_rate": [ - 2781 + 2829 ], "total_ticks": [ - 2781 + 2829 ], "__typename": [ 78 @@ -40683,19 +41544,19 @@ export default { }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 2781 + 2829 ], "playback_size": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "tick_rate": [ - 2781 + 2829 ], "total_ticks": [ - 2781 + 2829 ], "__typename": [ 78 @@ -40703,7 +41564,7 @@ export default { }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2358 + 2406 ], "ordering": [ 236 @@ -40714,10 +41575,10 @@ export default { }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1652 + 1700 ], "created_at": [ - 4324 + 4376 ], "cs2_build": [ 78 @@ -40732,22 +41593,22 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "kills": [ - 1652 + 1700 ], "map_name": [ 78 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "metadata_parsed_at": [ - 4324 + 4376 ], "playback_file": [ 78 @@ -40756,10 +41617,10 @@ export default { 38 ], "players": [ - 1652 + 1700 ], "round_ticks": [ - 1652 + 1700 ], "size": [ 38 @@ -40799,19 +41660,19 @@ export default { }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 2781 + 2829 ], "playback_size": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "tick_rate": [ - 2781 + 2829 ], "total_ticks": [ - 2781 + 2829 ], "__typename": [ 78 @@ -40820,28 +41681,28 @@ export default { "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2326 + 2374 ], "_delete_at_path": [ - 2332 + 2380 ], "_delete_elem": [ - 2333 + 2381 ], "_delete_key": [ - 2334 + 2382 ], "_inc": [ - 2335 + 2383 ], "_prepend": [ - 2346 + 2394 ], "_set": [ - 2350 + 2398 ], "where": [ - 2330 + 2378 ], "__typename": [ 78 @@ -40869,19 +41730,19 @@ export default { }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 2781 + 2829 ], "playback_size": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "tick_rate": [ - 2781 + 2829 ], "total_ticks": [ - 2781 + 2829 ], "__typename": [ 78 @@ -40909,19 +41770,19 @@ export default { }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 2781 + 2829 ], "playback_size": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "tick_rate": [ - 2781 + 2829 ], "total_ticks": [ - 2781 + 2829 ], "__typename": [ 78 @@ -40949,19 +41810,19 @@ export default { }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 2781 + 2829 ], "playback_size": [ - 2781 + 2829 ], "size": [ - 2781 + 2829 ], "tick_rate": [ - 2781 + 2829 ], "total_ticks": [ - 2781 + 2829 ], "__typename": [ 78 @@ -40969,10 +41830,10 @@ export default { }, "match_map_rounds": { "assists": [ - 2919, + 2967, { "distinct_on": [ - 2942, + 2990, "[player_assists_select_column!]" ], "limit": [ @@ -40982,19 +41843,19 @@ export default { 38 ], "order_by": [ - 2940, + 2988, "[player_assists_order_by!]" ], "where": [ - 2930 + 2978 ] } ], "assists_aggregate": [ - 2920, + 2968, { "distinct_on": [ - 2942, + 2990, "[player_assists_select_column!]" ], "limit": [ @@ -41004,11 +41865,11 @@ export default { 38 ], "order_by": [ - 2940, + 2988, "[player_assists_order_by!]" ], "where": [ - 2930 + 2978 ] } ], @@ -41016,22 +41877,22 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "deleted_at": [ - 4324 + 4376 ], "has_backup_file": [ 3 ], "id": [ - 4762 + 4921 ], "kills": [ - 3136, + 3184, { "distinct_on": [ - 3200, + 3248, "[player_kills_select_column!]" ], "limit": [ @@ -41041,19 +41902,19 @@ export default { 38 ], "order_by": [ - 3198, + 3246, "[player_kills_order_by!]" ], "where": [ - 3147 + 3195 ] } ], "kills_aggregate": [ - 3137, + 3185, { "distinct_on": [ - 3200, + 3248, "[player_kills_select_column!]" ], "limit": [ @@ -41063,11 +41924,11 @@ export default { 38 ], "order_by": [ - 3198, + 3246, "[player_kills_order_by!]" ], "where": [ - 3147 + 3195 ] } ], @@ -41078,7 +41939,7 @@ export default { 38 ], "lineup_1_side": [ - 1042 + 1069 ], "lineup_1_timeouts_available": [ 38 @@ -41090,25 +41951,25 @@ export default { 38 ], "lineup_2_side": [ - 1042 + 1069 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "winning_reason": [ - 1225 + 1273 ], "winning_side": [ 78 @@ -41119,10 +41980,10 @@ export default { }, "match_map_rounds_aggregate": { "aggregate": [ - 2373 + 2421 ], "nodes": [ - 2369 + 2417 ], "__typename": [ 78 @@ -41130,7 +41991,7 @@ export default { }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2372 + 2420 ], "__typename": [ 78 @@ -41138,13 +41999,13 @@ export default { }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2390 + 2438 ], "distinct": [ 3 ], "filter": [ - 2378 + 2426 ], "predicate": [ 39 @@ -41155,13 +42016,13 @@ export default { }, "match_map_rounds_aggregate_fields": { "avg": [ - 2376 + 2424 ], "count": [ 38, { "columns": [ - 2390, + 2438, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -41170,31 +42031,31 @@ export default { } ], "max": [ - 2382 + 2430 ], "min": [ - 2384 + 2432 ], "stddev": [ - 2392 + 2440 ], "stddev_pop": [ - 2394 + 2442 ], "stddev_samp": [ - 2396 + 2444 ], "sum": [ - 2400 + 2448 ], "var_pop": [ - 2404 + 2452 ], "var_samp": [ - 2406 + 2454 ], "variance": [ - 2408 + 2456 ], "__typename": [ 78 @@ -41202,37 +42063,37 @@ export default { }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2377 + 2425 ], "count": [ - 2781 + 2829 ], "max": [ - 2383 + 2431 ], "min": [ - 2385 + 2433 ], "stddev": [ - 2393 + 2441 ], "stddev_pop": [ - 2395 + 2443 ], "stddev_samp": [ - 2397 + 2445 ], "sum": [ - 2401 + 2449 ], "var_pop": [ - 2405 + 2453 ], "var_samp": [ - 2407 + 2455 ], "variance": [ - 2409 + 2457 ], "__typename": [ 78 @@ -41240,10 +42101,10 @@ export default { }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2381 + 2429 ], "on_conflict": [ - 2387 + 2435 ], "__typename": [ 78 @@ -41277,25 +42138,25 @@ export default { }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 2781 + 2829 ], "lineup_1_score": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_money": [ - 2781 + 2829 ], "lineup_2_score": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -41303,40 +42164,40 @@ export default { }, "match_map_rounds_bool_exp": { "_and": [ - 2378 + 2426 ], "_not": [ - 2378 + 2426 ], "_or": [ - 2378 + 2426 ], "assists": [ - 2930 + 2978 ], "assists_aggregate": [ - 2921 + 2969 ], "backup_file": [ 80 ], "created_at": [ - 4325 + 4377 ], "deleted_at": [ - 4325 + 4377 ], "has_backup_file": [ 4 ], "id": [ - 4764 + 4923 ], "kills": [ - 3147 + 3195 ], "kills_aggregate": [ - 3138 + 3186 ], "lineup_1_money": [ 39 @@ -41345,7 +42206,7 @@ export default { 39 ], "lineup_1_side": [ - 1043 + 1070 ], "lineup_1_timeouts_available": [ 39 @@ -41357,25 +42218,25 @@ export default { 39 ], "lineup_2_side": [ - 1043 + 1070 ], "lineup_2_timeouts_available": [ 39 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "round": [ 39 ], "time": [ - 4325 + 4377 ], "winning_reason": [ - 1226 + 1274 ], "winning_side": [ 80 @@ -41413,22 +42274,22 @@ export default { }, "match_map_rounds_insert_input": { "assists": [ - 2927 + 2975 ], "backup_file": [ 78 ], "created_at": [ - 4324 + 4376 ], "deleted_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "kills": [ - 3144 + 3192 ], "lineup_1_money": [ 38 @@ -41437,7 +42298,7 @@ export default { 38 ], "lineup_1_side": [ - 1042 + 1069 ], "lineup_1_timeouts_available": [ 38 @@ -41449,25 +42310,25 @@ export default { 38 ], "lineup_2_side": [ - 1042 + 1069 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 2452 + 2500 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "winning_reason": [ - 1225 + 1273 ], "winning_side": [ 78 @@ -41481,13 +42342,13 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "deleted_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "lineup_1_money": [ 38 @@ -41508,13 +42369,13 @@ export default { 38 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "winning_side": [ 78 @@ -41525,46 +42386,46 @@ export default { }, "match_map_rounds_max_order_by": { "backup_file": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "lineup_1_money": [ - 2781 + 2829 ], "lineup_1_score": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_money": [ - 2781 + 2829 ], "lineup_2_score": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "winning_side": [ - 2781 + 2829 ], "__typename": [ 78 @@ -41575,13 +42436,13 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "deleted_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "lineup_1_money": [ 38 @@ -41602,13 +42463,13 @@ export default { 38 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "winning_side": [ 78 @@ -41619,46 +42480,46 @@ export default { }, "match_map_rounds_min_order_by": { "backup_file": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "lineup_1_money": [ - 2781 + 2829 ], "lineup_1_score": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_money": [ - 2781 + 2829 ], "lineup_2_score": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "winning_side": [ - 2781 + 2829 ], "__typename": [ 78 @@ -41669,7 +42530,7 @@ export default { 38 ], "returning": [ - 2369 + 2417 ], "__typename": [ 78 @@ -41677,13 +42538,13 @@ export default { }, "match_map_rounds_on_conflict": { "constraint": [ - 2379 + 2427 ], "update_columns": [ - 2402 + 2450 ], "where": [ - 2378 + 2426 ], "__typename": [ 78 @@ -41691,67 +42552,67 @@ export default { }, "match_map_rounds_order_by": { "assists_aggregate": [ - 2926 + 2974 ], "backup_file": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "has_backup_file": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "kills_aggregate": [ - 3143 + 3191 ], "lineup_1_money": [ - 2781 + 2829 ], "lineup_1_score": [ - 2781 + 2829 ], "lineup_1_side": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_money": [ - 2781 + 2829 ], "lineup_2_score": [ - 2781 + 2829 ], "lineup_2_side": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "winning_reason": [ - 2781 + 2829 ], "winning_side": [ - 2781 + 2829 ], "__typename": [ 78 @@ -41759,7 +42620,7 @@ export default { }, "match_map_rounds_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -41771,13 +42632,13 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "deleted_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "lineup_1_money": [ 38 @@ -41786,7 +42647,7 @@ export default { 38 ], "lineup_1_side": [ - 1042 + 1069 ], "lineup_1_timeouts_available": [ 38 @@ -41798,22 +42659,22 @@ export default { 38 ], "lineup_2_side": [ - 1042 + 1069 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "winning_reason": [ - 1225 + 1273 ], "winning_side": [ 78 @@ -41850,25 +42711,25 @@ export default { }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 2781 + 2829 ], "lineup_1_score": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_money": [ - 2781 + 2829 ], "lineup_2_score": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -41902,25 +42763,25 @@ export default { }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 2781 + 2829 ], "lineup_1_score": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_money": [ - 2781 + 2829 ], "lineup_2_score": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -41954,25 +42815,25 @@ export default { }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 2781 + 2829 ], "lineup_1_score": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_money": [ - 2781 + 2829 ], "lineup_2_score": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -41980,7 +42841,7 @@ export default { }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2399 + 2447 ], "ordering": [ 236 @@ -41994,13 +42855,13 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "deleted_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "lineup_1_money": [ 38 @@ -42009,7 +42870,7 @@ export default { 38 ], "lineup_1_side": [ - 1042 + 1069 ], "lineup_1_timeouts_available": [ 38 @@ -42021,22 +42882,22 @@ export default { 38 ], "lineup_2_side": [ - 1042 + 1069 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "winning_reason": [ - 1225 + 1273 ], "winning_side": [ 78 @@ -42073,25 +42934,25 @@ export default { }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 2781 + 2829 ], "lineup_1_score": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_money": [ - 2781 + 2829 ], "lineup_2_score": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -42100,13 +42961,13 @@ export default { "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2380 + 2428 ], "_set": [ - 2391 + 2439 ], "where": [ - 2378 + 2426 ], "__typename": [ 78 @@ -42140,25 +43001,25 @@ export default { }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 2781 + 2829 ], "lineup_1_score": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_money": [ - 2781 + 2829 ], "lineup_2_score": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -42192,25 +43053,25 @@ export default { }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 2781 + 2829 ], "lineup_1_score": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_money": [ - 2781 + 2829 ], "lineup_2_score": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -42244,25 +43105,25 @@ export default { }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 2781 + 2829 ], "lineup_1_score": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_money": [ - 2781 + 2829 ], "lineup_2_score": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -42270,34 +43131,34 @@ export default { }, "match_map_veto_picks": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "map": [ - 2114 + 2162 ], "map_id": [ - 4762 + 4921 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_lineup": [ - 2276 + 2324 ], "match_lineup_id": [ - 4762 + 4921 ], "side": [ 78 ], "type": [ - 1205 + 1253 ], "__typename": [ 78 @@ -42305,10 +43166,10 @@ export default { }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2414 + 2462 ], "nodes": [ - 2410 + 2458 ], "__typename": [ 78 @@ -42316,7 +43177,7 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp": { "count": [ - 2413 + 2461 ], "__typename": [ 78 @@ -42324,13 +43185,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2428 + 2476 ], "distinct": [ 3 ], "filter": [ - 2417 + 2465 ], "predicate": [ 39 @@ -42344,7 +43205,7 @@ export default { 38, { "columns": [ - 2428, + 2476, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -42353,10 +43214,10 @@ export default { } ], "max": [ - 2420 + 2468 ], "min": [ - 2422 + 2470 ], "__typename": [ 78 @@ -42364,13 +43225,13 @@ export default { }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 2781 + 2829 ], "max": [ - 2421 + 2469 ], "min": [ - 2423 + 2471 ], "__typename": [ 78 @@ -42378,10 +43239,10 @@ export default { }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2419 + 2467 ], "on_conflict": [ - 2425 + 2473 ], "__typename": [ 78 @@ -42389,43 +43250,43 @@ export default { }, "match_map_veto_picks_bool_exp": { "_and": [ - 2417 + 2465 ], "_not": [ - 2417 + 2465 ], "_or": [ - 2417 + 2465 ], "created_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "map": [ - 2123 + 2171 ], "map_id": [ - 4764 + 4923 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_lineup": [ - 2285 + 2333 ], "match_lineup_id": [ - 4764 + 4923 ], "side": [ 80 ], "type": [ - 1206 + 1254 ], "__typename": [ 78 @@ -42434,34 +43295,34 @@ export default { "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "map": [ - 2131 + 2179 ], "map_id": [ - 4762 + 4921 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_lineup": [ - 2294 + 2342 ], "match_lineup_id": [ - 4762 + 4921 ], "side": [ 78 ], "type": [ - 1205 + 1253 ], "__typename": [ 78 @@ -42469,19 +43330,19 @@ export default { }, "match_map_veto_picks_max_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "side": [ 78 @@ -42492,22 +43353,22 @@ export default { }, "match_map_veto_picks_max_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "map_id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_lineup_id": [ - 2781 + 2829 ], "side": [ - 2781 + 2829 ], "__typename": [ 78 @@ -42515,19 +43376,19 @@ export default { }, "match_map_veto_picks_min_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "side": [ 78 @@ -42538,22 +43399,22 @@ export default { }, "match_map_veto_picks_min_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "map_id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_lineup_id": [ - 2781 + 2829 ], "side": [ - 2781 + 2829 ], "__typename": [ 78 @@ -42564,7 +43425,7 @@ export default { 38 ], "returning": [ - 2410 + 2458 ], "__typename": [ 78 @@ -42572,13 +43433,13 @@ export default { }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2418 + 2466 ], "update_columns": [ - 2432 + 2480 ], "where": [ - 2417 + 2465 ], "__typename": [ 78 @@ -42586,34 +43447,34 @@ export default { }, "match_map_veto_picks_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "map": [ - 2133 + 2181 ], "map_id": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_lineup": [ - 2296 + 2344 ], "match_lineup_id": [ - 2781 + 2829 ], "side": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "__typename": [ 78 @@ -42621,7 +43482,7 @@ export default { }, "match_map_veto_picks_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -42630,25 +43491,25 @@ export default { "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "side": [ 78 ], "type": [ - 1205 + 1253 ], "__typename": [ 78 @@ -42656,7 +43517,7 @@ export default { }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2431 + 2479 ], "ordering": [ 236 @@ -42667,25 +43528,25 @@ export default { }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "side": [ 78 ], "type": [ - 1205 + 1253 ], "__typename": [ 78 @@ -42694,10 +43555,10 @@ export default { "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2429 + 2477 ], "where": [ - 2417 + 2465 ], "__typename": [ 78 @@ -42708,13 +43569,13 @@ export default { 38 ], "created_at": [ - 4324 + 4376 ], "demos": [ - 2318, + 2366, { "distinct_on": [ - 2347, + 2395, "[match_map_demos_select_column!]" ], "limit": [ @@ -42724,19 +43585,19 @@ export default { 38 ], "order_by": [ - 2344, + 2392, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2378 ] } ], "demos_aggregate": [ - 2319, + 2367, { "distinct_on": [ - 2347, + 2395, "[match_map_demos_select_column!]" ], "limit": [ @@ -42746,11 +43607,11 @@ export default { 38 ], "order_by": [ - 2344, + 2392, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2378 ] } ], @@ -42761,16 +43622,16 @@ export default { 38 ], "e_match_map_status": [ - 793 + 820 ], "ended_at": [ - 4324 + 4376 ], "flashes": [ - 3091, + 3139, { "distinct_on": [ - 3114, + 3162, "[player_flashes_select_column!]" ], "limit": [ @@ -42780,19 +43641,19 @@ export default { 38 ], "order_by": [ - 3112, + 3160, "[player_flashes_order_by!]" ], "where": [ - 3102 + 3150 ] } ], "flashes_aggregate": [ - 3092, + 3140, { "distinct_on": [ - 3114, + 3162, "[player_flashes_select_column!]" ], "limit": [ @@ -42802,28 +43663,28 @@ export default { 38 ], "order_by": [ - 3112, + 3160, "[player_flashes_order_by!]" ], "where": [ - 3102 + 3150 ] } ], "id": [ - 4762 + 4921 ], "is_current_map": [ 3 ], "latest_clip_at": [ - 4324 + 4376 ], "lineup_1_score": [ 38 ], "lineup_1_side": [ - 1042 + 1069 ], "lineup_1_timeouts_available": [ 38 @@ -42832,25 +43693,25 @@ export default { 38 ], "lineup_2_side": [ - 1042 + 1069 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 2114 + 2162 ], "map_id": [ - 4762 + 4921 ], "match": [ - 2596 + 2644 ], "match_clips": [ - 2143, + 2191, { "distinct_on": [ - 2165, + 2213, "[match_clips_select_column!]" ], "limit": [ @@ -42860,19 +43721,19 @@ export default { 38 ], "order_by": [ - 2163, + 2211, "[match_clips_order_by!]" ], "where": [ - 2152 + 2200 ] } ], "match_clips_aggregate": [ - 2144, + 2192, { "distinct_on": [ - 2165, + 2213, "[match_clips_select_column!]" ], "limit": [ @@ -42882,22 +43743,22 @@ export default { 38 ], "order_by": [ - 2163, + 2211, "[match_clips_order_by!]" ], "where": [ - 2152 + 2200 ] } ], "match_id": [ - 4762 + 4921 ], "objectives": [ - 3337, + 3385, { "distinct_on": [ - 3358, + 3406, "[player_objectives_select_column!]" ], "limit": [ @@ -42907,19 +43768,19 @@ export default { 38 ], "order_by": [ - 3356, + 3404, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3394 ] } ], "objectives_aggregate": [ - 3338, + 3386, { "distinct_on": [ - 3358, + 3406, "[player_objectives_select_column!]" ], "limit": [ @@ -42929,11 +43790,11 @@ export default { 38 ], "order_by": [ - 3356, + 3404, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3394 ] } ], @@ -42941,10 +43802,10 @@ export default { 38 ], "player_assists": [ - 2919, + 2967, { "distinct_on": [ - 2942, + 2990, "[player_assists_select_column!]" ], "limit": [ @@ -42954,19 +43815,19 @@ export default { 38 ], "order_by": [ - 2940, + 2988, "[player_assists_order_by!]" ], "where": [ - 2930 + 2978 ] } ], "player_assists_aggregate": [ - 2920, + 2968, { "distinct_on": [ - 2942, + 2990, "[player_assists_select_column!]" ], "limit": [ @@ -42976,19 +43837,19 @@ export default { 38 ], "order_by": [ - 2940, + 2988, "[player_assists_order_by!]" ], "where": [ - 2930 + 2978 ] } ], "player_damages": [ - 2982, + 3030, { "distinct_on": [ - 3003, + 3051, "[player_damages_select_column!]" ], "limit": [ @@ -42998,19 +43859,19 @@ export default { 38 ], "order_by": [ - 3001, + 3049, "[player_damages_order_by!]" ], "where": [ - 2991 + 3039 ] } ], "player_damages_aggregate": [ - 2983, + 3031, { "distinct_on": [ - 3003, + 3051, "[player_damages_select_column!]" ], "limit": [ @@ -43020,19 +43881,19 @@ export default { 38 ], "order_by": [ - 3001, + 3049, "[player_damages_order_by!]" ], "where": [ - 2991 + 3039 ] } ], "player_kills": [ - 3136, + 3184, { "distinct_on": [ - 3200, + 3248, "[player_kills_select_column!]" ], "limit": [ @@ -43042,19 +43903,19 @@ export default { 38 ], "order_by": [ - 3198, + 3246, "[player_kills_order_by!]" ], "where": [ - 3147 + 3195 ] } ], "player_kills_aggregate": [ - 3137, + 3185, { "distinct_on": [ - 3200, + 3248, "[player_kills_select_column!]" ], "limit": [ @@ -43064,19 +43925,19 @@ export default { 38 ], "order_by": [ - 3198, + 3246, "[player_kills_order_by!]" ], "where": [ - 3147 + 3195 ] } ], "player_unused_utilities": [ - 3624, + 3672, { "distinct_on": [ - 3645, + 3693, "[player_unused_utility_select_column!]" ], "limit": [ @@ -43086,19 +43947,19 @@ export default { 38 ], "order_by": [ - 3643, + 3691, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3681 ] } ], "player_unused_utilities_aggregate": [ - 3625, + 3673, { "distinct_on": [ - 3645, + 3693, "[player_unused_utility_select_column!]" ], "limit": [ @@ -43108,11 +43969,11 @@ export default { 38 ], "order_by": [ - 3643, + 3691, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3681 ] } ], @@ -43120,13 +43981,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4324 + 4376 ], "rounds": [ - 2369, + 2417, { "distinct_on": [ - 2390, + 2438, "[match_map_rounds_select_column!]" ], "limit": [ @@ -43136,19 +43997,19 @@ export default { 38 ], "order_by": [ - 2388, + 2436, "[match_map_rounds_order_by!]" ], "where": [ - 2378 + 2426 ] } ], "rounds_aggregate": [ - 2370, + 2418, { "distinct_on": [ - 2390, + 2438, "[match_map_rounds_select_column!]" ], "limit": [ @@ -43158,25 +44019,25 @@ export default { 38 ], "order_by": [ - 2388, + 2436, "[match_map_rounds_order_by!]" ], "where": [ - 2378 + 2426 ] } ], "started_at": [ - 4324 + 4376 ], "status": [ - 798 + 825 ], "utility": [ - 3665, + 3713, { "distinct_on": [ - 3686, + 3734, "[player_utility_select_column!]" ], "limit": [ @@ -43186,19 +44047,19 @@ export default { 38 ], "order_by": [ - 3684, + 3732, "[player_utility_order_by!]" ], "where": [ - 3674 + 3722 ] } ], "utility_aggregate": [ - 3666, + 3714, { "distinct_on": [ - 3686, + 3734, "[player_utility_select_column!]" ], "limit": [ @@ -43208,19 +44069,19 @@ export default { 38 ], "order_by": [ - 3684, + 3732, "[player_utility_order_by!]" ], "where": [ - 3674 + 3722 ] } ], "vetos": [ - 2410, + 2458, { "distinct_on": [ - 2428, + 2476, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -43230,19 +44091,19 @@ export default { 38 ], "order_by": [ - 2426, + 2474, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2465 ] } ], "vetos_aggregate": [ - 2411, + 2459, { "distinct_on": [ - 2428, + 2476, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -43252,16 +44113,16 @@ export default { 38 ], "order_by": [ - 2426, + 2474, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2465 ] } ], "winning_lineup_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -43269,10 +44130,10 @@ export default { }, "match_maps_aggregate": { "aggregate": [ - 2438 + 2486 ], "nodes": [ - 2434 + 2482 ], "__typename": [ 78 @@ -43280,7 +44141,7 @@ export default { }, "match_maps_aggregate_bool_exp": { "count": [ - 2437 + 2485 ], "__typename": [ 78 @@ -43288,13 +44149,13 @@ export default { }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2456 + 2504 ], "distinct": [ 3 ], "filter": [ - 2443 + 2491 ], "predicate": [ 39 @@ -43305,13 +44166,13 @@ export default { }, "match_maps_aggregate_fields": { "avg": [ - 2441 + 2489 ], "count": [ 38, { "columns": [ - 2456, + 2504, "[match_maps_select_column!]" ], "distinct": [ @@ -43320,31 +44181,31 @@ export default { } ], "max": [ - 2447 + 2495 ], "min": [ - 2449 + 2497 ], "stddev": [ - 2458 + 2506 ], "stddev_pop": [ - 2460 + 2508 ], "stddev_samp": [ - 2462 + 2510 ], "sum": [ - 2466 + 2514 ], "var_pop": [ - 2470 + 2518 ], "var_samp": [ - 2472 + 2520 ], "variance": [ - 2474 + 2522 ], "__typename": [ 78 @@ -43352,37 +44213,37 @@ export default { }, "match_maps_aggregate_order_by": { "avg": [ - 2442 + 2490 ], "count": [ - 2781 + 2829 ], "max": [ - 2448 + 2496 ], "min": [ - 2450 + 2498 ], "stddev": [ - 2459 + 2507 ], "stddev_pop": [ - 2461 + 2509 ], "stddev_samp": [ - 2463 + 2511 ], "sum": [ - 2467 + 2515 ], "var_pop": [ - 2471 + 2519 ], "var_samp": [ - 2473 + 2521 ], "variance": [ - 2475 + 2523 ], "__typename": [ 78 @@ -43390,10 +44251,10 @@ export default { }, "match_maps_arr_rel_insert_input": { "data": [ - 2446 + 2494 ], "on_conflict": [ - 2453 + 2501 ], "__typename": [ 78 @@ -43430,19 +44291,19 @@ export default { }, "match_maps_avg_order_by": { "clips_count": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "public_clips_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -43450,25 +44311,25 @@ export default { }, "match_maps_bool_exp": { "_and": [ - 2443 + 2491 ], "_not": [ - 2443 + 2491 ], "_or": [ - 2443 + 2491 ], "clips_count": [ 39 ], "created_at": [ - 4325 + 4377 ], "demos": [ - 2330 + 2378 ], "demos_aggregate": [ - 2320 + 2368 ], "demos_download_url": [ 80 @@ -43477,31 +44338,31 @@ export default { 39 ], "e_match_map_status": [ - 796 + 823 ], "ended_at": [ - 4325 + 4377 ], "flashes": [ - 3102 + 3150 ], "flashes_aggregate": [ - 3093 + 3141 ], "id": [ - 4764 + 4923 ], "is_current_map": [ 4 ], "latest_clip_at": [ - 4325 + 4377 ], "lineup_1_score": [ 39 ], "lineup_1_side": [ - 1043 + 1070 ], "lineup_1_timeouts_available": [ 39 @@ -43510,94 +44371,94 @@ export default { 39 ], "lineup_2_side": [ - 1043 + 1070 ], "lineup_2_timeouts_available": [ 39 ], "map": [ - 2123 + 2171 ], "map_id": [ - 4764 + 4923 ], "match": [ - 2605 + 2653 ], "match_clips": [ - 2152 + 2200 ], "match_clips_aggregate": [ - 2145 + 2193 ], "match_id": [ - 4764 + 4923 ], "objectives": [ - 3346 + 3394 ], "objectives_aggregate": [ - 3339 + 3387 ], "order": [ 39 ], "player_assists": [ - 2930 + 2978 ], "player_assists_aggregate": [ - 2921 + 2969 ], "player_damages": [ - 2991 + 3039 ], "player_damages_aggregate": [ - 2984 + 3032 ], "player_kills": [ - 3147 + 3195 ], "player_kills_aggregate": [ - 3138 + 3186 ], "player_unused_utilities": [ - 3633 + 3681 ], "player_unused_utilities_aggregate": [ - 3626 + 3674 ], "public_clips_count": [ 39 ], "public_latest_clip_at": [ - 4325 + 4377 ], "rounds": [ - 2378 + 2426 ], "rounds_aggregate": [ - 2371 + 2419 ], "started_at": [ - 4325 + 4377 ], "status": [ - 799 + 826 ], "utility": [ - 3674 + 3722 ], "utility_aggregate": [ - 3667 + 3715 ], "vetos": [ - 2417 + 2465 ], "vetos_aggregate": [ - 2412 + 2460 ], "winning_lineup_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -43629,94 +44490,94 @@ export default { 38 ], "created_at": [ - 4324 + 4376 ], "demos": [ - 2327 + 2375 ], "e_match_map_status": [ - 804 + 831 ], "ended_at": [ - 4324 + 4376 ], "flashes": [ - 3099 + 3147 ], "id": [ - 4762 + 4921 ], "latest_clip_at": [ - 4324 + 4376 ], "lineup_1_side": [ - 1042 + 1069 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 1042 + 1069 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 2131 + 2179 ], "map_id": [ - 4762 + 4921 ], "match": [ - 2614 + 2662 ], "match_clips": [ - 2149 + 2197 ], "match_id": [ - 4762 + 4921 ], "objectives": [ - 3343 + 3391 ], "order": [ 38 ], "player_assists": [ - 2927 + 2975 ], "player_damages": [ - 2988 + 3036 ], "player_kills": [ - 3144 + 3192 ], "player_unused_utilities": [ - 3630 + 3678 ], "public_clips_count": [ 38 ], "public_latest_clip_at": [ - 4324 + 4376 ], "rounds": [ - 2375 + 2423 ], "started_at": [ - 4324 + 4376 ], "status": [ - 798 + 825 ], "utility": [ - 3671 + 3719 ], "vetos": [ - 2416 + 2464 ], "winning_lineup_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -43727,7 +44588,7 @@ export default { 38 ], "created_at": [ - 4324 + 4376 ], "demos_download_url": [ 78 @@ -43736,13 +44597,13 @@ export default { 38 ], "ended_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "latest_clip_at": [ - 4324 + 4376 ], "lineup_1_score": [ 38 @@ -43757,10 +44618,10 @@ export default { 38 ], "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "order": [ 38 @@ -43769,13 +44630,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4324 + 4376 ], "started_at": [ - 4324 + 4376 ], "winning_lineup_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -43783,46 +44644,46 @@ export default { }, "match_maps_max_order_by": { "clips_count": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "ended_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "latest_clip_at": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "map_id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "public_clips_count": [ - 2781 + 2829 ], "public_latest_clip_at": [ - 2781 + 2829 ], "started_at": [ - 2781 + 2829 ], "winning_lineup_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -43833,7 +44694,7 @@ export default { 38 ], "created_at": [ - 4324 + 4376 ], "demos_download_url": [ 78 @@ -43842,13 +44703,13 @@ export default { 38 ], "ended_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "latest_clip_at": [ - 4324 + 4376 ], "lineup_1_score": [ 38 @@ -43863,10 +44724,10 @@ export default { 38 ], "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "order": [ 38 @@ -43875,13 +44736,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4324 + 4376 ], "started_at": [ - 4324 + 4376 ], "winning_lineup_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -43889,46 +44750,46 @@ export default { }, "match_maps_min_order_by": { "clips_count": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "ended_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "latest_clip_at": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "map_id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "public_clips_count": [ - 2781 + 2829 ], "public_latest_clip_at": [ - 2781 + 2829 ], "started_at": [ - 2781 + 2829 ], "winning_lineup_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -43939,7 +44800,7 @@ export default { 38 ], "returning": [ - 2434 + 2482 ], "__typename": [ 78 @@ -43947,10 +44808,10 @@ export default { }, "match_maps_obj_rel_insert_input": { "data": [ - 2446 + 2494 ], "on_conflict": [ - 2453 + 2501 ], "__typename": [ 78 @@ -43958,13 +44819,13 @@ export default { }, "match_maps_on_conflict": { "constraint": [ - 2444 + 2492 ], "update_columns": [ - 2468 + 2516 ], "where": [ - 2443 + 2491 ], "__typename": [ 78 @@ -43972,112 +44833,112 @@ export default { }, "match_maps_order_by": { "clips_count": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "demos_aggregate": [ - 2325 + 2373 ], "demos_download_url": [ - 2781 + 2829 ], "demos_total_size": [ - 2781 + 2829 ], "e_match_map_status": [ - 806 + 833 ], "ended_at": [ - 2781 + 2829 ], "flashes_aggregate": [ - 3098 + 3146 ], "id": [ - 2781 + 2829 ], "is_current_map": [ - 2781 + 2829 ], "latest_clip_at": [ - 2781 + 2829 ], "lineup_1_score": [ - 2781 + 2829 ], "lineup_1_side": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_score": [ - 2781 + 2829 ], "lineup_2_side": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "map": [ - 2133 + 2181 ], "map_id": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_clips_aggregate": [ - 2148 + 2196 ], "match_id": [ - 2781 + 2829 ], "objectives_aggregate": [ - 3342 + 3390 ], "order": [ - 2781 + 2829 ], "player_assists_aggregate": [ - 2926 + 2974 ], "player_damages_aggregate": [ - 2987 + 3035 ], "player_kills_aggregate": [ - 3143 + 3191 ], "player_unused_utilities_aggregate": [ - 3629 + 3677 ], "public_clips_count": [ - 2781 + 2829 ], "public_latest_clip_at": [ - 2781 + 2829 ], "rounds_aggregate": [ - 2374 + 2422 ], "started_at": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "utility_aggregate": [ - 3670 + 3718 ], "vetos_aggregate": [ - 2415 + 2463 ], "winning_lineup_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -44085,7 +44946,7 @@ export default { }, "match_maps_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -44097,34 +44958,34 @@ export default { 38 ], "created_at": [ - 4324 + 4376 ], "ended_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "latest_clip_at": [ - 4324 + 4376 ], "lineup_1_side": [ - 1042 + 1069 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 1042 + 1069 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "order": [ 38 @@ -44133,16 +44994,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4324 + 4376 ], "started_at": [ - 4324 + 4376 ], "status": [ - 798 + 825 ], "winning_lineup_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -44179,19 +45040,19 @@ export default { }, "match_maps_stddev_order_by": { "clips_count": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "public_clips_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -44228,19 +45089,19 @@ export default { }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "public_clips_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -44277,19 +45138,19 @@ export default { }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "public_clips_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -44297,7 +45158,7 @@ export default { }, "match_maps_stream_cursor_input": { "initial_value": [ - 2465 + 2513 ], "ordering": [ 236 @@ -44311,34 +45172,34 @@ export default { 38 ], "created_at": [ - 4324 + 4376 ], "ended_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "latest_clip_at": [ - 4324 + 4376 ], "lineup_1_side": [ - 1042 + 1069 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 1042 + 1069 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "order": [ 38 @@ -44347,16 +45208,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4324 + 4376 ], "started_at": [ - 4324 + 4376 ], "status": [ - 798 + 825 ], "winning_lineup_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -44393,19 +45254,19 @@ export default { }, "match_maps_sum_order_by": { "clips_count": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "public_clips_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -44414,13 +45275,13 @@ export default { "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2445 + 2493 ], "_set": [ - 2457 + 2505 ], "where": [ - 2443 + 2491 ], "__typename": [ 78 @@ -44457,19 +45318,19 @@ export default { }, "match_maps_var_pop_order_by": { "clips_count": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "public_clips_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -44506,19 +45367,19 @@ export default { }, "match_maps_var_samp_order_by": { "clips_count": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "public_clips_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -44555,19 +45416,19 @@ export default { }, "match_maps_variance_order_by": { "clips_count": [ - 2781 + 2829 ], "lineup_1_timeouts_available": [ - 2781 + 2829 ], "lineup_2_timeouts_available": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "public_clips_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -44584,7 +45445,7 @@ export default { 38 ], "check_in_setting": [ - 405 + 432 ], "coaches": [ 3 @@ -44592,11 +45453,14 @@ export default { "default_models": [ 3 ], + "halftime_pausematch": [ + 3 + ], "has_active_matches": [ 3 ], "id": [ - 4762 + 4921 ], "invite_code": [ 78 @@ -44608,22 +45472,22 @@ export default { 38 ], "map_pool": [ - 2095 + 2143 ], "map_pool_id": [ - 4762 + 4921 ], "map_veto": [ 3 ], "match_mode": [ - 819 + 846 ], "matches": [ - 2596, + 2644, { "distinct_on": [ - 2618, + 2666, "[matches_select_column!]" ], "limit": [ @@ -44633,19 +45497,19 @@ export default { 38 ], "order_by": [ - 2616, + 2664, "[matches_order_by!]" ], "where": [ - 2605 + 2653 ] } ], "matches_aggregate": [ - 2597, + 2645, { "distinct_on": [ - 2618, + 2666, "[matches_select_column!]" ], "limit": [ @@ -44655,11 +45519,11 @@ export default { 38 ], "order_by": [ - 2616, + 2664, "[matches_order_by!]" ], "where": [ - 2605 + 2653 ] } ], @@ -44676,7 +45540,7 @@ export default { 3 ], "ready_setting": [ - 961 + 988 ], "region_veto": [ 3 @@ -44684,26 +45548,29 @@ export default { "regions": [ 78 ], + "round_restart_delay": [ + 38 + ], "tech_timeout_setting": [ - 1123 + 1150 ], "timeout_setting": [ - 1123 + 1150 ], "tournament": [ - 4716 + 4857 ], "tournament_bracket": [ - 4326 + 4378 ], "tournament_stage": [ - 4454 + 4595 ], "tv_delay": [ 38 ], "type": [ - 860 + 887 ], "__typename": [ 78 @@ -44711,10 +45578,10 @@ export default { }, "match_options_aggregate": { "aggregate": [ - 2478 + 2526 ], "nodes": [ - 2476 + 2524 ], "__typename": [ 78 @@ -44722,13 +45589,13 @@ export default { }, "match_options_aggregate_fields": { "avg": [ - 2479 + 2527 ], "count": [ 38, { "columns": [ - 2491, + 2539, "[match_options_select_column!]" ], "distinct": [ @@ -44737,31 +45604,31 @@ export default { } ], "max": [ - 2484 + 2532 ], "min": [ - 2485 + 2533 ], "stddev": [ - 2493 + 2541 ], "stddev_pop": [ - 2494 + 2542 ], "stddev_samp": [ - 2495 + 2543 ], "sum": [ - 2498 + 2546 ], "var_pop": [ - 2501 + 2549 ], "var_samp": [ - 2502 + 2550 ], "variance": [ - 2503 + 2551 ], "__typename": [ 78 @@ -44783,6 +45650,9 @@ export default { "number_of_substitutes": [ 29 ], + "round_restart_delay": [ + 29 + ], "tv_delay": [ 29 ], @@ -44792,13 +45662,13 @@ export default { }, "match_options_bool_exp": { "_and": [ - 2480 + 2528 ], "_not": [ - 2480 + 2528 ], "_or": [ - 2480 + 2528 ], "auto_cancel_duration": [ 39 @@ -44810,7 +45680,7 @@ export default { 39 ], "check_in_setting": [ - 406 + 433 ], "coaches": [ 4 @@ -44818,11 +45688,14 @@ export default { "default_models": [ 4 ], + "halftime_pausematch": [ + 4 + ], "has_active_matches": [ 4 ], "id": [ - 4764 + 4923 ], "invite_code": [ 80 @@ -44834,22 +45707,22 @@ export default { 39 ], "map_pool": [ - 2098 + 2146 ], "map_pool_id": [ - 4764 + 4923 ], "map_veto": [ 4 ], "match_mode": [ - 820 + 847 ], "matches": [ - 2605 + 2653 ], "matches_aggregate": [ - 2598 + 2646 ], "mr": [ 39 @@ -44864,7 +45737,7 @@ export default { 4 ], "ready_setting": [ - 962 + 989 ], "region_veto": [ 4 @@ -44872,26 +45745,29 @@ export default { "regions": [ 79 ], + "round_restart_delay": [ + 39 + ], "tech_timeout_setting": [ - 1124 + 1151 ], "timeout_setting": [ - 1124 + 1151 ], "tournament": [ - 4727 + 4878 ], "tournament_bracket": [ - 4337 + 4389 ], "tournament_stage": [ - 4466 + 4607 ], "tv_delay": [ 39 ], "type": [ - 861 + 888 ], "__typename": [ 78 @@ -44914,6 +45790,9 @@ export default { "number_of_substitutes": [ 38 ], + "round_restart_delay": [ + 38 + ], "tv_delay": [ 38 ], @@ -44932,7 +45811,7 @@ export default { 38 ], "check_in_setting": [ - 405 + 432 ], "coaches": [ 3 @@ -44940,8 +45819,11 @@ export default { "default_models": [ 3 ], + "halftime_pausematch": [ + 3 + ], "id": [ - 4762 + 4921 ], "invite_code": [ 78 @@ -44953,19 +45835,19 @@ export default { 38 ], "map_pool": [ - 2104 + 2152 ], "map_pool_id": [ - 4762 + 4921 ], "map_veto": [ 3 ], "match_mode": [ - 819 + 846 ], "matches": [ - 2602 + 2650 ], "mr": [ 38 @@ -44980,7 +45862,7 @@ export default { 3 ], "ready_setting": [ - 961 + 988 ], "region_veto": [ 3 @@ -44988,26 +45870,29 @@ export default { "regions": [ 78 ], + "round_restart_delay": [ + 38 + ], "tech_timeout_setting": [ - 1123 + 1150 ], "timeout_setting": [ - 1123 + 1150 ], "tournament": [ - 4736 + 4887 ], "tournament_bracket": [ - 4346 + 4398 ], "tournament_stage": [ - 4478 + 4619 ], "tv_delay": [ 38 ], "type": [ - 860 + 887 ], "__typename": [ 78 @@ -45021,7 +45906,7 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "invite_code": [ 78 @@ -45030,7 +45915,7 @@ export default { 38 ], "map_pool_id": [ - 4762 + 4921 ], "mr": [ 38 @@ -45041,6 +45926,9 @@ export default { "regions": [ 78 ], + "round_restart_delay": [ + 38 + ], "tv_delay": [ 38 ], @@ -45056,7 +45944,7 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "invite_code": [ 78 @@ -45065,7 +45953,7 @@ export default { 38 ], "map_pool_id": [ - 4762 + 4921 ], "mr": [ 38 @@ -45076,6 +45964,9 @@ export default { "regions": [ 78 ], + "round_restart_delay": [ + 38 + ], "tv_delay": [ 38 ], @@ -45088,7 +45979,7 @@ export default { 38 ], "returning": [ - 2476 + 2524 ], "__typename": [ 78 @@ -45096,10 +45987,10 @@ export default { }, "match_options_obj_rel_insert_input": { "data": [ - 2483 + 2531 ], "on_conflict": [ - 2488 + 2536 ], "__typename": [ 78 @@ -45107,13 +45998,13 @@ export default { }, "match_options_on_conflict": { "constraint": [ - 2481 + 2529 ], "update_columns": [ - 2499 + 2547 ], "where": [ - 2480 + 2528 ], "__typename": [ 78 @@ -45121,94 +46012,100 @@ export default { }, "match_options_order_by": { "auto_cancel_duration": [ - 2781 + 2829 ], "auto_cancellation": [ - 2781 + 2829 ], "best_of": [ - 2781 + 2829 ], "check_in_setting": [ - 2781 + 2829 ], "coaches": [ - 2781 + 2829 ], "default_models": [ - 2781 + 2829 + ], + "halftime_pausematch": [ + 2829 ], "has_active_matches": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "invite_code": [ - 2781 + 2829 ], "knife_round": [ - 2781 + 2829 ], "live_match_timeout": [ - 2781 + 2829 ], "map_pool": [ - 2106 + 2154 ], "map_pool_id": [ - 2781 + 2829 ], "map_veto": [ - 2781 + 2829 ], "match_mode": [ - 2781 + 2829 ], "matches_aggregate": [ - 2601 + 2649 ], "mr": [ - 2781 + 2829 ], "number_of_substitutes": [ - 2781 + 2829 ], "overtime": [ - 2781 + 2829 ], "prefer_dedicated_server": [ - 2781 + 2829 ], "ready_setting": [ - 2781 + 2829 ], "region_veto": [ - 2781 + 2829 ], "regions": [ - 2781 + 2829 + ], + "round_restart_delay": [ + 2829 ], "tech_timeout_setting": [ - 2781 + 2829 ], "timeout_setting": [ - 2781 + 2829 ], "tournament": [ - 4738 + 4889 ], "tournament_bracket": [ - 4348 + 4400 ], "tournament_stage": [ - 4480 + 4621 ], "tv_delay": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "__typename": [ 78 @@ -45216,7 +46113,7 @@ export default { }, "match_options_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -45234,7 +46131,7 @@ export default { 38 ], "check_in_setting": [ - 405 + 432 ], "coaches": [ 3 @@ -45242,8 +46139,11 @@ export default { "default_models": [ 3 ], + "halftime_pausematch": [ + 3 + ], "id": [ - 4762 + 4921 ], "invite_code": [ 78 @@ -45255,13 +46155,13 @@ export default { 38 ], "map_pool_id": [ - 4762 + 4921 ], "map_veto": [ 3 ], "match_mode": [ - 819 + 846 ], "mr": [ 38 @@ -45276,7 +46176,7 @@ export default { 3 ], "ready_setting": [ - 961 + 988 ], "region_veto": [ 3 @@ -45284,17 +46184,20 @@ export default { "regions": [ 78 ], + "round_restart_delay": [ + 38 + ], "tech_timeout_setting": [ - 1123 + 1150 ], "timeout_setting": [ - 1123 + 1150 ], "tv_delay": [ 38 ], "type": [ - 860 + 887 ], "__typename": [ 78 @@ -45316,6 +46219,9 @@ export default { "number_of_substitutes": [ 29 ], + "round_restart_delay": [ + 29 + ], "tv_delay": [ 29 ], @@ -45339,6 +46245,9 @@ export default { "number_of_substitutes": [ 29 ], + "round_restart_delay": [ + 29 + ], "tv_delay": [ 29 ], @@ -45362,6 +46271,9 @@ export default { "number_of_substitutes": [ 29 ], + "round_restart_delay": [ + 29 + ], "tv_delay": [ 29 ], @@ -45371,7 +46283,7 @@ export default { }, "match_options_stream_cursor_input": { "initial_value": [ - 2497 + 2545 ], "ordering": [ 236 @@ -45391,7 +46303,7 @@ export default { 38 ], "check_in_setting": [ - 405 + 432 ], "coaches": [ 3 @@ -45399,8 +46311,11 @@ export default { "default_models": [ 3 ], + "halftime_pausematch": [ + 3 + ], "id": [ - 4762 + 4921 ], "invite_code": [ 78 @@ -45412,13 +46327,13 @@ export default { 38 ], "map_pool_id": [ - 4762 + 4921 ], "map_veto": [ 3 ], "match_mode": [ - 819 + 846 ], "mr": [ 38 @@ -45433,7 +46348,7 @@ export default { 3 ], "ready_setting": [ - 961 + 988 ], "region_veto": [ 3 @@ -45441,17 +46356,20 @@ export default { "regions": [ 78 ], + "round_restart_delay": [ + 38 + ], "tech_timeout_setting": [ - 1123 + 1150 ], "timeout_setting": [ - 1123 + 1150 ], "tv_delay": [ 38 ], "type": [ - 860 + 887 ], "__typename": [ 78 @@ -45473,6 +46391,9 @@ export default { "number_of_substitutes": [ 38 ], + "round_restart_delay": [ + 38 + ], "tv_delay": [ 38 ], @@ -45483,13 +46404,13 @@ export default { "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2482 + 2530 ], "_set": [ - 2492 + 2540 ], "where": [ - 2480 + 2528 ], "__typename": [ 78 @@ -45511,6 +46432,9 @@ export default { "number_of_substitutes": [ 29 ], + "round_restart_delay": [ + 29 + ], "tv_delay": [ 29 ], @@ -45534,6 +46458,9 @@ export default { "number_of_substitutes": [ 29 ], + "round_restart_delay": [ + 29 + ], "tv_delay": [ 29 ], @@ -45557,6 +46484,9 @@ export default { "number_of_substitutes": [ 29 ], + "round_restart_delay": [ + 29 + ], "tv_delay": [ 29 ], @@ -45566,28 +46496,28 @@ export default { }, "match_region_veto_picks": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_lineup": [ - 2276 + 2324 ], "match_lineup_id": [ - 4762 + 4921 ], "region": [ 78 ], "type": [ - 1205 + 1253 ], "__typename": [ 78 @@ -45595,10 +46525,10 @@ export default { }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2508 + 2556 ], "nodes": [ - 2504 + 2552 ], "__typename": [ 78 @@ -45606,7 +46536,7 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 2507 + 2555 ], "__typename": [ 78 @@ -45614,13 +46544,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2522 + 2570 ], "distinct": [ 3 ], "filter": [ - 2511 + 2559 ], "predicate": [ 39 @@ -45634,7 +46564,7 @@ export default { 38, { "columns": [ - 2522, + 2570, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -45643,10 +46573,10 @@ export default { } ], "max": [ - 2514 + 2562 ], "min": [ - 2516 + 2564 ], "__typename": [ 78 @@ -45654,13 +46584,13 @@ export default { }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 2781 + 2829 ], "max": [ - 2515 + 2563 ], "min": [ - 2517 + 2565 ], "__typename": [ 78 @@ -45668,10 +46598,10 @@ export default { }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2513 + 2561 ], "on_conflict": [ - 2519 + 2567 ], "__typename": [ 78 @@ -45679,37 +46609,37 @@ export default { }, "match_region_veto_picks_bool_exp": { "_and": [ - 2511 + 2559 ], "_not": [ - 2511 + 2559 ], "_or": [ - 2511 + 2559 ], "created_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_lineup": [ - 2285 + 2333 ], "match_lineup_id": [ - 4764 + 4923 ], "region": [ 80 ], "type": [ - 1206 + 1254 ], "__typename": [ 78 @@ -45718,28 +46648,28 @@ export default { "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_lineup": [ - 2294 + 2342 ], "match_lineup_id": [ - 4762 + 4921 ], "region": [ 78 ], "type": [ - 1205 + 1253 ], "__typename": [ 78 @@ -45747,16 +46677,16 @@ export default { }, "match_region_veto_picks_max_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "region": [ 78 @@ -45767,19 +46697,19 @@ export default { }, "match_region_veto_picks_max_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_lineup_id": [ - 2781 + 2829 ], "region": [ - 2781 + 2829 ], "__typename": [ 78 @@ -45787,16 +46717,16 @@ export default { }, "match_region_veto_picks_min_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "region": [ 78 @@ -45807,19 +46737,19 @@ export default { }, "match_region_veto_picks_min_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_lineup_id": [ - 2781 + 2829 ], "region": [ - 2781 + 2829 ], "__typename": [ 78 @@ -45830,7 +46760,7 @@ export default { 38 ], "returning": [ - 2504 + 2552 ], "__typename": [ 78 @@ -45838,13 +46768,13 @@ export default { }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2512 + 2560 ], "update_columns": [ - 2526 + 2574 ], "where": [ - 2511 + 2559 ], "__typename": [ 78 @@ -45852,28 +46782,28 @@ export default { }, "match_region_veto_picks_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_lineup": [ - 2296 + 2344 ], "match_lineup_id": [ - 2781 + 2829 ], "region": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "__typename": [ 78 @@ -45881,7 +46811,7 @@ export default { }, "match_region_veto_picks_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -45890,22 +46820,22 @@ export default { "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "region": [ 78 ], "type": [ - 1205 + 1253 ], "__typename": [ 78 @@ -45913,7 +46843,7 @@ export default { }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2525 + 2573 ], "ordering": [ 236 @@ -45924,22 +46854,22 @@ export default { }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "region": [ 78 ], "type": [ - 1205 + 1253 ], "__typename": [ 78 @@ -45948,10 +46878,10 @@ export default { "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2523 + 2571 ], "where": [ - 2511 + 2559 ], "__typename": [ 78 @@ -45965,13 +46895,13 @@ export default { 78 ], "game_server_node": [ - 1528 + 1576 ], "game_server_node_id": [ 78 ], "id": [ - 4762 + 4921 ], "is_game_streamer": [ 3 @@ -45983,16 +46913,16 @@ export default { 78 ], "last_status_at": [ - 4324 + 4376 ], "link": [ 78 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "mode": [ 78 @@ -46004,7 +46934,7 @@ export default { 78 ], "status_history": [ - 1652, + 1700, { "path": [ 78 @@ -46023,10 +46953,10 @@ export default { }, "match_streams_aggregate": { "aggregate": [ - 2534 + 2582 ], "nodes": [ - 2528 + 2576 ], "__typename": [ 78 @@ -46034,13 +46964,13 @@ export default { }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2531 + 2579 ], "bool_or": [ - 2532 + 2580 ], "count": [ - 2533 + 2581 ], "__typename": [ 78 @@ -46048,13 +46978,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2557 + 2605 ], "distinct": [ 3 ], "filter": [ - 2540 + 2588 ], "predicate": [ 4 @@ -46065,13 +46995,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2558 + 2606 ], "distinct": [ 3 ], "filter": [ - 2540 + 2588 ], "predicate": [ 4 @@ -46082,13 +47012,13 @@ export default { }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2556 + 2604 ], "distinct": [ 3 ], "filter": [ - 2540 + 2588 ], "predicate": [ 39 @@ -46099,13 +47029,13 @@ export default { }, "match_streams_aggregate_fields": { "avg": [ - 2538 + 2586 ], "count": [ 38, { "columns": [ - 2556, + 2604, "[match_streams_select_column!]" ], "distinct": [ @@ -46114,31 +47044,31 @@ export default { } ], "max": [ - 2547 + 2595 ], "min": [ - 2549 + 2597 ], "stddev": [ - 2560 + 2608 ], "stddev_pop": [ - 2562 + 2610 ], "stddev_samp": [ - 2564 + 2612 ], "sum": [ - 2568 + 2616 ], "var_pop": [ - 2572 + 2620 ], "var_samp": [ - 2574 + 2622 ], "variance": [ - 2576 + 2624 ], "__typename": [ 78 @@ -46146,37 +47076,37 @@ export default { }, "match_streams_aggregate_order_by": { "avg": [ - 2539 + 2587 ], "count": [ - 2781 + 2829 ], "max": [ - 2548 + 2596 ], "min": [ - 2550 + 2598 ], "stddev": [ - 2561 + 2609 ], "stddev_pop": [ - 2563 + 2611 ], "stddev_samp": [ - 2565 + 2613 ], "sum": [ - 2569 + 2617 ], "var_pop": [ - 2573 + 2621 ], "var_samp": [ - 2575 + 2623 ], "variance": [ - 2577 + 2625 ], "__typename": [ 78 @@ -46184,7 +47114,7 @@ export default { }, "match_streams_append_input": { "status_history": [ - 1652 + 1700 ], "__typename": [ 78 @@ -46192,10 +47122,10 @@ export default { }, "match_streams_arr_rel_insert_input": { "data": [ - 2546 + 2594 ], "on_conflict": [ - 2552 + 2600 ], "__typename": [ 78 @@ -46211,7 +47141,7 @@ export default { }, "match_streams_avg_order_by": { "priority": [ - 2781 + 2829 ], "__typename": [ 78 @@ -46219,13 +47149,13 @@ export default { }, "match_streams_bool_exp": { "_and": [ - 2540 + 2588 ], "_not": [ - 2540 + 2588 ], "_or": [ - 2540 + 2588 ], "autodirector": [ 4 @@ -46234,13 +47164,13 @@ export default { 80 ], "game_server_node": [ - 1540 + 1588 ], "game_server_node_id": [ 80 ], "id": [ - 4764 + 4923 ], "is_game_streamer": [ 4 @@ -46252,16 +47182,16 @@ export default { 80 ], "last_status_at": [ - 4325 + 4377 ], "link": [ 80 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "mode": [ 80 @@ -46273,7 +47203,7 @@ export default { 80 ], "status_history": [ - 1654 + 1702 ], "stream_url": [ 80 @@ -46326,13 +47256,13 @@ export default { 78 ], "game_server_node": [ - 1552 + 1600 ], "game_server_node_id": [ 78 ], "id": [ - 4762 + 4921 ], "is_game_streamer": [ 3 @@ -46344,16 +47274,16 @@ export default { 78 ], "last_status_at": [ - 4324 + 4376 ], "link": [ 78 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "mode": [ 78 @@ -46365,7 +47295,7 @@ export default { 78 ], "status_history": [ - 1652 + 1700 ], "stream_url": [ 78 @@ -46385,19 +47315,19 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4324 + 4376 ], "link": [ 78 ], "match_id": [ - 4762 + 4921 ], "mode": [ 78 @@ -46420,40 +47350,40 @@ export default { }, "match_streams_max_order_by": { "error_message": [ - 2781 + 2829 ], "game_server_node_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "k8s_service_name": [ - 2781 + 2829 ], "last_status_at": [ - 2781 + 2829 ], "link": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "mode": [ - 2781 + 2829 ], "priority": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "stream_url": [ - 2781 + 2829 ], "title": [ - 2781 + 2829 ], "__typename": [ 78 @@ -46467,19 +47397,19 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4324 + 4376 ], "link": [ 78 ], "match_id": [ - 4762 + 4921 ], "mode": [ 78 @@ -46502,40 +47432,40 @@ export default { }, "match_streams_min_order_by": { "error_message": [ - 2781 + 2829 ], "game_server_node_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "k8s_service_name": [ - 2781 + 2829 ], "last_status_at": [ - 2781 + 2829 ], "link": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "mode": [ - 2781 + 2829 ], "priority": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "stream_url": [ - 2781 + 2829 ], "title": [ - 2781 + 2829 ], "__typename": [ 78 @@ -46546,7 +47476,7 @@ export default { 38 ], "returning": [ - 2528 + 2576 ], "__typename": [ 78 @@ -46554,13 +47484,13 @@ export default { }, "match_streams_on_conflict": { "constraint": [ - 2541 + 2589 ], "update_columns": [ - 2570 + 2618 ], "where": [ - 2540 + 2588 ], "__typename": [ 78 @@ -46568,58 +47498,58 @@ export default { }, "match_streams_order_by": { "autodirector": [ - 2781 + 2829 ], "error_message": [ - 2781 + 2829 ], "game_server_node": [ - 1554 + 1602 ], "game_server_node_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "is_game_streamer": [ - 2781 + 2829 ], "is_live": [ - 2781 + 2829 ], "k8s_service_name": [ - 2781 + 2829 ], "last_status_at": [ - 2781 + 2829 ], "link": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "mode": [ - 2781 + 2829 ], "priority": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "status_history": [ - 2781 + 2829 ], "stream_url": [ - 2781 + 2829 ], "title": [ - 2781 + 2829 ], "__typename": [ 78 @@ -46627,7 +47557,7 @@ export default { }, "match_streams_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -46635,7 +47565,7 @@ export default { }, "match_streams_prepend_input": { "status_history": [ - 1652 + 1700 ], "__typename": [ 78 @@ -46655,7 +47585,7 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "is_game_streamer": [ 3 @@ -46667,13 +47597,13 @@ export default { 78 ], "last_status_at": [ - 4324 + 4376 ], "link": [ 78 ], "match_id": [ - 4762 + 4921 ], "mode": [ 78 @@ -46685,7 +47615,7 @@ export default { 78 ], "status_history": [ - 1652 + 1700 ], "stream_url": [ 78 @@ -46707,7 +47637,7 @@ export default { }, "match_streams_stddev_order_by": { "priority": [ - 2781 + 2829 ], "__typename": [ 78 @@ -46723,7 +47653,7 @@ export default { }, "match_streams_stddev_pop_order_by": { "priority": [ - 2781 + 2829 ], "__typename": [ 78 @@ -46739,7 +47669,7 @@ export default { }, "match_streams_stddev_samp_order_by": { "priority": [ - 2781 + 2829 ], "__typename": [ 78 @@ -46747,7 +47677,7 @@ export default { }, "match_streams_stream_cursor_input": { "initial_value": [ - 2567 + 2615 ], "ordering": [ 236 @@ -46767,7 +47697,7 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "is_game_streamer": [ 3 @@ -46779,13 +47709,13 @@ export default { 78 ], "last_status_at": [ - 4324 + 4376 ], "link": [ 78 ], "match_id": [ - 4762 + 4921 ], "mode": [ 78 @@ -46797,7 +47727,7 @@ export default { 78 ], "status_history": [ - 1652 + 1700 ], "stream_url": [ 78 @@ -46819,7 +47749,7 @@ export default { }, "match_streams_sum_order_by": { "priority": [ - 2781 + 2829 ], "__typename": [ 78 @@ -46828,28 +47758,28 @@ export default { "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2536 + 2584 ], "_delete_at_path": [ - 2542 + 2590 ], "_delete_elem": [ - 2543 + 2591 ], "_delete_key": [ - 2544 + 2592 ], "_inc": [ - 2545 + 2593 ], "_prepend": [ - 2555 + 2603 ], "_set": [ - 2559 + 2607 ], "where": [ - 2540 + 2588 ], "__typename": [ 78 @@ -46865,7 +47795,7 @@ export default { }, "match_streams_var_pop_order_by": { "priority": [ - 2781 + 2829 ], "__typename": [ 78 @@ -46881,7 +47811,7 @@ export default { }, "match_streams_var_samp_order_by": { "priority": [ - 2781 + 2829 ], "__typename": [ 78 @@ -46897,7 +47827,7 @@ export default { }, "match_streams_variance_order_by": { "priority": [ - 2781 + 2829 ], "__typename": [ 78 @@ -46908,7 +47838,7 @@ export default { 78 ], "type": [ - 591 + 618 ], "__typename": [ 78 @@ -46916,10 +47846,10 @@ export default { }, "match_type_cfgs_aggregate": { "aggregate": [ - 2580 + 2628 ], "nodes": [ - 2578 + 2626 ], "__typename": [ 78 @@ -46930,7 +47860,7 @@ export default { 38, { "columns": [ - 2590, + 2638, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -46939,10 +47869,10 @@ export default { } ], "max": [ - 2584 + 2632 ], "min": [ - 2585 + 2633 ], "__typename": [ 78 @@ -46950,19 +47880,19 @@ export default { }, "match_type_cfgs_bool_exp": { "_and": [ - 2581 + 2629 ], "_not": [ - 2581 + 2629 ], "_or": [ - 2581 + 2629 ], "cfg": [ 80 ], "type": [ - 592 + 619 ], "__typename": [ 78 @@ -46974,7 +47904,7 @@ export default { 78 ], "type": [ - 591 + 618 ], "__typename": [ 78 @@ -47001,7 +47931,7 @@ export default { 38 ], "returning": [ - 2578 + 2626 ], "__typename": [ 78 @@ -47009,13 +47939,13 @@ export default { }, "match_type_cfgs_on_conflict": { "constraint": [ - 2582 + 2630 ], "update_columns": [ - 2594 + 2642 ], "where": [ - 2581 + 2629 ], "__typename": [ 78 @@ -47023,10 +47953,10 @@ export default { }, "match_type_cfgs_order_by": { "cfg": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "__typename": [ 78 @@ -47034,7 +47964,7 @@ export default { }, "match_type_cfgs_pk_columns_input": { "type": [ - 591 + 618 ], "__typename": [ 78 @@ -47046,7 +47976,7 @@ export default { 78 ], "type": [ - 591 + 618 ], "__typename": [ 78 @@ -47054,7 +47984,7 @@ export default { }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2593 + 2641 ], "ordering": [ 236 @@ -47068,7 +47998,7 @@ export default { 78 ], "type": [ - 591 + 618 ], "__typename": [ 78 @@ -47077,10 +48007,10 @@ export default { "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2591 + 2639 ], "where": [ - 2581 + 2629 ], "__typename": [ 78 @@ -47112,13 +48042,13 @@ export default { 3 ], "cancels_at": [ - 4324 + 4376 ], "clutches": [ - 4942, + 5101, { "distinct_on": [ - 4958, + 5117, "[v_match_clutches_select_column!]" ], "limit": [ @@ -47128,19 +48058,19 @@ export default { 38 ], "order_by": [ - 4957, + 5116, "[v_match_clutches_order_by!]" ], "where": [ - 4951 + 5110 ] } ], "clutches_aggregate": [ - 4943, + 5102, { "distinct_on": [ - 4958, + 5117, "[v_match_clutches_select_column!]" ], "limit": [ @@ -47150,11 +48080,11 @@ export default { 38 ], "order_by": [ - 4957, + 5116, "[v_match_clutches_order_by!]" ], "where": [ - 4951 + 5110 ] } ], @@ -47165,16 +48095,16 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "current_match_map_id": [ - 4762 + 4921 ], "demos": [ - 2318, + 2366, { "distinct_on": [ - 2347, + 2395, "[match_map_demos_select_column!]" ], "limit": [ @@ -47184,19 +48114,19 @@ export default { 38 ], "order_by": [ - 2344, + 2392, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2378 ] } ], "demos_aggregate": [ - 2319, + 2367, { "distinct_on": [ - 2347, + 2395, "[match_map_demos_select_column!]" ], "limit": [ @@ -47206,19 +48136,19 @@ export default { 38 ], "order_by": [ - 2344, + 2392, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2378 ] } ], "draft_games": [ - 354, + 381, { "distinct_on": [ - 378, + 405, "[draft_games_select_column!]" ], "limit": [ @@ -47228,19 +48158,19 @@ export default { 38 ], "order_by": [ - 376, + 403, "[draft_games_order_by!]" ], "where": [ - 365 + 392 ] } ], "draft_games_aggregate": [ - 355, + 382, { "distinct_on": [ - 378, + 405, "[draft_games_select_column!]" ], "limit": [ @@ -47250,28 +48180,28 @@ export default { 38 ], "order_by": [ - 376, + 403, "[draft_games_order_by!]" ], "where": [ - 365 + 392 ] } ], "e_match_status": [ - 834 + 861 ], "e_region": [ - 3826 + 3874 ], "effective_at": [ - 4324 + 4376 ], "elo_changes": [ - 5139, + 5298, { "distinct_on": [ - 5165, + 5324, "[v_player_elo_select_column!]" ], "limit": [ @@ -47281,19 +48211,19 @@ export default { 38 ], "order_by": [ - 5164, + 5323, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 5317 ] } ], "elo_changes_aggregate": [ - 5140, + 5299, { "distinct_on": [ - 5165, + 5324, "[v_player_elo_select_column!]" ], "limit": [ @@ -47303,22 +48233,22 @@ export default { 38 ], "order_by": [ - 5164, + 5323, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 5317 ] } ], "ended_at": [ - 4324 + 4376 ], "external_id": [ 78 ], "id": [ - 4762 + 4921 ], "invite_code": [ 78 @@ -47351,19 +48281,19 @@ export default { 78 ], "lineup_1": [ - 2276 + 2324 ], "lineup_1_id": [ - 4762 + 4921 ], "lineup_2": [ - 2276 + 2324 ], "lineup_2_id": [ - 4762 + 4921 ], "lineup_counts": [ - 1650, + 1698, { "path": [ 78 @@ -47371,13 +48301,13 @@ export default { } ], "map_veto_picking_lineup_id": [ - 4762 + 4921 ], "map_veto_picks": [ - 2410, + 2458, { "distinct_on": [ - 2428, + 2476, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -47387,19 +48317,19 @@ export default { 38 ], "order_by": [ - 2426, + 2474, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2465 ] } ], "map_veto_picks_aggregate": [ - 2411, + 2459, { "distinct_on": [ - 2428, + 2476, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -47409,11 +48339,11 @@ export default { 38 ], "order_by": [ - 2426, + 2474, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2465 ] } ], @@ -47421,10 +48351,10 @@ export default { 78 ], "match_maps": [ - 2434, + 2482, { "distinct_on": [ - 2456, + 2504, "[match_maps_select_column!]" ], "limit": [ @@ -47434,19 +48364,19 @@ export default { 38 ], "order_by": [ - 2454, + 2502, "[match_maps_order_by!]" ], "where": [ - 2443 + 2491 ] } ], "match_maps_aggregate": [ - 2435, + 2483, { "distinct_on": [ - 2456, + 2504, "[match_maps_select_column!]" ], "limit": [ @@ -47456,16 +48386,16 @@ export default { 38 ], "order_by": [ - 2454, + 2502, "[match_maps_order_by!]" ], "where": [ - 2443 + 2491 ] } ], "match_options_id": [ - 4762 + 4921 ], "max_players_per_lineup": [ 38 @@ -47474,10 +48404,10 @@ export default { 38 ], "opening_duels": [ - 5070, + 5229, { "distinct_on": [ - 5086, + 5245, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -47487,19 +48417,19 @@ export default { 38 ], "order_by": [ - 5085, + 5244, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5079 + 5238 ] } ], "opening_duels_aggregate": [ - 5071, + 5230, { "distinct_on": [ - 5086, + 5245, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -47509,19 +48439,19 @@ export default { 38 ], "order_by": [ - 5085, + 5244, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5079 + 5238 ] } ], "options": [ - 2476 + 2524 ], "organizer": [ - 3739 + 3787 ], "organizer_steam_id": [ 180 @@ -47530,10 +48460,10 @@ export default { 78 ], "player_assists": [ - 2919, + 2967, { "distinct_on": [ - 2942, + 2990, "[player_assists_select_column!]" ], "limit": [ @@ -47543,19 +48473,19 @@ export default { 38 ], "order_by": [ - 2940, + 2988, "[player_assists_order_by!]" ], "where": [ - 2930 + 2978 ] } ], "player_assists_aggregate": [ - 2920, + 2968, { "distinct_on": [ - 2942, + 2990, "[player_assists_select_column!]" ], "limit": [ @@ -47565,19 +48495,19 @@ export default { 38 ], "order_by": [ - 2940, + 2988, "[player_assists_order_by!]" ], "where": [ - 2930 + 2978 ] } ], "player_damages": [ - 2982, + 3030, { "distinct_on": [ - 3003, + 3051, "[player_damages_select_column!]" ], "limit": [ @@ -47587,19 +48517,19 @@ export default { 38 ], "order_by": [ - 3001, + 3049, "[player_damages_order_by!]" ], "where": [ - 2991 + 3039 ] } ], "player_damages_aggregate": [ - 2983, + 3031, { "distinct_on": [ - 3003, + 3051, "[player_damages_select_column!]" ], "limit": [ @@ -47609,19 +48539,19 @@ export default { 38 ], "order_by": [ - 3001, + 3049, "[player_damages_order_by!]" ], "where": [ - 2991 + 3039 ] } ], "player_flashes": [ - 3091, + 3139, { "distinct_on": [ - 3114, + 3162, "[player_flashes_select_column!]" ], "limit": [ @@ -47631,19 +48561,19 @@ export default { 38 ], "order_by": [ - 3112, + 3160, "[player_flashes_order_by!]" ], "where": [ - 3102 + 3150 ] } ], "player_flashes_aggregate": [ - 3092, + 3140, { "distinct_on": [ - 3114, + 3162, "[player_flashes_select_column!]" ], "limit": [ @@ -47653,19 +48583,19 @@ export default { 38 ], "order_by": [ - 3112, + 3160, "[player_flashes_order_by!]" ], "where": [ - 3102 + 3150 ] } ], "player_kills": [ - 3136, + 3184, { "distinct_on": [ - 3200, + 3248, "[player_kills_select_column!]" ], "limit": [ @@ -47675,19 +48605,19 @@ export default { 38 ], "order_by": [ - 3198, + 3246, "[player_kills_order_by!]" ], "where": [ - 3147 + 3195 ] } ], "player_kills_aggregate": [ - 3137, + 3185, { "distinct_on": [ - 3200, + 3248, "[player_kills_select_column!]" ], "limit": [ @@ -47697,19 +48627,19 @@ export default { 38 ], "order_by": [ - 3198, + 3246, "[player_kills_order_by!]" ], "where": [ - 3147 + 3195 ] } ], "player_objectives": [ - 3337, + 3385, { "distinct_on": [ - 3358, + 3406, "[player_objectives_select_column!]" ], "limit": [ @@ -47719,19 +48649,19 @@ export default { 38 ], "order_by": [ - 3356, + 3404, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3394 ] } ], "player_objectives_aggregate": [ - 3338, + 3386, { "distinct_on": [ - 3358, + 3406, "[player_objectives_select_column!]" ], "limit": [ @@ -47741,19 +48671,19 @@ export default { 38 ], "order_by": [ - 3356, + 3404, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3394 ] } ], "player_unused_utilities": [ - 3624, + 3672, { "distinct_on": [ - 3645, + 3693, "[player_unused_utility_select_column!]" ], "limit": [ @@ -47763,19 +48693,19 @@ export default { 38 ], "order_by": [ - 3643, + 3691, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3681 ] } ], "player_unused_utilities_aggregate": [ - 3625, + 3673, { "distinct_on": [ - 3645, + 3693, "[player_unused_utility_select_column!]" ], "limit": [ @@ -47785,19 +48715,19 @@ export default { 38 ], "order_by": [ - 3643, + 3691, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3681 ] } ], "player_utility": [ - 3665, + 3713, { "distinct_on": [ - 3686, + 3734, "[player_utility_select_column!]" ], "limit": [ @@ -47807,19 +48737,19 @@ export default { 38 ], "order_by": [ - 3684, + 3732, "[player_utility_order_by!]" ], "where": [ - 3674 + 3722 ] } ], "player_utility_aggregate": [ - 3666, + 3714, { "distinct_on": [ - 3686, + 3734, "[player_utility_select_column!]" ], "limit": [ @@ -47829,11 +48759,11 @@ export default { 38 ], "order_by": [ - 3684, + 3732, "[player_utility_order_by!]" ], "where": [ - 3674 + 3722 ] } ], @@ -47841,13 +48771,13 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4762 + 4921 ], "region_veto_picks": [ - 2504, + 2552, { "distinct_on": [ - 2522, + 2570, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -47857,19 +48787,19 @@ export default { 38 ], "order_by": [ - 2520, + 2568, "[match_region_veto_picks_order_by!]" ], "where": [ - 2511 + 2559 ] } ], "region_veto_picks_aggregate": [ - 2505, + 2553, { "distinct_on": [ - 2522, + 2570, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -47879,11 +48809,11 @@ export default { 38 ], "order_by": [ - 2520, + 2568, "[match_region_veto_picks_order_by!]" ], "where": [ - 2511 + 2559 ] } ], @@ -47891,16 +48821,16 @@ export default { 3 ], "scheduled_at": [ - 4324 + 4376 ], "server": [ - 3853 + 3901 ], "server_error": [ 78 ], "server_id": [ - 4762 + 4921 ], "server_plugin_runtime": [ 78 @@ -47915,16 +48845,16 @@ export default { 78 ], "started_at": [ - 4324 + 4376 ], "status": [ - 839 + 866 ], "streams": [ - 2528, + 2576, { "distinct_on": [ - 2556, + 2604, "[match_streams_select_column!]" ], "limit": [ @@ -47934,19 +48864,19 @@ export default { 38 ], "order_by": [ - 2553, + 2601, "[match_streams_order_by!]" ], "where": [ - 2540 + 2588 ] } ], "streams_aggregate": [ - 2529, + 2577, { "distinct_on": [ - 2556, + 2604, "[match_streams_select_column!]" ], "limit": [ @@ -47956,19 +48886,19 @@ export default { 38 ], "order_by": [ - 2553, + 2601, "[match_streams_order_by!]" ], "where": [ - 2540 + 2588 ] } ], "teams": [ - 4281, + 4329, { "distinct_on": [ - 4303, + 4353, "[teams_select_column!]" ], "limit": [ @@ -47978,19 +48908,19 @@ export default { 38 ], "order_by": [ - 4301, + 4351, "[teams_order_by!]" ], "where": [ - 4290 + 4340 ] } ], "tournament_brackets": [ - 4326, + 4378, { "distinct_on": [ - 4350, + 4402, "[tournament_brackets_select_column!]" ], "limit": [ @@ -48000,19 +48930,19 @@ export default { 38 ], "order_by": [ - 4348, + 4400, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4389 ] } ], "tournament_brackets_aggregate": [ - 4327, + 4379, { "distinct_on": [ - 4350, + 4402, "[tournament_brackets_select_column!]" ], "limit": [ @@ -48022,11 +48952,11 @@ export default { 38 ], "order_by": [ - 4348, + 4400, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4389 ] } ], @@ -48034,10 +48964,10 @@ export default { 78 ], "winner": [ - 2276 + 2324 ], "winning_lineup_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -48045,10 +48975,10 @@ export default { }, "matches_aggregate": { "aggregate": [ - 2600 + 2648 ], "nodes": [ - 2596 + 2644 ], "__typename": [ 78 @@ -48056,7 +48986,7 @@ export default { }, "matches_aggregate_bool_exp": { "count": [ - 2599 + 2647 ], "__typename": [ 78 @@ -48064,13 +48994,13 @@ export default { }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2618 + 2666 ], "distinct": [ 3 ], "filter": [ - 2605 + 2653 ], "predicate": [ 39 @@ -48081,13 +49011,13 @@ export default { }, "matches_aggregate_fields": { "avg": [ - 2603 + 2651 ], "count": [ 38, { "columns": [ - 2618, + 2666, "[matches_select_column!]" ], "distinct": [ @@ -48096,31 +49026,31 @@ export default { } ], "max": [ - 2609 + 2657 ], "min": [ - 2611 + 2659 ], "stddev": [ - 2620 + 2668 ], "stddev_pop": [ - 2622 + 2670 ], "stddev_samp": [ - 2624 + 2672 ], "sum": [ - 2628 + 2676 ], "var_pop": [ - 2632 + 2680 ], "var_samp": [ - 2634 + 2682 ], "variance": [ - 2636 + 2684 ], "__typename": [ 78 @@ -48128,37 +49058,37 @@ export default { }, "matches_aggregate_order_by": { "avg": [ - 2604 + 2652 ], "count": [ - 2781 + 2829 ], "max": [ - 2610 + 2658 ], "min": [ - 2612 + 2660 ], "stddev": [ - 2621 + 2669 ], "stddev_pop": [ - 2623 + 2671 ], "stddev_samp": [ - 2625 + 2673 ], "sum": [ - 2629 + 2677 ], "var_pop": [ - 2633 + 2681 ], "var_samp": [ - 2635 + 2683 ], "variance": [ - 2637 + 2685 ], "__typename": [ 78 @@ -48166,10 +49096,10 @@ export default { }, "matches_arr_rel_insert_input": { "data": [ - 2608 + 2656 ], "on_conflict": [ - 2615 + 2663 ], "__typename": [ 78 @@ -48191,7 +49121,7 @@ export default { }, "matches_avg_order_by": { "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -48199,13 +49129,13 @@ export default { }, "matches_bool_exp": { "_and": [ - 2605 + 2653 ], "_not": [ - 2605 + 2653 ], "_or": [ - 2605 + 2653 ], "can_assign_server": [ 4 @@ -48232,13 +49162,13 @@ export default { 4 ], "cancels_at": [ - 4325 + 4377 ], "clutches": [ - 4951 + 5110 ], "clutches_aggregate": [ - 4944 + 5103 ], "connection_link": [ 80 @@ -48247,46 +49177,46 @@ export default { 80 ], "created_at": [ - 4325 + 4377 ], "current_match_map_id": [ - 4764 + 4923 ], "demos": [ - 2330 + 2378 ], "demos_aggregate": [ - 2320 + 2368 ], "draft_games": [ - 365 + 392 ], "draft_games_aggregate": [ - 356 + 383 ], "e_match_status": [ - 837 + 864 ], "e_region": [ - 3830 + 3878 ], "effective_at": [ - 4325 + 4377 ], "elo_changes": [ - 5158 + 5317 ], "elo_changes_aggregate": [ - 5141 + 5300 ], "ended_at": [ - 4325 + 4377 ], "external_id": [ 80 ], "id": [ - 4764 + 4923 ], "invite_code": [ 80 @@ -48319,40 +49249,40 @@ export default { 80 ], "lineup_1": [ - 2285 + 2333 ], "lineup_1_id": [ - 4764 + 4923 ], "lineup_2": [ - 2285 + 2333 ], "lineup_2_id": [ - 4764 + 4923 ], "lineup_counts": [ - 1651 + 1699 ], "map_veto_picking_lineup_id": [ - 4764 + 4923 ], "map_veto_picks": [ - 2417 + 2465 ], "map_veto_picks_aggregate": [ - 2412 + 2460 ], "map_veto_type": [ 80 ], "match_maps": [ - 2443 + 2491 ], "match_maps_aggregate": [ - 2436 + 2484 ], "match_options_id": [ - 4764 + 4923 ], "max_players_per_lineup": [ 39 @@ -48361,16 +49291,16 @@ export default { 39 ], "opening_duels": [ - 5079 + 5238 ], "opening_duels_aggregate": [ - 5072 + 5231 ], "options": [ - 2480 + 2528 ], "organizer": [ - 3743 + 3791 ], "organizer_steam_id": [ 182 @@ -48379,73 +49309,73 @@ export default { 80 ], "player_assists": [ - 2930 + 2978 ], "player_assists_aggregate": [ - 2921 + 2969 ], "player_damages": [ - 2991 + 3039 ], "player_damages_aggregate": [ - 2984 + 3032 ], "player_flashes": [ - 3102 + 3150 ], "player_flashes_aggregate": [ - 3093 + 3141 ], "player_kills": [ - 3147 + 3195 ], "player_kills_aggregate": [ - 3138 + 3186 ], "player_objectives": [ - 3346 + 3394 ], "player_objectives_aggregate": [ - 3339 + 3387 ], "player_unused_utilities": [ - 3633 + 3681 ], "player_unused_utilities_aggregate": [ - 3626 + 3674 ], "player_utility": [ - 3674 + 3722 ], "player_utility_aggregate": [ - 3667 + 3715 ], "region": [ 80 ], "region_veto_picking_lineup_id": [ - 4764 + 4923 ], "region_veto_picks": [ - 2511 + 2559 ], "region_veto_picks_aggregate": [ - 2506 + 2554 ], "requested_organizer": [ 4 ], "scheduled_at": [ - 4325 + 4377 ], "server": [ - 3864 + 3912 ], "server_error": [ 80 ], "server_id": [ - 4764 + 4923 ], "server_plugin_runtime": [ 80 @@ -48460,34 +49390,34 @@ export default { 80 ], "started_at": [ - 4325 + 4377 ], "status": [ - 840 + 867 ], "streams": [ - 2540 + 2588 ], "streams_aggregate": [ - 2530 + 2578 ], "teams": [ - 4290 + 4340 ], "tournament_brackets": [ - 4337 + 4389 ], "tournament_brackets_aggregate": [ - 4328 + 4380 ], "tv_connection_string": [ 80 ], "winner": [ - 2285 + 2333 ], "winning_lineup_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -48504,70 +49434,70 @@ export default { }, "matches_insert_input": { "cancels_at": [ - 4324 + 4376 ], "clutches": [ - 4948 + 5107 ], "created_at": [ - 4324 + 4376 ], "demos": [ - 2327 + 2375 ], "draft_games": [ - 362 + 389 ], "e_match_status": [ - 845 + 872 ], "e_region": [ - 3836 + 3884 ], "elo_changes": [ - 5155 + 5314 ], "ended_at": [ - 4324 + 4376 ], "external_id": [ 78 ], "id": [ - 4762 + 4921 ], "label": [ 78 ], "lineup_1": [ - 2294 + 2342 ], "lineup_1_id": [ - 4762 + 4921 ], "lineup_2": [ - 2294 + 2342 ], "lineup_2_id": [ - 4762 + 4921 ], "map_veto_picks": [ - 2416 + 2464 ], "match_maps": [ - 2440 + 2488 ], "match_options_id": [ - 4762 + 4921 ], "opening_duels": [ - 5076 + 5235 ], "options": [ - 2487 + 2535 ], "organizer": [ - 3750 + 3798 ], "organizer_steam_id": [ 180 @@ -48576,64 +49506,64 @@ export default { 78 ], "player_assists": [ - 2927 + 2975 ], "player_damages": [ - 2988 + 3036 ], "player_flashes": [ - 3099 + 3147 ], "player_kills": [ - 3144 + 3192 ], "player_objectives": [ - 3343 + 3391 ], "player_unused_utilities": [ - 3630 + 3678 ], "player_utility": [ - 3671 + 3719 ], "region": [ 78 ], "region_veto_picks": [ - 2510 + 2558 ], "scheduled_at": [ - 4324 + 4376 ], "server": [ - 3873 + 3921 ], "server_error": [ 78 ], "server_id": [ - 4762 + 4921 ], "source": [ 78 ], "started_at": [ - 4324 + 4376 ], "status": [ - 839 + 866 ], "streams": [ - 2537 + 2585 ], "tournament_brackets": [ - 4334 + 4386 ], "winner": [ - 2294 + 2342 ], "winning_lineup_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -48641,7 +49571,7 @@ export default { }, "matches_max_fields": { "cancels_at": [ - 4324 + 4376 ], "connection_link": [ 78 @@ -48650,22 +49580,22 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "current_match_map_id": [ - 4762 + 4921 ], "effective_at": [ - 4324 + 4376 ], "ended_at": [ - 4324 + 4376 ], "external_id": [ 78 ], "id": [ - 4762 + 4921 ], "invite_code": [ 78 @@ -48674,19 +49604,19 @@ export default { 78 ], "lineup_1_id": [ - 4762 + 4921 ], "lineup_2_id": [ - 4762 + 4921 ], "map_veto_picking_lineup_id": [ - 4762 + 4921 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4762 + 4921 ], "max_players_per_lineup": [ 38 @@ -48704,16 +49634,16 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4762 + 4921 ], "scheduled_at": [ - 4324 + 4376 ], "server_error": [ 78 ], "server_id": [ - 4762 + 4921 ], "server_plugin_runtime": [ 78 @@ -48728,13 +49658,13 @@ export default { 78 ], "started_at": [ - 4324 + 4376 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -48742,61 +49672,61 @@ export default { }, "matches_max_order_by": { "cancels_at": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "effective_at": [ - 2781 + 2829 ], "ended_at": [ - 2781 + 2829 ], "external_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "lineup_1_id": [ - 2781 + 2829 ], "lineup_2_id": [ - 2781 + 2829 ], "match_options_id": [ - 2781 + 2829 ], "organizer_steam_id": [ - 2781 + 2829 ], "password": [ - 2781 + 2829 ], "region": [ - 2781 + 2829 ], "scheduled_at": [ - 2781 + 2829 ], "server_error": [ - 2781 + 2829 ], "server_id": [ - 2781 + 2829 ], "source": [ - 2781 + 2829 ], "started_at": [ - 2781 + 2829 ], "winning_lineup_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -48804,7 +49734,7 @@ export default { }, "matches_min_fields": { "cancels_at": [ - 4324 + 4376 ], "connection_link": [ 78 @@ -48813,22 +49743,22 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "current_match_map_id": [ - 4762 + 4921 ], "effective_at": [ - 4324 + 4376 ], "ended_at": [ - 4324 + 4376 ], "external_id": [ 78 ], "id": [ - 4762 + 4921 ], "invite_code": [ 78 @@ -48837,19 +49767,19 @@ export default { 78 ], "lineup_1_id": [ - 4762 + 4921 ], "lineup_2_id": [ - 4762 + 4921 ], "map_veto_picking_lineup_id": [ - 4762 + 4921 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4762 + 4921 ], "max_players_per_lineup": [ 38 @@ -48867,16 +49797,16 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4762 + 4921 ], "scheduled_at": [ - 4324 + 4376 ], "server_error": [ 78 ], "server_id": [ - 4762 + 4921 ], "server_plugin_runtime": [ 78 @@ -48891,13 +49821,13 @@ export default { 78 ], "started_at": [ - 4324 + 4376 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -48905,61 +49835,61 @@ export default { }, "matches_min_order_by": { "cancels_at": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "effective_at": [ - 2781 + 2829 ], "ended_at": [ - 2781 + 2829 ], "external_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "lineup_1_id": [ - 2781 + 2829 ], "lineup_2_id": [ - 2781 + 2829 ], "match_options_id": [ - 2781 + 2829 ], "organizer_steam_id": [ - 2781 + 2829 ], "password": [ - 2781 + 2829 ], "region": [ - 2781 + 2829 ], "scheduled_at": [ - 2781 + 2829 ], "server_error": [ - 2781 + 2829 ], "server_id": [ - 2781 + 2829 ], "source": [ - 2781 + 2829 ], "started_at": [ - 2781 + 2829 ], "winning_lineup_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -48970,7 +49900,7 @@ export default { 38 ], "returning": [ - 2596 + 2644 ], "__typename": [ 78 @@ -48978,10 +49908,10 @@ export default { }, "matches_obj_rel_insert_input": { "data": [ - 2608 + 2656 ], "on_conflict": [ - 2615 + 2663 ], "__typename": [ 78 @@ -48989,13 +49919,13 @@ export default { }, "matches_on_conflict": { "constraint": [ - 2606 + 2654 ], "update_columns": [ - 2630 + 2678 ], "where": [ - 2605 + 2653 ], "__typename": [ 78 @@ -49003,235 +49933,235 @@ export default { }, "matches_order_by": { "can_assign_server": [ - 2781 + 2829 ], "can_cancel": [ - 2781 + 2829 ], "can_check_in": [ - 2781 + 2829 ], "can_reassign_winner": [ - 2781 + 2829 ], "can_schedule": [ - 2781 + 2829 ], "can_start": [ - 2781 + 2829 ], "can_stream_live": [ - 2781 + 2829 ], "can_stream_tv": [ - 2781 + 2829 ], "cancels_at": [ - 2781 + 2829 ], "clutches_aggregate": [ - 4947 + 5106 ], "connection_link": [ - 2781 + 2829 ], "connection_string": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "current_match_map_id": [ - 2781 + 2829 ], "demos_aggregate": [ - 2325 + 2373 ], "draft_games_aggregate": [ - 361 + 388 ], "e_match_status": [ - 847 + 874 ], "e_region": [ - 3838 + 3886 ], "effective_at": [ - 2781 + 2829 ], "elo_changes_aggregate": [ - 5154 + 5313 ], "ended_at": [ - 2781 + 2829 ], "external_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "invite_code": [ - 2781 + 2829 ], "is_captain": [ - 2781 + 2829 ], "is_coach": [ - 2781 + 2829 ], "is_friend_in_match_lineup": [ - 2781 + 2829 ], "is_in_lineup": [ - 2781 + 2829 ], "is_match_server_available": [ - 2781 + 2829 ], "is_organizer": [ - 2781 + 2829 ], "is_server_online": [ - 2781 + 2829 ], "is_tournament_match": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "lineup_1": [ - 2296 + 2344 ], "lineup_1_id": [ - 2781 + 2829 ], "lineup_2": [ - 2296 + 2344 ], "lineup_2_id": [ - 2781 + 2829 ], "lineup_counts": [ - 2781 + 2829 ], "map_veto_picking_lineup_id": [ - 2781 + 2829 ], "map_veto_picks_aggregate": [ - 2415 + 2463 ], "map_veto_type": [ - 2781 + 2829 ], "match_maps_aggregate": [ - 2439 + 2487 ], "match_options_id": [ - 2781 + 2829 ], "max_players_per_lineup": [ - 2781 + 2829 ], "min_players_per_lineup": [ - 2781 + 2829 ], "opening_duels_aggregate": [ - 5075 + 5234 ], "options": [ - 2489 + 2537 ], "organizer": [ - 3752 + 3800 ], "organizer_steam_id": [ - 2781 + 2829 ], "password": [ - 2781 + 2829 ], "player_assists_aggregate": [ - 2926 + 2974 ], "player_damages_aggregate": [ - 2987 + 3035 ], "player_flashes_aggregate": [ - 3098 + 3146 ], "player_kills_aggregate": [ - 3143 + 3191 ], "player_objectives_aggregate": [ - 3342 + 3390 ], "player_unused_utilities_aggregate": [ - 3629 + 3677 ], "player_utility_aggregate": [ - 3670 + 3718 ], "region": [ - 2781 + 2829 ], "region_veto_picking_lineup_id": [ - 2781 + 2829 ], "region_veto_picks_aggregate": [ - 2509 + 2557 ], "requested_organizer": [ - 2781 + 2829 ], "scheduled_at": [ - 2781 + 2829 ], "server": [ - 3875 + 3923 ], "server_error": [ - 2781 + 2829 ], "server_id": [ - 2781 + 2829 ], "server_plugin_runtime": [ - 2781 + 2829 ], "server_region": [ - 2781 + 2829 ], "server_type": [ - 2781 + 2829 ], "source": [ - 2781 + 2829 ], "started_at": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "streams_aggregate": [ - 2535 + 2583 ], "teams_aggregate": [ - 4286 + 4336 ], "tournament_brackets_aggregate": [ - 4333 + 4385 ], "tv_connection_string": [ - 2781 + 2829 ], "winner": [ - 2296 + 2344 ], "winning_lineup_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -49239,7 +50169,7 @@ export default { }, "matches_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -49248,31 +50178,31 @@ export default { "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 4324 + 4376 ], "created_at": [ - 4324 + 4376 ], "ended_at": [ - 4324 + 4376 ], "external_id": [ 78 ], "id": [ - 4762 + 4921 ], "label": [ 78 ], "lineup_1_id": [ - 4762 + 4921 ], "lineup_2_id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "organizer_steam_id": [ 180 @@ -49284,25 +50214,25 @@ export default { 78 ], "scheduled_at": [ - 4324 + 4376 ], "server_error": [ 78 ], "server_id": [ - 4762 + 4921 ], "source": [ 78 ], "started_at": [ - 4324 + 4376 ], "status": [ - 839 + 866 ], "winning_lineup_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -49324,7 +50254,7 @@ export default { }, "matches_stddev_order_by": { "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -49346,7 +50276,7 @@ export default { }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -49368,7 +50298,7 @@ export default { }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -49376,7 +50306,7 @@ export default { }, "matches_stream_cursor_input": { "initial_value": [ - 2627 + 2675 ], "ordering": [ 236 @@ -49387,34 +50317,34 @@ export default { }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4324 + 4376 ], "created_at": [ - 4324 + 4376 ], "effective_at": [ - 4324 + 4376 ], "ended_at": [ - 4324 + 4376 ], "external_id": [ 78 ], "id": [ - 4762 + 4921 ], "label": [ 78 ], "lineup_1_id": [ - 4762 + 4921 ], "lineup_2_id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "organizer_steam_id": [ 180 @@ -49426,25 +50356,25 @@ export default { 78 ], "scheduled_at": [ - 4324 + 4376 ], "server_error": [ 78 ], "server_id": [ - 4762 + 4921 ], "source": [ 78 ], "started_at": [ - 4324 + 4376 ], "status": [ - 839 + 866 ], "winning_lineup_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -49466,7 +50396,7 @@ export default { }, "matches_sum_order_by": { "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -49475,13 +50405,13 @@ export default { "matches_update_column": {}, "matches_updates": { "_inc": [ - 2607 + 2655 ], "_set": [ - 2619 + 2667 ], "where": [ - 2605 + 2653 ], "__typename": [ 78 @@ -49503,7 +50433,7 @@ export default { }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -49525,7 +50455,7 @@ export default { }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -49547,7 +50477,7 @@ export default { }, "matches_variance_order_by": { "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -49566,10 +50496,10 @@ export default { }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2640 + 2688 ], "nodes": [ - 2638 + 2686 ], "__typename": [ 78 @@ -49580,7 +50510,7 @@ export default { 38, { "columns": [ - 2650, + 2698, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -49589,10 +50519,10 @@ export default { } ], "max": [ - 2644 + 2692 ], "min": [ - 2645 + 2693 ], "__typename": [ 78 @@ -49600,13 +50530,13 @@ export default { }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2641 + 2689 ], "_not": [ - 2641 + 2689 ], "_or": [ - 2641 + 2689 ], "hash": [ 80 @@ -49657,7 +50587,7 @@ export default { 38 ], "returning": [ - 2638 + 2686 ], "__typename": [ 78 @@ -49665,13 +50595,13 @@ export default { }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2642 + 2690 ], "update_columns": [ - 2654 + 2702 ], "where": [ - 2641 + 2689 ], "__typename": [ 78 @@ -49679,10 +50609,10 @@ export default { }, "migration_hashes_hashes_order_by": { "hash": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "__typename": [ 78 @@ -49710,7 +50640,7 @@ export default { }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2653 + 2701 ], "ordering": [ 236 @@ -49733,10 +50663,10 @@ export default { "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2651 + 2699 ], "where": [ - 2641 + 2689 ], "__typename": [ 78 @@ -49750,7 +50680,7 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "custom_avatar_url": [ 78 @@ -49762,7 +50692,7 @@ export default { 78 ], "elo": [ - 1652, + 1700, { "path": [ 78 @@ -49782,7 +50712,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4376 ], "faceit_url": [ 78 @@ -49800,7 +50730,7 @@ export default { 78 ], "last_presence_state": [ - 1652, + 1700, { "path": [ 78 @@ -49808,10 +50738,10 @@ export default { } ], "last_read_news_at": [ - 4324 + 4376 ], "last_sign_in_at": [ - 4324 + 4376 ], "name": [ 78 @@ -49820,16 +50750,16 @@ export default { 3 ], "player": [ - 3739 + 3787 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4324 + 4376 ], "presence_updated_at": [ - 4324 + 4376 ], "profile_url": [ 78 @@ -49847,7 +50777,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -49864,10 +50794,10 @@ export default { }, "my_friends_aggregate": { "aggregate": [ - 2662 + 2710 ], "nodes": [ - 2656 + 2704 ], "__typename": [ 78 @@ -49875,13 +50805,13 @@ export default { }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2659 + 2707 ], "bool_or": [ - 2660 + 2708 ], "count": [ - 2661 + 2709 ], "__typename": [ 78 @@ -49889,13 +50819,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2682 + 2730 ], "distinct": [ 3 ], "filter": [ - 2668 + 2716 ], "predicate": [ 4 @@ -49906,13 +50836,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2683 + 2731 ], "distinct": [ 3 ], "filter": [ - 2668 + 2716 ], "predicate": [ 4 @@ -49923,13 +50853,13 @@ export default { }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2681 + 2729 ], "distinct": [ 3 ], "filter": [ - 2668 + 2716 ], "predicate": [ 39 @@ -49940,13 +50870,13 @@ export default { }, "my_friends_aggregate_fields": { "avg": [ - 2666 + 2714 ], "count": [ 38, { "columns": [ - 2681, + 2729, "[my_friends_select_column!]" ], "distinct": [ @@ -49955,31 +50885,31 @@ export default { } ], "max": [ - 2674 + 2722 ], "min": [ - 2676 + 2724 ], "stddev": [ - 2685 + 2733 ], "stddev_pop": [ - 2687 + 2735 ], "stddev_samp": [ - 2689 + 2737 ], "sum": [ - 2693 + 2741 ], "var_pop": [ - 2696 + 2744 ], "var_samp": [ - 2698 + 2746 ], "variance": [ - 2700 + 2748 ], "__typename": [ 78 @@ -49987,37 +50917,37 @@ export default { }, "my_friends_aggregate_order_by": { "avg": [ - 2667 + 2715 ], "count": [ - 2781 + 2829 ], "max": [ - 2675 + 2723 ], "min": [ - 2677 + 2725 ], "stddev": [ - 2686 + 2734 ], "stddev_pop": [ - 2688 + 2736 ], "stddev_samp": [ - 2690 + 2738 ], "sum": [ - 2694 + 2742 ], "var_pop": [ - 2697 + 2745 ], "var_samp": [ - 2699 + 2747 ], "variance": [ - 2701 + 2749 ], "__typename": [ 78 @@ -50025,10 +50955,10 @@ export default { }, "my_friends_append_input": { "elo": [ - 1652 + 1700 ], "last_presence_state": [ - 1652 + 1700 ], "__typename": [ 78 @@ -50036,7 +50966,7 @@ export default { }, "my_friends_arr_rel_insert_input": { "data": [ - 2673 + 2721 ], "__typename": [ 78 @@ -50076,31 +51006,31 @@ export default { }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 2781 + 2829 ], "faceit_elo": [ - 2781 + 2829 ], "faceit_skill_level": [ - 2781 + 2829 ], "friend_steam_id": [ - 2781 + 2829 ], "game_ban_count": [ - 2781 + 2829 ], "invited_by_steam_id": [ - 2781 + 2829 ], "premier_rank": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "vac_ban_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -50108,13 +51038,13 @@ export default { }, "my_friends_bool_exp": { "_and": [ - 2668 + 2716 ], "_not": [ - 2668 + 2716 ], "_or": [ - 2668 + 2716 ], "avatar_url": [ 80 @@ -50123,7 +51053,7 @@ export default { 80 ], "created_at": [ - 4325 + 4377 ], "custom_avatar_url": [ 80 @@ -50135,7 +51065,7 @@ export default { 80 ], "elo": [ - 1654 + 1702 ], "faceit_elo": [ 39 @@ -50150,7 +51080,7 @@ export default { 39 ], "faceit_updated_at": [ - 4325 + 4377 ], "faceit_url": [ 80 @@ -50168,13 +51098,13 @@ export default { 80 ], "last_presence_state": [ - 1654 + 1702 ], "last_read_news_at": [ - 4325 + 4377 ], "last_sign_in_at": [ - 4325 + 4377 ], "name": [ 80 @@ -50183,16 +51113,16 @@ export default { 4 ], "player": [ - 3743 + 3791 ], "premier_rank": [ 39 ], "premier_rank_updated_at": [ - 4325 + 4377 ], "presence_updated_at": [ - 4325 + 4377 ], "profile_url": [ 80 @@ -50210,7 +51140,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4325 + 4377 ], "steam_id": [ 182 @@ -50298,7 +51228,7 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "custom_avatar_url": [ 78 @@ -50310,7 +51240,7 @@ export default { 78 ], "elo": [ - 1652 + 1700 ], "faceit_elo": [ 38 @@ -50325,7 +51255,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4376 ], "faceit_url": [ 78 @@ -50343,13 +51273,13 @@ export default { 78 ], "last_presence_state": [ - 1652 + 1700 ], "last_read_news_at": [ - 4324 + 4376 ], "last_sign_in_at": [ - 4324 + 4376 ], "name": [ 78 @@ -50358,16 +51288,16 @@ export default { 3 ], "player": [ - 3750 + 3798 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4324 + 4376 ], "presence_updated_at": [ - 4324 + 4376 ], "profile_url": [ 78 @@ -50385,7 +51315,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -50408,7 +51338,7 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "custom_avatar_url": [ 78 @@ -50432,7 +51362,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4376 ], "faceit_url": [ 78 @@ -50450,10 +51380,10 @@ export default { 78 ], "last_read_news_at": [ - 4324 + 4376 ], "last_sign_in_at": [ - 4324 + 4376 ], "name": [ 78 @@ -50462,10 +51392,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4376 ], "presence_updated_at": [ - 4324 + 4376 ], "profile_url": [ 78 @@ -50480,7 +51410,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -50494,91 +51424,91 @@ export default { }, "my_friends_max_order_by": { "avatar_url": [ - 2781 + 2829 ], "country": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "custom_avatar_url": [ - 2781 + 2829 ], "days_since_last_ban": [ - 2781 + 2829 ], "discord_id": [ - 2781 + 2829 ], "faceit_elo": [ - 2781 + 2829 ], "faceit_nickname": [ - 2781 + 2829 ], "faceit_player_id": [ - 2781 + 2829 ], "faceit_skill_level": [ - 2781 + 2829 ], "faceit_updated_at": [ - 2781 + 2829 ], "faceit_url": [ - 2781 + 2829 ], "friend_steam_id": [ - 2781 + 2829 ], "game_ban_count": [ - 2781 + 2829 ], "invited_by_steam_id": [ - 2781 + 2829 ], "language": [ - 2781 + 2829 ], "last_read_news_at": [ - 2781 + 2829 ], "last_sign_in_at": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "premier_rank": [ - 2781 + 2829 ], "premier_rank_updated_at": [ - 2781 + 2829 ], "presence_updated_at": [ - 2781 + 2829 ], "profile_url": [ - 2781 + 2829 ], "role": [ - 2781 + 2829 ], "roster_image_url": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "steam_bans_checked_at": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "vac_ban_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -50592,7 +51522,7 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "custom_avatar_url": [ 78 @@ -50616,7 +51546,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4376 ], "faceit_url": [ 78 @@ -50634,10 +51564,10 @@ export default { 78 ], "last_read_news_at": [ - 4324 + 4376 ], "last_sign_in_at": [ - 4324 + 4376 ], "name": [ 78 @@ -50646,10 +51576,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4376 ], "presence_updated_at": [ - 4324 + 4376 ], "profile_url": [ 78 @@ -50664,7 +51594,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -50678,91 +51608,91 @@ export default { }, "my_friends_min_order_by": { "avatar_url": [ - 2781 + 2829 ], "country": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "custom_avatar_url": [ - 2781 + 2829 ], "days_since_last_ban": [ - 2781 + 2829 ], "discord_id": [ - 2781 + 2829 ], "faceit_elo": [ - 2781 + 2829 ], "faceit_nickname": [ - 2781 + 2829 ], "faceit_player_id": [ - 2781 + 2829 ], "faceit_skill_level": [ - 2781 + 2829 ], "faceit_updated_at": [ - 2781 + 2829 ], "faceit_url": [ - 2781 + 2829 ], "friend_steam_id": [ - 2781 + 2829 ], "game_ban_count": [ - 2781 + 2829 ], "invited_by_steam_id": [ - 2781 + 2829 ], "language": [ - 2781 + 2829 ], "last_read_news_at": [ - 2781 + 2829 ], "last_sign_in_at": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "premier_rank": [ - 2781 + 2829 ], "premier_rank_updated_at": [ - 2781 + 2829 ], "presence_updated_at": [ - 2781 + 2829 ], "profile_url": [ - 2781 + 2829 ], "role": [ - 2781 + 2829 ], "roster_image_url": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "steam_bans_checked_at": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "vac_ban_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -50773,7 +51703,7 @@ export default { 38 ], "returning": [ - 2656 + 2704 ], "__typename": [ 78 @@ -50781,109 +51711,109 @@ export default { }, "my_friends_order_by": { "avatar_url": [ - 2781 + 2829 ], "country": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "custom_avatar_url": [ - 2781 + 2829 ], "days_since_last_ban": [ - 2781 + 2829 ], "discord_id": [ - 2781 + 2829 ], "elo": [ - 2781 + 2829 ], "faceit_elo": [ - 2781 + 2829 ], "faceit_nickname": [ - 2781 + 2829 ], "faceit_player_id": [ - 2781 + 2829 ], "faceit_skill_level": [ - 2781 + 2829 ], "faceit_updated_at": [ - 2781 + 2829 ], "faceit_url": [ - 2781 + 2829 ], "friend_steam_id": [ - 2781 + 2829 ], "game_ban_count": [ - 2781 + 2829 ], "invited_by_steam_id": [ - 2781 + 2829 ], "language": [ - 2781 + 2829 ], "last_presence_state": [ - 2781 + 2829 ], "last_read_news_at": [ - 2781 + 2829 ], "last_sign_in_at": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "name_registered": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "premier_rank": [ - 2781 + 2829 ], "premier_rank_updated_at": [ - 2781 + 2829 ], "presence_updated_at": [ - 2781 + 2829 ], "profile_url": [ - 2781 + 2829 ], "role": [ - 2781 + 2829 ], "roster_image_url": [ - 2781 + 2829 ], "show_match_ready_modal": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "steam_bans_checked_at": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "vac_ban_count": [ - 2781 + 2829 ], "vac_banned": [ - 2781 + 2829 ], "__typename": [ 78 @@ -50891,10 +51821,10 @@ export default { }, "my_friends_prepend_input": { "elo": [ - 1652 + 1700 ], "last_presence_state": [ - 1652 + 1700 ], "__typename": [ 78 @@ -50911,7 +51841,7 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "custom_avatar_url": [ 78 @@ -50923,7 +51853,7 @@ export default { 78 ], "elo": [ - 1652 + 1700 ], "faceit_elo": [ 38 @@ -50938,7 +51868,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4376 ], "faceit_url": [ 78 @@ -50956,13 +51886,13 @@ export default { 78 ], "last_presence_state": [ - 1652 + 1700 ], "last_read_news_at": [ - 4324 + 4376 ], "last_sign_in_at": [ - 4324 + 4376 ], "name": [ 78 @@ -50974,10 +51904,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4376 ], "presence_updated_at": [ - 4324 + 4376 ], "profile_url": [ 78 @@ -50995,7 +51925,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -51044,31 +51974,31 @@ export default { }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 2781 + 2829 ], "faceit_elo": [ - 2781 + 2829 ], "faceit_skill_level": [ - 2781 + 2829 ], "friend_steam_id": [ - 2781 + 2829 ], "game_ban_count": [ - 2781 + 2829 ], "invited_by_steam_id": [ - 2781 + 2829 ], "premier_rank": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "vac_ban_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -51108,31 +52038,31 @@ export default { }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 2781 + 2829 ], "faceit_elo": [ - 2781 + 2829 ], "faceit_skill_level": [ - 2781 + 2829 ], "friend_steam_id": [ - 2781 + 2829 ], "game_ban_count": [ - 2781 + 2829 ], "invited_by_steam_id": [ - 2781 + 2829 ], "premier_rank": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "vac_ban_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -51172,31 +52102,31 @@ export default { }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 2781 + 2829 ], "faceit_elo": [ - 2781 + 2829 ], "faceit_skill_level": [ - 2781 + 2829 ], "friend_steam_id": [ - 2781 + 2829 ], "game_ban_count": [ - 2781 + 2829 ], "invited_by_steam_id": [ - 2781 + 2829 ], "premier_rank": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "vac_ban_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -51204,7 +52134,7 @@ export default { }, "my_friends_stream_cursor_input": { "initial_value": [ - 2692 + 2740 ], "ordering": [ 236 @@ -51221,7 +52151,7 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "custom_avatar_url": [ 78 @@ -51233,7 +52163,7 @@ export default { 78 ], "elo": [ - 1652 + 1700 ], "faceit_elo": [ 38 @@ -51248,7 +52178,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4376 ], "faceit_url": [ 78 @@ -51266,13 +52196,13 @@ export default { 78 ], "last_presence_state": [ - 1652 + 1700 ], "last_read_news_at": [ - 4324 + 4376 ], "last_sign_in_at": [ - 4324 + 4376 ], "name": [ 78 @@ -51284,10 +52214,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4376 ], "presence_updated_at": [ - 4324 + 4376 ], "profile_url": [ 78 @@ -51305,7 +52235,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -51354,31 +52284,31 @@ export default { }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 2781 + 2829 ], "faceit_elo": [ - 2781 + 2829 ], "faceit_skill_level": [ - 2781 + 2829 ], "friend_steam_id": [ - 2781 + 2829 ], "game_ban_count": [ - 2781 + 2829 ], "invited_by_steam_id": [ - 2781 + 2829 ], "premier_rank": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "vac_ban_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -51386,28 +52316,28 @@ export default { }, "my_friends_updates": { "_append": [ - 2664 + 2712 ], "_delete_at_path": [ - 2669 + 2717 ], "_delete_elem": [ - 2670 + 2718 ], "_delete_key": [ - 2671 + 2719 ], "_inc": [ - 2672 + 2720 ], "_prepend": [ - 2680 + 2728 ], "_set": [ - 2684 + 2732 ], "where": [ - 2668 + 2716 ], "__typename": [ 78 @@ -51447,31 +52377,31 @@ export default { }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 2781 + 2829 ], "faceit_elo": [ - 2781 + 2829 ], "faceit_skill_level": [ - 2781 + 2829 ], "friend_steam_id": [ - 2781 + 2829 ], "game_ban_count": [ - 2781 + 2829 ], "invited_by_steam_id": [ - 2781 + 2829 ], "premier_rank": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "vac_ban_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -51511,31 +52441,31 @@ export default { }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 2781 + 2829 ], "faceit_elo": [ - 2781 + 2829 ], "faceit_skill_level": [ - 2781 + 2829 ], "friend_steam_id": [ - 2781 + 2829 ], "game_ban_count": [ - 2781 + 2829 ], "invited_by_steam_id": [ - 2781 + 2829 ], "premier_rank": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "vac_ban_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -51575,31 +52505,31 @@ export default { }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 2781 + 2829 ], "faceit_elo": [ - 2781 + 2829 ], "faceit_skill_level": [ - 2781 + 2829 ], "friend_steam_id": [ - 2781 + 2829 ], "game_ban_count": [ - 2781 + 2829 ], "invited_by_steam_id": [ - 2781 + 2829 ], "premier_rank": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "vac_ban_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -51607,7 +52537,7 @@ export default { }, "news_articles": { "author": [ - 3739 + 3787 ], "author_steam_id": [ 180 @@ -51619,13 +52549,13 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "published_at": [ - 4324 + 4376 ], "slug": [ 78 @@ -51640,7 +52570,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "view_count": [ 180 @@ -51651,10 +52581,10 @@ export default { }, "news_articles_aggregate": { "aggregate": [ - 2704 + 2752 ], "nodes": [ - 2702 + 2750 ], "__typename": [ 78 @@ -51662,13 +52592,13 @@ export default { }, "news_articles_aggregate_fields": { "avg": [ - 2705 + 2753 ], "count": [ 38, { "columns": [ - 2716, + 2764, "[news_articles_select_column!]" ], "distinct": [ @@ -51677,31 +52607,31 @@ export default { } ], "max": [ - 2710 + 2758 ], "min": [ - 2711 + 2759 ], "stddev": [ - 2718 + 2766 ], "stddev_pop": [ - 2719 + 2767 ], "stddev_samp": [ - 2720 + 2768 ], "sum": [ - 2723 + 2771 ], "var_pop": [ - 2726 + 2774 ], "var_samp": [ - 2727 + 2775 ], "variance": [ - 2728 + 2776 ], "__typename": [ 78 @@ -51720,16 +52650,16 @@ export default { }, "news_articles_bool_exp": { "_and": [ - 2706 + 2754 ], "_not": [ - 2706 + 2754 ], "_or": [ - 2706 + 2754 ], "author": [ - 3743 + 3791 ], "author_steam_id": [ 182 @@ -51741,13 +52671,13 @@ export default { 80 ], "created_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "published_at": [ - 4325 + 4377 ], "slug": [ 80 @@ -51762,7 +52692,7 @@ export default { 80 ], "updated_at": [ - 4325 + 4377 ], "view_count": [ 182 @@ -51785,7 +52715,7 @@ export default { }, "news_articles_insert_input": { "author": [ - 3750 + 3798 ], "author_steam_id": [ 180 @@ -51797,13 +52727,13 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "published_at": [ - 4324 + 4376 ], "slug": [ 78 @@ -51818,7 +52748,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "view_count": [ 180 @@ -51838,13 +52768,13 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "published_at": [ - 4324 + 4376 ], "slug": [ 78 @@ -51859,7 +52789,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "view_count": [ 180 @@ -51879,13 +52809,13 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "published_at": [ - 4324 + 4376 ], "slug": [ 78 @@ -51900,7 +52830,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "view_count": [ 180 @@ -51914,7 +52844,7 @@ export default { 38 ], "returning": [ - 2702 + 2750 ], "__typename": [ 78 @@ -51922,13 +52852,13 @@ export default { }, "news_articles_on_conflict": { "constraint": [ - 2707 + 2755 ], "update_columns": [ - 2724 + 2772 ], "where": [ - 2706 + 2754 ], "__typename": [ 78 @@ -51936,43 +52866,43 @@ export default { }, "news_articles_order_by": { "author": [ - 3752 + 3800 ], "author_steam_id": [ - 2781 + 2829 ], "content_markdown": [ - 2781 + 2829 ], "cover_image_url": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "published_at": [ - 2781 + 2829 ], "slug": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "teaser": [ - 2781 + 2829 ], "title": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "view_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -51980,7 +52910,7 @@ export default { }, "news_articles_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -51998,13 +52928,13 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "published_at": [ - 4324 + 4376 ], "slug": [ 78 @@ -52019,7 +52949,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "view_count": [ 180 @@ -52063,7 +52993,7 @@ export default { }, "news_articles_stream_cursor_input": { "initial_value": [ - 2722 + 2770 ], "ordering": [ 236 @@ -52083,13 +53013,13 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "published_at": [ - 4324 + 4376 ], "slug": [ 78 @@ -52104,7 +53034,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "view_count": [ 180 @@ -52127,13 +53057,13 @@ export default { "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2708 + 2756 ], "_set": [ - 2717 + 2765 ], "where": [ - 2706 + 2754 ], "__typename": [ 78 @@ -52174,7 +53104,7 @@ export default { }, "notifications": { "actions": [ - 1652, + 1700, { "path": [ 78 @@ -52182,19 +53112,19 @@ export default { } ], "created_at": [ - 4324 + 4376 ], "deletable": [ 3 ], "deleted_at": [ - 4324 + 4376 ], "entity_id": [ 78 ], "id": [ - 4762 + 4921 ], "is_read": [ 3 @@ -52203,10 +53133,10 @@ export default { 78 ], "player": [ - 3739 + 3787 ], "role": [ - 921 + 948 ], "steam_id": [ 180 @@ -52215,7 +53145,7 @@ export default { 78 ], "type": [ - 881 + 908 ], "__typename": [ 78 @@ -52223,10 +53153,10 @@ export default { }, "notifications_aggregate": { "aggregate": [ - 2735 + 2783 ], "nodes": [ - 2729 + 2777 ], "__typename": [ 78 @@ -52234,13 +53164,13 @@ export default { }, "notifications_aggregate_bool_exp": { "bool_and": [ - 2732 + 2780 ], "bool_or": [ - 2733 + 2781 ], "count": [ - 2734 + 2782 ], "__typename": [ 78 @@ -52248,13 +53178,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 2758 + 2806 ], "distinct": [ 3 ], "filter": [ - 2741 + 2789 ], "predicate": [ 4 @@ -52265,13 +53195,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 2759 + 2807 ], "distinct": [ 3 ], "filter": [ - 2741 + 2789 ], "predicate": [ 4 @@ -52282,13 +53212,13 @@ export default { }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 2757 + 2805 ], "distinct": [ 3 ], "filter": [ - 2741 + 2789 ], "predicate": [ 39 @@ -52299,13 +53229,13 @@ export default { }, "notifications_aggregate_fields": { "avg": [ - 2739 + 2787 ], "count": [ 38, { "columns": [ - 2757, + 2805, "[notifications_select_column!]" ], "distinct": [ @@ -52314,31 +53244,31 @@ export default { } ], "max": [ - 2748 + 2796 ], "min": [ - 2750 + 2798 ], "stddev": [ - 2761 + 2809 ], "stddev_pop": [ - 2763 + 2811 ], "stddev_samp": [ - 2765 + 2813 ], "sum": [ - 2769 + 2817 ], "var_pop": [ - 2773 + 2821 ], "var_samp": [ - 2775 + 2823 ], "variance": [ - 2777 + 2825 ], "__typename": [ 78 @@ -52346,37 +53276,37 @@ export default { }, "notifications_aggregate_order_by": { "avg": [ - 2740 + 2788 ], "count": [ - 2781 + 2829 ], "max": [ - 2749 + 2797 ], "min": [ - 2751 + 2799 ], "stddev": [ - 2762 + 2810 ], "stddev_pop": [ - 2764 + 2812 ], "stddev_samp": [ - 2766 + 2814 ], "sum": [ - 2770 + 2818 ], "var_pop": [ - 2774 + 2822 ], "var_samp": [ - 2776 + 2824 ], "variance": [ - 2778 + 2826 ], "__typename": [ 78 @@ -52384,7 +53314,7 @@ export default { }, "notifications_append_input": { "actions": [ - 1652 + 1700 ], "__typename": [ 78 @@ -52392,10 +53322,10 @@ export default { }, "notifications_arr_rel_insert_input": { "data": [ - 2747 + 2795 ], "on_conflict": [ - 2753 + 2801 ], "__typename": [ 78 @@ -52411,7 +53341,7 @@ export default { }, "notifications_avg_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -52419,31 +53349,31 @@ export default { }, "notifications_bool_exp": { "_and": [ - 2741 + 2789 ], "_not": [ - 2741 + 2789 ], "_or": [ - 2741 + 2789 ], "actions": [ - 1654 + 1702 ], "created_at": [ - 4325 + 4377 ], "deletable": [ 4 ], "deleted_at": [ - 4325 + 4377 ], "entity_id": [ 80 ], "id": [ - 4764 + 4923 ], "is_read": [ 4 @@ -52452,10 +53382,10 @@ export default { 80 ], "player": [ - 3743 + 3791 ], "role": [ - 922 + 949 ], "steam_id": [ 182 @@ -52464,7 +53394,7 @@ export default { 80 ], "type": [ - 882 + 909 ], "__typename": [ 78 @@ -52505,22 +53435,22 @@ export default { }, "notifications_insert_input": { "actions": [ - 1652 + 1700 ], "created_at": [ - 4324 + 4376 ], "deletable": [ 3 ], "deleted_at": [ - 4324 + 4376 ], "entity_id": [ 78 ], "id": [ - 4762 + 4921 ], "is_read": [ 3 @@ -52529,10 +53459,10 @@ export default { 78 ], "player": [ - 3750 + 3798 ], "role": [ - 921 + 948 ], "steam_id": [ 180 @@ -52541,7 +53471,7 @@ export default { 78 ], "type": [ - 881 + 908 ], "__typename": [ 78 @@ -52549,16 +53479,16 @@ export default { }, "notifications_max_fields": { "created_at": [ - 4324 + 4376 ], "deleted_at": [ - 4324 + 4376 ], "entity_id": [ 78 ], "id": [ - 4762 + 4921 ], "message": [ 78 @@ -52575,25 +53505,25 @@ export default { }, "notifications_max_order_by": { "created_at": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "entity_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "message": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "title": [ - 2781 + 2829 ], "__typename": [ 78 @@ -52601,16 +53531,16 @@ export default { }, "notifications_min_fields": { "created_at": [ - 4324 + 4376 ], "deleted_at": [ - 4324 + 4376 ], "entity_id": [ 78 ], "id": [ - 4762 + 4921 ], "message": [ 78 @@ -52627,25 +53557,25 @@ export default { }, "notifications_min_order_by": { "created_at": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "entity_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "message": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "title": [ - 2781 + 2829 ], "__typename": [ 78 @@ -52656,7 +53586,7 @@ export default { 38 ], "returning": [ - 2729 + 2777 ], "__typename": [ 78 @@ -52664,13 +53594,13 @@ export default { }, "notifications_on_conflict": { "constraint": [ - 2742 + 2790 ], "update_columns": [ - 2771 + 2819 ], "where": [ - 2741 + 2789 ], "__typename": [ 78 @@ -52678,43 +53608,43 @@ export default { }, "notifications_order_by": { "actions": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "deletable": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "entity_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "is_read": [ - 2781 + 2829 ], "message": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "role": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "title": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "__typename": [ 78 @@ -52722,7 +53652,7 @@ export default { }, "notifications_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -52730,7 +53660,7 @@ export default { }, "notifications_prepend_input": { "actions": [ - 1652 + 1700 ], "__typename": [ 78 @@ -52741,22 +53671,22 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1652 + 1700 ], "created_at": [ - 4324 + 4376 ], "deletable": [ 3 ], "deleted_at": [ - 4324 + 4376 ], "entity_id": [ 78 ], "id": [ - 4762 + 4921 ], "is_read": [ 3 @@ -52765,7 +53695,7 @@ export default { 78 ], "role": [ - 921 + 948 ], "steam_id": [ 180 @@ -52774,7 +53704,7 @@ export default { 78 ], "type": [ - 881 + 908 ], "__typename": [ 78 @@ -52790,7 +53720,7 @@ export default { }, "notifications_stddev_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -52806,7 +53736,7 @@ export default { }, "notifications_stddev_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -52822,7 +53752,7 @@ export default { }, "notifications_stddev_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -52830,7 +53760,7 @@ export default { }, "notifications_stream_cursor_input": { "initial_value": [ - 2768 + 2816 ], "ordering": [ 236 @@ -52841,22 +53771,22 @@ export default { }, "notifications_stream_cursor_value_input": { "actions": [ - 1652 + 1700 ], "created_at": [ - 4324 + 4376 ], "deletable": [ 3 ], "deleted_at": [ - 4324 + 4376 ], "entity_id": [ 78 ], "id": [ - 4762 + 4921 ], "is_read": [ 3 @@ -52865,7 +53795,7 @@ export default { 78 ], "role": [ - 921 + 948 ], "steam_id": [ 180 @@ -52874,7 +53804,7 @@ export default { 78 ], "type": [ - 881 + 908 ], "__typename": [ 78 @@ -52890,7 +53820,7 @@ export default { }, "notifications_sum_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -52899,28 +53829,28 @@ export default { "notifications_update_column": {}, "notifications_updates": { "_append": [ - 2737 + 2785 ], "_delete_at_path": [ - 2743 + 2791 ], "_delete_elem": [ - 2744 + 2792 ], "_delete_key": [ - 2745 + 2793 ], "_inc": [ - 2746 + 2794 ], "_prepend": [ - 2756 + 2804 ], "_set": [ - 2760 + 2808 ], "where": [ - 2741 + 2789 ], "__typename": [ 78 @@ -52936,7 +53866,7 @@ export default { }, "notifications_var_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -52952,7 +53882,7 @@ export default { }, "notifications_var_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -52968,7 +53898,7 @@ export default { }, "notifications_variance_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -52977,31 +53907,31 @@ export default { "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 2779 + 2827 ], "_gt": [ - 2779 + 2827 ], "_gte": [ - 2779 + 2827 ], "_in": [ - 2779 + 2827 ], "_is_null": [ 3 ], "_lt": [ - 2779 + 2827 ], "_lte": [ - 2779 + 2827 ], "_neq": [ - 2779 + 2827 ], "_nin": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53010,19 +53940,19 @@ export default { "order_by": {}, "pending_match_import_players": { "created_at": [ - 4324 + 4376 ], "pending_match_import": [ - 2823 + 2871 ], "player": [ - 3739 + 3787 ], "steam_id": [ 180 ], "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53030,10 +53960,10 @@ export default { }, "pending_match_import_players_aggregate": { "aggregate": [ - 2786 + 2834 ], "nodes": [ - 2782 + 2830 ], "__typename": [ 78 @@ -53041,7 +53971,7 @@ export default { }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 2785 + 2833 ], "__typename": [ 78 @@ -53049,13 +53979,13 @@ export default { }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 2803 + 2851 ], "distinct": [ 3 ], "filter": [ - 2791 + 2839 ], "predicate": [ 39 @@ -53066,13 +53996,13 @@ export default { }, "pending_match_import_players_aggregate_fields": { "avg": [ - 2789 + 2837 ], "count": [ 38, { "columns": [ - 2803, + 2851, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -53081,31 +54011,31 @@ export default { } ], "max": [ - 2795 + 2843 ], "min": [ - 2797 + 2845 ], "stddev": [ - 2805 + 2853 ], "stddev_pop": [ - 2807 + 2855 ], "stddev_samp": [ - 2809 + 2857 ], "sum": [ - 2813 + 2861 ], "var_pop": [ - 2817 + 2865 ], "var_samp": [ - 2819 + 2867 ], "variance": [ - 2821 + 2869 ], "__typename": [ 78 @@ -53113,37 +54043,37 @@ export default { }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 2790 + 2838 ], "count": [ - 2781 + 2829 ], "max": [ - 2796 + 2844 ], "min": [ - 2798 + 2846 ], "stddev": [ - 2806 + 2854 ], "stddev_pop": [ - 2808 + 2856 ], "stddev_samp": [ - 2810 + 2858 ], "sum": [ - 2814 + 2862 ], "var_pop": [ - 2818 + 2866 ], "var_samp": [ - 2820 + 2868 ], "variance": [ - 2822 + 2870 ], "__typename": [ 78 @@ -53151,10 +54081,10 @@ export default { }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 2794 + 2842 ], "on_conflict": [ - 2800 + 2848 ], "__typename": [ 78 @@ -53173,10 +54103,10 @@ export default { }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 2781 + 2829 ], "valve_match_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -53184,28 +54114,28 @@ export default { }, "pending_match_import_players_bool_exp": { "_and": [ - 2791 + 2839 ], "_not": [ - 2791 + 2839 ], "_or": [ - 2791 + 2839 ], "created_at": [ - 4325 + 4377 ], "pending_match_import": [ - 2827 + 2875 ], "player": [ - 3743 + 3791 ], "steam_id": [ 182 ], "valve_match_id": [ - 2780 + 2828 ], "__typename": [ 78 @@ -53217,7 +54147,7 @@ export default { 180 ], "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53225,19 +54155,19 @@ export default { }, "pending_match_import_players_insert_input": { "created_at": [ - 4324 + 4376 ], "pending_match_import": [ - 2834 + 2882 ], "player": [ - 3750 + 3798 ], "steam_id": [ 180 ], "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53245,13 +54175,13 @@ export default { }, "pending_match_import_players_max_fields": { "created_at": [ - 4324 + 4376 ], "steam_id": [ 180 ], "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53259,13 +54189,13 @@ export default { }, "pending_match_import_players_max_order_by": { "created_at": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "valve_match_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -53273,13 +54203,13 @@ export default { }, "pending_match_import_players_min_fields": { "created_at": [ - 4324 + 4376 ], "steam_id": [ 180 ], "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53287,13 +54217,13 @@ export default { }, "pending_match_import_players_min_order_by": { "created_at": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "valve_match_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -53304,7 +54234,7 @@ export default { 38 ], "returning": [ - 2782 + 2830 ], "__typename": [ 78 @@ -53312,13 +54242,13 @@ export default { }, "pending_match_import_players_on_conflict": { "constraint": [ - 2792 + 2840 ], "update_columns": [ - 2815 + 2863 ], "where": [ - 2791 + 2839 ], "__typename": [ 78 @@ -53326,19 +54256,19 @@ export default { }, "pending_match_import_players_order_by": { "created_at": [ - 2781 + 2829 ], "pending_match_import": [ - 2836 + 2884 ], "player": [ - 3752 + 3800 ], "steam_id": [ - 2781 + 2829 ], "valve_match_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -53349,7 +54279,7 @@ export default { 180 ], "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53358,13 +54288,13 @@ export default { "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4324 + 4376 ], "steam_id": [ 180 ], "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53383,10 +54313,10 @@ export default { }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 2781 + 2829 ], "valve_match_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -53405,10 +54335,10 @@ export default { }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "valve_match_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -53427,10 +54357,10 @@ export default { }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "valve_match_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -53438,7 +54368,7 @@ export default { }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 2812 + 2860 ], "ordering": [ 236 @@ -53449,13 +54379,13 @@ export default { }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "steam_id": [ 180 ], "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53466,7 +54396,7 @@ export default { 180 ], "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53474,10 +54404,10 @@ export default { }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 2781 + 2829 ], "valve_match_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -53486,13 +54416,13 @@ export default { "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 2793 + 2841 ], "_set": [ - 2804 + 2852 ], "where": [ - 2791 + 2839 ], "__typename": [ 78 @@ -53511,10 +54441,10 @@ export default { }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "valve_match_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -53533,10 +54463,10 @@ export default { }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "valve_match_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -53555,10 +54485,10 @@ export default { }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 2781 + 2829 ], "valve_match_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -53566,7 +54496,7 @@ export default { }, "pending_match_imports": { "created_at": [ - 4324 + 4376 ], "demo_url": [ 78 @@ -53578,13 +54508,13 @@ export default { 78 ], "match_start_time": [ - 4324 + 4376 ], "players": [ - 2782, + 2830, { "distinct_on": [ - 2803, + 2851, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -53594,19 +54524,19 @@ export default { 38 ], "order_by": [ - 2801, + 2849, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2839 ] } ], "players_aggregate": [ - 2783, + 2831, { "distinct_on": [ - 2803, + 2851, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -53616,11 +54546,11 @@ export default { 38 ], "order_by": [ - 2801, + 2849, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2839 ] } ], @@ -53631,10 +54561,10 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53642,10 +54572,10 @@ export default { }, "pending_match_imports_aggregate": { "aggregate": [ - 2825 + 2873 ], "nodes": [ - 2823 + 2871 ], "__typename": [ 78 @@ -53653,13 +54583,13 @@ export default { }, "pending_match_imports_aggregate_fields": { "avg": [ - 2826 + 2874 ], "count": [ 38, { "columns": [ - 2838, + 2886, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -53668,31 +54598,31 @@ export default { } ], "max": [ - 2831 + 2879 ], "min": [ - 2832 + 2880 ], "stddev": [ - 2840 + 2888 ], "stddev_pop": [ - 2841 + 2889 ], "stddev_samp": [ - 2842 + 2890 ], "sum": [ - 2845 + 2893 ], "var_pop": [ - 2848 + 2896 ], "var_samp": [ - 2849 + 2897 ], "variance": [ - 2850 + 2898 ], "__typename": [ 78 @@ -53708,16 +54638,16 @@ export default { }, "pending_match_imports_bool_exp": { "_and": [ - 2827 + 2875 ], "_not": [ - 2827 + 2875 ], "_or": [ - 2827 + 2875 ], "created_at": [ - 4325 + 4377 ], "demo_url": [ 80 @@ -53729,13 +54659,13 @@ export default { 80 ], "match_start_time": [ - 4325 + 4377 ], "players": [ - 2791 + 2839 ], "players_aggregate": [ - 2784 + 2832 ], "share_code": [ 80 @@ -53744,10 +54674,10 @@ export default { 80 ], "updated_at": [ - 4325 + 4377 ], "valve_match_id": [ - 2780 + 2828 ], "__typename": [ 78 @@ -53756,7 +54686,7 @@ export default { "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53764,7 +54694,7 @@ export default { }, "pending_match_imports_insert_input": { "created_at": [ - 4324 + 4376 ], "demo_url": [ 78 @@ -53776,10 +54706,10 @@ export default { 78 ], "match_start_time": [ - 4324 + 4376 ], "players": [ - 2788 + 2836 ], "share_code": [ 78 @@ -53788,10 +54718,10 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53799,7 +54729,7 @@ export default { }, "pending_match_imports_max_fields": { "created_at": [ - 4324 + 4376 ], "demo_url": [ 78 @@ -53811,7 +54741,7 @@ export default { 78 ], "match_start_time": [ - 4324 + 4376 ], "share_code": [ 78 @@ -53820,10 +54750,10 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53831,7 +54761,7 @@ export default { }, "pending_match_imports_min_fields": { "created_at": [ - 4324 + 4376 ], "demo_url": [ 78 @@ -53843,7 +54773,7 @@ export default { 78 ], "match_start_time": [ - 4324 + 4376 ], "share_code": [ 78 @@ -53852,10 +54782,10 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53866,7 +54796,7 @@ export default { 38 ], "returning": [ - 2823 + 2871 ], "__typename": [ 78 @@ -53874,10 +54804,10 @@ export default { }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 2830 + 2878 ], "on_conflict": [ - 2835 + 2883 ], "__typename": [ 78 @@ -53885,13 +54815,13 @@ export default { }, "pending_match_imports_on_conflict": { "constraint": [ - 2828 + 2876 ], "update_columns": [ - 2846 + 2894 ], "where": [ - 2827 + 2875 ], "__typename": [ 78 @@ -53899,34 +54829,34 @@ export default { }, "pending_match_imports_order_by": { "created_at": [ - 2781 + 2829 ], "demo_url": [ - 2781 + 2829 ], "error": [ - 2781 + 2829 ], "map_name": [ - 2781 + 2829 ], "match_start_time": [ - 2781 + 2829 ], "players_aggregate": [ - 2787 + 2835 ], "share_code": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "valve_match_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -53934,7 +54864,7 @@ export default { }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53943,7 +54873,7 @@ export default { "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4324 + 4376 ], "demo_url": [ 78 @@ -53955,7 +54885,7 @@ export default { 78 ], "match_start_time": [ - 4324 + 4376 ], "share_code": [ 78 @@ -53964,10 +54894,10 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -53999,7 +54929,7 @@ export default { }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 2844 + 2892 ], "ordering": [ 236 @@ -54010,7 +54940,7 @@ export default { }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "demo_url": [ 78 @@ -54022,7 +54952,7 @@ export default { 78 ], "match_start_time": [ - 4324 + 4376 ], "share_code": [ 78 @@ -54031,10 +54961,10 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -54042,7 +54972,7 @@ export default { }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 2779 + 2827 ], "__typename": [ 78 @@ -54051,13 +54981,13 @@ export default { "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 2829 + 2877 ], "_set": [ - 2839 + 2887 ], "where": [ - 2827 + 2875 ], "__typename": [ 78 @@ -54089,7 +55019,7 @@ export default { }, "player_aim_stats_demo": { "attacker": [ - 3739 + 3787 ], "attacker_steam_id": [ 180 @@ -54104,7 +55034,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "first_bullet_hits": [ 38 @@ -54122,16 +55052,16 @@ export default { 38 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "non_awp_hits": [ 38 @@ -54152,7 +55082,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -54163,10 +55093,10 @@ export default { }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 2853 + 2901 ], "nodes": [ - 2851 + 2899 ], "__typename": [ 78 @@ -54174,13 +55104,13 @@ export default { }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 2854 + 2902 ], "count": [ 38, { "columns": [ - 2865, + 2913, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -54189,31 +55119,31 @@ export default { } ], "max": [ - 2859 + 2907 ], "min": [ - 2860 + 2908 ], "stddev": [ - 2867 + 2915 ], "stddev_pop": [ - 2868 + 2916 ], "stddev_samp": [ - 2869 + 2917 ], "sum": [ - 2872 + 2920 ], "var_pop": [ - 2875 + 2923 ], "var_samp": [ - 2876 + 2924 ], "variance": [ - 2877 + 2925 ], "__typename": [ 78 @@ -54280,16 +55210,16 @@ export default { }, "player_aim_stats_demo_bool_exp": { "_and": [ - 2855 + 2903 ], "_not": [ - 2855 + 2903 ], "_or": [ - 2855 + 2903 ], "attacker": [ - 3743 + 3791 ], "attacker_steam_id": [ 182 @@ -54304,7 +55234,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2780 + 2828 ], "first_bullet_hits": [ 39 @@ -54322,16 +55252,16 @@ export default { 39 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "non_awp_hits": [ 39 @@ -54352,7 +55282,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2780 + 2828 ], "total_engagement_frames": [ 39 @@ -54376,7 +55306,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "first_bullet_hits": [ 38 @@ -54412,7 +55342,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -54423,7 +55353,7 @@ export default { }, "player_aim_stats_demo_insert_input": { "attacker": [ - 3750 + 3798 ], "attacker_steam_id": [ 180 @@ -54438,7 +55368,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "first_bullet_hits": [ 38 @@ -54456,16 +55386,16 @@ export default { 38 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2452 + 2500 ], "match_map_id": [ - 4762 + 4921 ], "non_awp_hits": [ 38 @@ -54486,7 +55416,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -54509,7 +55439,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "first_bullet_hits": [ 38 @@ -54527,10 +55457,10 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "non_awp_hits": [ 38 @@ -54551,7 +55481,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -54574,7 +55504,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "first_bullet_hits": [ 38 @@ -54592,10 +55522,10 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "non_awp_hits": [ 38 @@ -54616,7 +55546,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -54630,7 +55560,7 @@ export default { 38 ], "returning": [ - 2851 + 2899 ], "__typename": [ 78 @@ -54638,13 +55568,13 @@ export default { }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 2856 + 2904 ], "update_columns": [ - 2873 + 2921 ], "where": [ - 2855 + 2903 ], "__typename": [ 78 @@ -54652,73 +55582,73 @@ export default { }, "player_aim_stats_demo_order_by": { "attacker": [ - 3752 + 3800 ], "attacker_steam_id": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "crosshair_angle_count": [ - 2781 + 2829 ], "crosshair_angle_sum_deg": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "time_to_damage_count": [ - 2781 + 2829 ], "time_to_damage_sum_s": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "__typename": [ 78 @@ -54729,7 +55659,7 @@ export default { 180 ], "match_map_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -54750,7 +55680,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "first_bullet_hits": [ 38 @@ -54768,10 +55698,10 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "non_awp_hits": [ 38 @@ -54792,7 +55722,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -54980,7 +55910,7 @@ export default { }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 2871 + 2919 ], "ordering": [ 236 @@ -55003,7 +55933,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "first_bullet_hits": [ 38 @@ -55021,10 +55951,10 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "non_awp_hits": [ 38 @@ -55045,7 +55975,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -55068,7 +55998,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "first_bullet_hits": [ 38 @@ -55104,7 +56034,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -55116,13 +56046,13 @@ export default { "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 2857 + 2905 ], "_set": [ - 2866 + 2914 ], "where": [ - 2855 + 2903 ], "__typename": [ 78 @@ -55319,19 +56249,19 @@ export default { 38 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3739 + 3787 ], "shots": [ 38 @@ -55351,10 +56281,10 @@ export default { }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 2882 + 2930 ], "nodes": [ - 2878 + 2926 ], "__typename": [ 78 @@ -55362,7 +56292,7 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 2881 + 2929 ], "__typename": [ 78 @@ -55370,13 +56300,13 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 2899 + 2947 ], "distinct": [ 3 ], "filter": [ - 2887 + 2935 ], "predicate": [ 39 @@ -55387,13 +56317,13 @@ export default { }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 2885 + 2933 ], "count": [ 38, { "columns": [ - 2899, + 2947, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -55402,31 +56332,31 @@ export default { } ], "max": [ - 2891 + 2939 ], "min": [ - 2893 + 2941 ], "stddev": [ - 2901 + 2949 ], "stddev_pop": [ - 2903 + 2951 ], "stddev_samp": [ - 2905 + 2953 ], "sum": [ - 2909 + 2957 ], "var_pop": [ - 2913 + 2961 ], "var_samp": [ - 2915 + 2963 ], "variance": [ - 2917 + 2965 ], "__typename": [ 78 @@ -55434,37 +56364,37 @@ export default { }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 2886 + 2934 ], "count": [ - 2781 + 2829 ], "max": [ - 2892 + 2940 ], "min": [ - 2894 + 2942 ], "stddev": [ - 2902 + 2950 ], "stddev_pop": [ - 2904 + 2952 ], "stddev_samp": [ - 2906 + 2954 ], "sum": [ - 2910 + 2958 ], "var_pop": [ - 2914 + 2962 ], "var_samp": [ - 2916 + 2964 ], "variance": [ - 2918 + 2966 ], "__typename": [ 78 @@ -55472,10 +56402,10 @@ export default { }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 2890 + 2938 ], "on_conflict": [ - 2896 + 2944 ], "__typename": [ 78 @@ -55509,25 +56439,25 @@ export default { }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -55535,13 +56465,13 @@ export default { }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 2887 + 2935 ], "_not": [ - 2887 + 2935 ], "_or": [ - 2887 + 2935 ], "first_bullet_hits": [ 39 @@ -55556,19 +56486,19 @@ export default { 39 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "player": [ - 3743 + 3791 ], "shots": [ 39 @@ -55627,19 +56557,19 @@ export default { 38 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2452 + 2500 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3750 + 3798 ], "shots": [ 38 @@ -55671,10 +56601,10 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "shots": [ 38 @@ -55694,34 +56624,34 @@ export default { }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "weapon_class": [ - 2781 + 2829 ], "__typename": [ 78 @@ -55741,10 +56671,10 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "shots": [ 38 @@ -55764,34 +56694,34 @@ export default { }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "weapon_class": [ - 2781 + 2829 ], "__typename": [ 78 @@ -55802,7 +56732,7 @@ export default { 38 ], "returning": [ - 2878 + 2926 ], "__typename": [ 78 @@ -55810,13 +56740,13 @@ export default { }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 2888 + 2936 ], "update_columns": [ - 2911 + 2959 ], "where": [ - 2887 + 2935 ], "__typename": [ 78 @@ -55824,43 +56754,43 @@ export default { }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "weapon_class": [ - 2781 + 2829 ], "__typename": [ 78 @@ -55868,7 +56798,7 @@ export default { }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -55895,10 +56825,10 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "shots": [ 38 @@ -55944,25 +56874,25 @@ export default { }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -55996,25 +56926,25 @@ export default { }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -56048,25 +56978,25 @@ export default { }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -56074,7 +57004,7 @@ export default { }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 2908 + 2956 ], "ordering": [ 236 @@ -56097,10 +57027,10 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "shots": [ 38 @@ -56146,25 +57076,25 @@ export default { }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -56173,13 +57103,13 @@ export default { "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 2889 + 2937 ], "_set": [ - 2900 + 2948 ], "where": [ - 2887 + 2935 ], "__typename": [ 78 @@ -56213,25 +57143,25 @@ export default { }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -56265,25 +57195,25 @@ export default { }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -56317,25 +57247,25 @@ export default { }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -56343,7 +57273,7 @@ export default { }, "player_assists": { "attacked_player": [ - 3739 + 3787 ], "attacked_steam_id": [ 180 @@ -56358,7 +57288,7 @@ export default { 78 ], "deleted_at": [ - 4324 + 4376 ], "flash": [ 3 @@ -56367,25 +57297,25 @@ export default { 3 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3739 + 3787 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -56393,10 +57323,10 @@ export default { }, "player_assists_aggregate": { "aggregate": [ - 2925 + 2973 ], "nodes": [ - 2919 + 2967 ], "__typename": [ 78 @@ -56404,13 +57334,13 @@ export default { }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 2922 + 2970 ], "bool_or": [ - 2923 + 2971 ], "count": [ - 2924 + 2972 ], "__typename": [ 78 @@ -56418,13 +57348,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 2943 + 2991 ], "distinct": [ 3 ], "filter": [ - 2930 + 2978 ], "predicate": [ 4 @@ -56435,13 +57365,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 2944 + 2992 ], "distinct": [ 3 ], "filter": [ - 2930 + 2978 ], "predicate": [ 4 @@ -56452,13 +57382,13 @@ export default { }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 2942 + 2990 ], "distinct": [ 3 ], "filter": [ - 2930 + 2978 ], "predicate": [ 39 @@ -56469,13 +57399,13 @@ export default { }, "player_assists_aggregate_fields": { "avg": [ - 2928 + 2976 ], "count": [ 38, { "columns": [ - 2942, + 2990, "[player_assists_select_column!]" ], "distinct": [ @@ -56484,31 +57414,31 @@ export default { } ], "max": [ - 2934 + 2982 ], "min": [ - 2936 + 2984 ], "stddev": [ - 2946 + 2994 ], "stddev_pop": [ - 2948 + 2996 ], "stddev_samp": [ - 2950 + 2998 ], "sum": [ - 2954 + 3002 ], "var_pop": [ - 2958 + 3006 ], "var_samp": [ - 2960 + 3008 ], "variance": [ - 2962 + 3010 ], "__typename": [ 78 @@ -56516,37 +57446,37 @@ export default { }, "player_assists_aggregate_order_by": { "avg": [ - 2929 + 2977 ], "count": [ - 2781 + 2829 ], "max": [ - 2935 + 2983 ], "min": [ - 2937 + 2985 ], "stddev": [ - 2947 + 2995 ], "stddev_pop": [ - 2949 + 2997 ], "stddev_samp": [ - 2951 + 2999 ], "sum": [ - 2955 + 3003 ], "var_pop": [ - 2959 + 3007 ], "var_samp": [ - 2961 + 3009 ], "variance": [ - 2963 + 3011 ], "__typename": [ 78 @@ -56554,10 +57484,10 @@ export default { }, "player_assists_arr_rel_insert_input": { "data": [ - 2933 + 2981 ], "on_conflict": [ - 2939 + 2987 ], "__typename": [ 78 @@ -56579,13 +57509,13 @@ export default { }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -56593,16 +57523,16 @@ export default { }, "player_assists_bool_exp": { "_and": [ - 2930 + 2978 ], "_not": [ - 2930 + 2978 ], "_or": [ - 2930 + 2978 ], "attacked_player": [ - 3743 + 3791 ], "attacked_steam_id": [ 182 @@ -56617,7 +57547,7 @@ export default { 80 ], "deleted_at": [ - 4325 + 4377 ], "flash": [ 4 @@ -56626,25 +57556,25 @@ export default { 4 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "player": [ - 3743 + 3791 ], "round": [ 39 ], "time": [ - 4325 + 4377 ], "__typename": [ 78 @@ -56667,7 +57597,7 @@ export default { }, "player_assists_insert_input": { "attacked_player": [ - 3750 + 3798 ], "attacked_steam_id": [ 180 @@ -56682,31 +57612,31 @@ export default { 78 ], "deleted_at": [ - 4324 + 4376 ], "flash": [ 3 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2452 + 2500 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3750 + 3798 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -56726,19 +57656,19 @@ export default { 78 ], "deleted_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -56746,31 +57676,31 @@ export default { }, "player_assists_max_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacked_team": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "attacker_team": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "__typename": [ 78 @@ -56790,19 +57720,19 @@ export default { 78 ], "deleted_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -56810,31 +57740,31 @@ export default { }, "player_assists_min_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacked_team": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "attacker_team": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "__typename": [ 78 @@ -56845,7 +57775,7 @@ export default { 38 ], "returning": [ - 2919 + 2967 ], "__typename": [ 78 @@ -56853,13 +57783,13 @@ export default { }, "player_assists_on_conflict": { "constraint": [ - 2931 + 2979 ], "update_columns": [ - 2956 + 3004 ], "where": [ - 2930 + 2978 ], "__typename": [ 78 @@ -56867,49 +57797,49 @@ export default { }, "player_assists_order_by": { "attacked_player": [ - 3752 + 3800 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacked_team": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "attacker_team": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "flash": [ - 2781 + 2829 ], "is_team_assist": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "__typename": [ 78 @@ -56923,10 +57853,10 @@ export default { 180 ], "match_map_id": [ - 4762 + 4921 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -56949,22 +57879,22 @@ export default { 78 ], "deleted_at": [ - 4324 + 4376 ], "flash": [ 3 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -56986,13 +57916,13 @@ export default { }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -57014,13 +57944,13 @@ export default { }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -57042,13 +57972,13 @@ export default { }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -57056,7 +57986,7 @@ export default { }, "player_assists_stream_cursor_input": { "initial_value": [ - 2953 + 3001 ], "ordering": [ 236 @@ -57079,22 +58009,22 @@ export default { 78 ], "deleted_at": [ - 4324 + 4376 ], "flash": [ 3 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -57116,13 +58046,13 @@ export default { }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -57131,13 +58061,13 @@ export default { "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 2932 + 2980 ], "_set": [ - 2945 + 2993 ], "where": [ - 2930 + 2978 ], "__typename": [ 78 @@ -57159,13 +58089,13 @@ export default { }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -57187,13 +58117,13 @@ export default { }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -57215,13 +58145,13 @@ export default { }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -57229,28 +58159,28 @@ export default { }, "player_career_stats_v": { "accuracy": [ - 2779 + 2827 ], "accuracy_spotted": [ - 2779 + 2827 ], "counter_strafe_pct": [ - 2779 + 2827 ], "crosshair_deg": [ - 2779 + 2827 ], "enemy_blind_pr": [ - 2779 + 2827 ], "flash_assists_pr": [ - 2779 + 2827 ], "hs_pct": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "maps": [ 38 @@ -57265,16 +58195,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2827 ], "time_to_damage_s": [ - 2779 + 2827 ], "traded_death_pct": [ - 2779 + 2827 ], "util_efficiency": [ - 2779 + 2827 ], "__typename": [ 78 @@ -57282,10 +58212,10 @@ export default { }, "player_career_stats_v_aggregate": { "aggregate": [ - 2966 + 3014 ], "nodes": [ - 2964 + 3012 ], "__typename": [ 78 @@ -57293,13 +58223,13 @@ export default { }, "player_career_stats_v_aggregate_fields": { "avg": [ - 2967 + 3015 ], "count": [ 38, { "columns": [ - 2972, + 3020, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -57308,31 +58238,31 @@ export default { } ], "max": [ - 2969 + 3017 ], "min": [ - 2970 + 3018 ], "stddev": [ - 2973 + 3021 ], "stddev_pop": [ - 2974 + 3022 ], "stddev_samp": [ - 2975 + 3023 ], "sum": [ - 2978 + 3026 ], "var_pop": [ - 2979 + 3027 ], "var_samp": [ - 2980 + 3028 ], "variance": [ - 2981 + 3029 ], "__typename": [ 78 @@ -57393,37 +58323,37 @@ export default { }, "player_career_stats_v_bool_exp": { "_and": [ - 2968 + 3016 ], "_not": [ - 2968 + 3016 ], "_or": [ - 2968 + 3016 ], "accuracy": [ - 2780 + 2828 ], "accuracy_spotted": [ - 2780 + 2828 ], "counter_strafe_pct": [ - 2780 + 2828 ], "crosshair_deg": [ - 2780 + 2828 ], "enemy_blind_pr": [ - 2780 + 2828 ], "flash_assists_pr": [ - 2780 + 2828 ], "hs_pct": [ - 2780 + 2828 ], "kast_pct": [ - 2780 + 2828 ], "maps": [ 39 @@ -57438,16 +58368,16 @@ export default { 182 ], "survival_pct": [ - 2780 + 2828 ], "time_to_damage_s": [ - 2780 + 2828 ], "traded_death_pct": [ - 2780 + 2828 ], "util_efficiency": [ - 2780 + 2828 ], "__typename": [ 78 @@ -57455,28 +58385,28 @@ export default { }, "player_career_stats_v_max_fields": { "accuracy": [ - 2779 + 2827 ], "accuracy_spotted": [ - 2779 + 2827 ], "counter_strafe_pct": [ - 2779 + 2827 ], "crosshair_deg": [ - 2779 + 2827 ], "enemy_blind_pr": [ - 2779 + 2827 ], "flash_assists_pr": [ - 2779 + 2827 ], "hs_pct": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "maps": [ 38 @@ -57491,16 +58421,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2827 ], "time_to_damage_s": [ - 2779 + 2827 ], "traded_death_pct": [ - 2779 + 2827 ], "util_efficiency": [ - 2779 + 2827 ], "__typename": [ 78 @@ -57508,28 +58438,28 @@ export default { }, "player_career_stats_v_min_fields": { "accuracy": [ - 2779 + 2827 ], "accuracy_spotted": [ - 2779 + 2827 ], "counter_strafe_pct": [ - 2779 + 2827 ], "crosshair_deg": [ - 2779 + 2827 ], "enemy_blind_pr": [ - 2779 + 2827 ], "flash_assists_pr": [ - 2779 + 2827 ], "hs_pct": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "maps": [ 38 @@ -57544,16 +58474,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2827 ], "time_to_damage_s": [ - 2779 + 2827 ], "traded_death_pct": [ - 2779 + 2827 ], "util_efficiency": [ - 2779 + 2827 ], "__typename": [ 78 @@ -57561,52 +58491,52 @@ export default { }, "player_career_stats_v_order_by": { "accuracy": [ - 2781 + 2829 ], "accuracy_spotted": [ - 2781 + 2829 ], "counter_strafe_pct": [ - 2781 + 2829 ], "crosshair_deg": [ - 2781 + 2829 ], "enemy_blind_pr": [ - 2781 + 2829 ], "flash_assists_pr": [ - 2781 + 2829 ], "hs_pct": [ - 2781 + 2829 ], "kast_pct": [ - 2781 + 2829 ], "maps": [ - 2781 + 2829 ], "premier_rank": [ - 2781 + 2829 ], "rounds": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "survival_pct": [ - 2781 + 2829 ], "time_to_damage_s": [ - 2781 + 2829 ], "traded_death_pct": [ - 2781 + 2829 ], "util_efficiency": [ - 2781 + 2829 ], "__typename": [ 78 @@ -57774,7 +58704,7 @@ export default { }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 2977 + 3025 ], "ordering": [ 236 @@ -57785,28 +58715,28 @@ export default { }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 2779 + 2827 ], "accuracy_spotted": [ - 2779 + 2827 ], "counter_strafe_pct": [ - 2779 + 2827 ], "crosshair_deg": [ - 2779 + 2827 ], "enemy_blind_pr": [ - 2779 + 2827 ], "flash_assists_pr": [ - 2779 + 2827 ], "hs_pct": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "maps": [ 38 @@ -57821,16 +58751,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2827 ], "time_to_damage_s": [ - 2779 + 2827 ], "traded_death_pct": [ - 2779 + 2827 ], "util_efficiency": [ - 2779 + 2827 ], "__typename": [ 78 @@ -57838,28 +58768,28 @@ export default { }, "player_career_stats_v_sum_fields": { "accuracy": [ - 2779 + 2827 ], "accuracy_spotted": [ - 2779 + 2827 ], "counter_strafe_pct": [ - 2779 + 2827 ], "crosshair_deg": [ - 2779 + 2827 ], "enemy_blind_pr": [ - 2779 + 2827 ], "flash_assists_pr": [ - 2779 + 2827 ], "hs_pct": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "maps": [ 38 @@ -57874,16 +58804,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2827 ], "time_to_damage_s": [ - 2779 + 2827 ], "traded_death_pct": [ - 2779 + 2827 ], "util_efficiency": [ - 2779 + 2827 ], "__typename": [ 78 @@ -58059,7 +58989,7 @@ export default { 78 ], "attacked_player": [ - 3739 + 3787 ], "attacked_steam_id": [ 180 @@ -58086,7 +59016,7 @@ export default { 38 ], "deleted_at": [ - 4324 + 4376 ], "health": [ 38 @@ -58095,31 +59025,31 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3739 + 3787 ], "round": [ - 2779 + 2827 ], "team_damage": [ 3 ], "time": [ - 4324 + 4376 ], "with": [ 78 @@ -58130,10 +59060,10 @@ export default { }, "player_damages_aggregate": { "aggregate": [ - 2986 + 3034 ], "nodes": [ - 2982 + 3030 ], "__typename": [ 78 @@ -58141,7 +59071,7 @@ export default { }, "player_damages_aggregate_bool_exp": { "count": [ - 2985 + 3033 ], "__typename": [ 78 @@ -58149,13 +59079,13 @@ export default { }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 3003 + 3051 ], "distinct": [ 3 ], "filter": [ - 2991 + 3039 ], "predicate": [ 39 @@ -58166,13 +59096,13 @@ export default { }, "player_damages_aggregate_fields": { "avg": [ - 2989 + 3037 ], "count": [ 38, { "columns": [ - 3003, + 3051, "[player_damages_select_column!]" ], "distinct": [ @@ -58181,31 +59111,31 @@ export default { } ], "max": [ - 2995 + 3043 ], "min": [ - 2997 + 3045 ], "stddev": [ - 3005 + 3053 ], "stddev_pop": [ - 3007 + 3055 ], "stddev_samp": [ - 3009 + 3057 ], "sum": [ - 3013 + 3061 ], "var_pop": [ - 3017 + 3065 ], "var_samp": [ - 3019 + 3067 ], "variance": [ - 3021 + 3069 ], "__typename": [ 78 @@ -58213,37 +59143,37 @@ export default { }, "player_damages_aggregate_order_by": { "avg": [ - 2990 + 3038 ], "count": [ - 2781 + 2829 ], "max": [ - 2996 + 3044 ], "min": [ - 2998 + 3046 ], "stddev": [ - 3006 + 3054 ], "stddev_pop": [ - 3008 + 3056 ], "stddev_samp": [ - 3010 + 3058 ], "sum": [ - 3014 + 3062 ], "var_pop": [ - 3018 + 3066 ], "var_samp": [ - 3020 + 3068 ], "variance": [ - 3022 + 3070 ], "__typename": [ 78 @@ -58251,10 +59181,10 @@ export default { }, "player_damages_arr_rel_insert_input": { "data": [ - 2994 + 3042 ], "on_conflict": [ - 3000 + 3048 ], "__typename": [ 78 @@ -58288,25 +59218,25 @@ export default { }, "player_damages_avg_order_by": { "armor": [ - 2781 + 2829 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_armor": [ - 2781 + 2829 ], "health": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -58314,13 +59244,13 @@ export default { }, "player_damages_bool_exp": { "_and": [ - 2991 + 3039 ], "_not": [ - 2991 + 3039 ], "_or": [ - 2991 + 3039 ], "armor": [ 39 @@ -58332,7 +59262,7 @@ export default { 80 ], "attacked_player": [ - 3743 + 3791 ], "attacked_steam_id": [ 182 @@ -58359,7 +59289,7 @@ export default { 39 ], "deleted_at": [ - 4325 + 4377 ], "health": [ 39 @@ -58368,31 +59298,31 @@ export default { 80 ], "id": [ - 4764 + 4923 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "player": [ - 3743 + 3791 ], "round": [ - 2780 + 2828 ], "team_damage": [ 4 ], "time": [ - 4325 + 4377 ], "with": [ 80 @@ -58422,7 +59352,7 @@ export default { 38 ], "round": [ - 2779 + 2827 ], "__typename": [ 78 @@ -58439,7 +59369,7 @@ export default { 78 ], "attacked_player": [ - 3750 + 3798 ], "attacked_steam_id": [ 180 @@ -58466,7 +59396,7 @@ export default { 38 ], "deleted_at": [ - 4324 + 4376 ], "health": [ 38 @@ -58475,28 +59405,28 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2452 + 2500 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3750 + 3798 ], "round": [ - 2779 + 2827 ], "time": [ - 4324 + 4376 ], "with": [ 78 @@ -58540,7 +59470,7 @@ export default { 38 ], "deleted_at": [ - 4324 + 4376 ], "health": [ 38 @@ -58549,19 +59479,19 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ - 2779 + 2827 ], "time": [ - 4324 + 4376 ], "with": [ 78 @@ -58572,64 +59502,64 @@ export default { }, "player_damages_max_order_by": { "armor": [ - 2781 + 2829 ], "attacked_location": [ - 2781 + 2829 ], "attacked_location_coordinates": [ - 2781 + 2829 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacked_team": [ - 2781 + 2829 ], "attacker_location": [ - 2781 + 2829 ], "attacker_location_coordinates": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "attacker_team": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_armor": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "health": [ - 2781 + 2829 ], "hitgroup": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "with": [ - 2781 + 2829 ], "__typename": [ 78 @@ -58670,7 +59600,7 @@ export default { 38 ], "deleted_at": [ - 4324 + 4376 ], "health": [ 38 @@ -58679,19 +59609,19 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ - 2779 + 2827 ], "time": [ - 4324 + 4376 ], "with": [ 78 @@ -58702,64 +59632,64 @@ export default { }, "player_damages_min_order_by": { "armor": [ - 2781 + 2829 ], "attacked_location": [ - 2781 + 2829 ], "attacked_location_coordinates": [ - 2781 + 2829 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacked_team": [ - 2781 + 2829 ], "attacker_location": [ - 2781 + 2829 ], "attacker_location_coordinates": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "attacker_team": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_armor": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "health": [ - 2781 + 2829 ], "hitgroup": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "with": [ - 2781 + 2829 ], "__typename": [ 78 @@ -58770,7 +59700,7 @@ export default { 38 ], "returning": [ - 2982 + 3030 ], "__typename": [ 78 @@ -58778,13 +59708,13 @@ export default { }, "player_damages_on_conflict": { "constraint": [ - 2992 + 3040 ], "update_columns": [ - 3015 + 3063 ], "where": [ - 2991 + 3039 ], "__typename": [ 78 @@ -58792,79 +59722,79 @@ export default { }, "player_damages_order_by": { "armor": [ - 2781 + 2829 ], "attacked_location": [ - 2781 + 2829 ], "attacked_location_coordinates": [ - 2781 + 2829 ], "attacked_player": [ - 3752 + 3800 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacked_team": [ - 2781 + 2829 ], "attacker_location": [ - 2781 + 2829 ], "attacker_location_coordinates": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "attacker_team": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_armor": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "health": [ - 2781 + 2829 ], "hitgroup": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "round": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "with": [ - 2781 + 2829 ], "__typename": [ 78 @@ -58872,13 +59802,13 @@ export default { }, "player_damages_pk_columns_input": { "id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -58920,7 +59850,7 @@ export default { 38 ], "deleted_at": [ - 4324 + 4376 ], "health": [ 38 @@ -58929,19 +59859,19 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ - 2779 + 2827 ], "time": [ - 4324 + 4376 ], "with": [ 78 @@ -58978,25 +59908,25 @@ export default { }, "player_damages_stddev_order_by": { "armor": [ - 2781 + 2829 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_armor": [ - 2781 + 2829 ], "health": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -59030,25 +59960,25 @@ export default { }, "player_damages_stddev_pop_order_by": { "armor": [ - 2781 + 2829 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_armor": [ - 2781 + 2829 ], "health": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -59082,25 +60012,25 @@ export default { }, "player_damages_stddev_samp_order_by": { "armor": [ - 2781 + 2829 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_armor": [ - 2781 + 2829 ], "health": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -59108,7 +60038,7 @@ export default { }, "player_damages_stream_cursor_input": { "initial_value": [ - 3012 + 3060 ], "ordering": [ 236 @@ -59152,7 +60082,7 @@ export default { 38 ], "deleted_at": [ - 4324 + 4376 ], "health": [ 38 @@ -59161,19 +60091,19 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ - 2779 + 2827 ], "time": [ - 4324 + 4376 ], "with": [ 78 @@ -59202,7 +60132,7 @@ export default { 38 ], "round": [ - 2779 + 2827 ], "__typename": [ 78 @@ -59210,25 +60140,25 @@ export default { }, "player_damages_sum_order_by": { "armor": [ - 2781 + 2829 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_armor": [ - 2781 + 2829 ], "health": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -59237,13 +60167,13 @@ export default { "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 2993 + 3041 ], "_set": [ - 3004 + 3052 ], "where": [ - 2991 + 3039 ], "__typename": [ 78 @@ -59277,25 +60207,25 @@ export default { }, "player_damages_var_pop_order_by": { "armor": [ - 2781 + 2829 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_armor": [ - 2781 + 2829 ], "health": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -59329,25 +60259,25 @@ export default { }, "player_damages_var_samp_order_by": { "armor": [ - 2781 + 2829 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_armor": [ - 2781 + 2829 ], "health": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -59381,25 +60311,25 @@ export default { }, "player_damages_variance_order_by": { "armor": [ - 2781 + 2829 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_armor": [ - 2781 + 2829 ], "health": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -59407,40 +60337,40 @@ export default { }, "player_elo": { "actual_score": [ - 1499 + 1547 ], "assists": [ 38 ], "change": [ - 2779 + 2827 ], "created_at": [ - 4324 + 4376 ], "current": [ - 2779 + 2827 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1547 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1547 ], "impact": [ - 2779 + 2827 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1547 ], "kills": [ 38 @@ -59452,28 +60382,28 @@ export default { 38 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "opponent_team_elo_avg": [ - 1499 + 1547 ], "performance_multiplier": [ - 1499 + 1547 ], "player": [ - 3739 + 3787 ], "player_team_elo_avg": [ - 1499 + 1547 ], "season": [ - 3798 + 3846 ], "season_id": [ - 4762 + 4921 ], "series_multiplier": [ 38 @@ -59482,10 +60412,10 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1547 ], "type": [ - 860 + 887 ], "__typename": [ 78 @@ -59493,10 +60423,10 @@ export default { }, "player_elo_aggregate": { "aggregate": [ - 3025 + 3073 ], "nodes": [ - 3023 + 3071 ], "__typename": [ 78 @@ -59504,13 +60434,13 @@ export default { }, "player_elo_aggregate_fields": { "avg": [ - 3026 + 3074 ], "count": [ 38, { "columns": [ - 3037, + 3085, "[player_elo_select_column!]" ], "distinct": [ @@ -59519,31 +60449,31 @@ export default { } ], "max": [ - 3031 + 3079 ], "min": [ - 3032 + 3080 ], "stddev": [ - 3039 + 3087 ], "stddev_pop": [ - 3040 + 3088 ], "stddev_samp": [ - 3041 + 3089 ], "sum": [ - 3044 + 3092 ], "var_pop": [ - 3047 + 3095 ], "var_samp": [ - 3048 + 3096 ], "variance": [ - 3049 + 3097 ], "__typename": [ 78 @@ -59616,49 +60546,49 @@ export default { }, "player_elo_bool_exp": { "_and": [ - 3027 + 3075 ], "_not": [ - 3027 + 3075 ], "_or": [ - 3027 + 3075 ], "actual_score": [ - 1500 + 1548 ], "assists": [ 39 ], "change": [ - 2780 + 2828 ], "created_at": [ - 4325 + 4377 ], "current": [ - 2780 + 2828 ], "damage": [ 39 ], "damage_percent": [ - 1500 + 1548 ], "deaths": [ 39 ], "expected_score": [ - 1500 + 1548 ], "impact": [ - 2780 + 2828 ], "k_factor": [ 39 ], "kda": [ - 1500 + 1548 ], "kills": [ 39 @@ -59670,28 +60600,28 @@ export default { 39 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "opponent_team_elo_avg": [ - 1500 + 1548 ], "performance_multiplier": [ - 1500 + 1548 ], "player": [ - 3743 + 3791 ], "player_team_elo_avg": [ - 1500 + 1548 ], "season": [ - 3802 + 3850 ], "season_id": [ - 4764 + 4923 ], "series_multiplier": [ 39 @@ -59700,10 +60630,10 @@ export default { 182 ], "team_avg_kda": [ - 1500 + 1548 ], "type": [ - 861 + 888 ], "__typename": [ 78 @@ -59712,37 +60642,37 @@ export default { "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1499 + 1547 ], "assists": [ 38 ], "change": [ - 2779 + 2827 ], "current": [ - 2779 + 2827 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1547 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1547 ], "impact": [ - 2779 + 2827 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1547 ], "kills": [ 38 @@ -59754,13 +60684,13 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1499 + 1547 ], "performance_multiplier": [ - 1499 + 1547 ], "player_team_elo_avg": [ - 1499 + 1547 ], "series_multiplier": [ 38 @@ -59769,7 +60699,7 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1547 ], "__typename": [ 78 @@ -59777,40 +60707,40 @@ export default { }, "player_elo_insert_input": { "actual_score": [ - 1499 + 1547 ], "assists": [ 38 ], "change": [ - 2779 + 2827 ], "created_at": [ - 4324 + 4376 ], "current": [ - 2779 + 2827 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1547 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1547 ], "impact": [ - 2779 + 2827 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1547 ], "kills": [ 38 @@ -59822,28 +60752,28 @@ export default { 38 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "opponent_team_elo_avg": [ - 1499 + 1547 ], "performance_multiplier": [ - 1499 + 1547 ], "player": [ - 3750 + 3798 ], "player_team_elo_avg": [ - 1499 + 1547 ], "season": [ - 3809 + 3857 ], "season_id": [ - 4762 + 4921 ], "series_multiplier": [ 38 @@ -59852,10 +60782,10 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1547 ], "type": [ - 860 + 887 ], "__typename": [ 78 @@ -59863,40 +60793,40 @@ export default { }, "player_elo_max_fields": { "actual_score": [ - 1499 + 1547 ], "assists": [ 38 ], "change": [ - 2779 + 2827 ], "created_at": [ - 4324 + 4376 ], "current": [ - 2779 + 2827 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1547 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1547 ], "impact": [ - 2779 + 2827 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1547 ], "kills": [ 38 @@ -59908,19 +60838,19 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "opponent_team_elo_avg": [ - 1499 + 1547 ], "performance_multiplier": [ - 1499 + 1547 ], "player_team_elo_avg": [ - 1499 + 1547 ], "season_id": [ - 4762 + 4921 ], "series_multiplier": [ 38 @@ -59929,7 +60859,7 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1547 ], "__typename": [ 78 @@ -59937,40 +60867,40 @@ export default { }, "player_elo_min_fields": { "actual_score": [ - 1499 + 1547 ], "assists": [ 38 ], "change": [ - 2779 + 2827 ], "created_at": [ - 4324 + 4376 ], "current": [ - 2779 + 2827 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1547 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1547 ], "impact": [ - 2779 + 2827 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1547 ], "kills": [ 38 @@ -59982,19 +60912,19 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "opponent_team_elo_avg": [ - 1499 + 1547 ], "performance_multiplier": [ - 1499 + 1547 ], "player_team_elo_avg": [ - 1499 + 1547 ], "season_id": [ - 4762 + 4921 ], "series_multiplier": [ 38 @@ -60003,7 +60933,7 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1547 ], "__typename": [ 78 @@ -60014,7 +60944,7 @@ export default { 38 ], "returning": [ - 3023 + 3071 ], "__typename": [ 78 @@ -60022,13 +60952,13 @@ export default { }, "player_elo_on_conflict": { "constraint": [ - 3028 + 3076 ], "update_columns": [ - 3045 + 3093 ], "where": [ - 3027 + 3075 ], "__typename": [ 78 @@ -60036,85 +60966,85 @@ export default { }, "player_elo_order_by": { "actual_score": [ - 2781 + 2829 ], "assists": [ - 2781 + 2829 ], "change": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "current": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_percent": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "expected_score": [ - 2781 + 2829 ], "impact": [ - 2781 + 2829 ], "k_factor": [ - 2781 + 2829 ], "kda": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "map_losses": [ - 2781 + 2829 ], "map_wins": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "opponent_team_elo_avg": [ - 2781 + 2829 ], "performance_multiplier": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "player_team_elo_avg": [ - 2781 + 2829 ], "season": [ - 3811 + 3859 ], "season_id": [ - 2781 + 2829 ], "series_multiplier": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_avg_kda": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "__typename": [ 78 @@ -60122,13 +61052,13 @@ export default { }, "player_elo_pk_columns_input": { "match_id": [ - 4762 + 4921 ], "steam_id": [ 180 ], "type": [ - 860 + 887 ], "__typename": [ 78 @@ -60137,40 +61067,40 @@ export default { "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1499 + 1547 ], "assists": [ 38 ], "change": [ - 2779 + 2827 ], "created_at": [ - 4324 + 4376 ], "current": [ - 2779 + 2827 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1547 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1547 ], "impact": [ - 2779 + 2827 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1547 ], "kills": [ 38 @@ -60182,19 +61112,19 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "opponent_team_elo_avg": [ - 1499 + 1547 ], "performance_multiplier": [ - 1499 + 1547 ], "player_team_elo_avg": [ - 1499 + 1547 ], "season_id": [ - 4762 + 4921 ], "series_multiplier": [ 38 @@ -60203,10 +61133,10 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1547 ], "type": [ - 860 + 887 ], "__typename": [ 78 @@ -60409,7 +61339,7 @@ export default { }, "player_elo_stream_cursor_input": { "initial_value": [ - 3043 + 3091 ], "ordering": [ 236 @@ -60420,40 +61350,40 @@ export default { }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1499 + 1547 ], "assists": [ 38 ], "change": [ - 2779 + 2827 ], "created_at": [ - 4324 + 4376 ], "current": [ - 2779 + 2827 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1547 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1547 ], "impact": [ - 2779 + 2827 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1547 ], "kills": [ 38 @@ -60465,19 +61395,19 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "opponent_team_elo_avg": [ - 1499 + 1547 ], "performance_multiplier": [ - 1499 + 1547 ], "player_team_elo_avg": [ - 1499 + 1547 ], "season_id": [ - 4762 + 4921 ], "series_multiplier": [ 38 @@ -60486,10 +61416,10 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1547 ], "type": [ - 860 + 887 ], "__typename": [ 78 @@ -60497,37 +61427,37 @@ export default { }, "player_elo_sum_fields": { "actual_score": [ - 1499 + 1547 ], "assists": [ 38 ], "change": [ - 2779 + 2827 ], "current": [ - 2779 + 2827 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1547 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1547 ], "impact": [ - 2779 + 2827 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1547 ], "kills": [ 38 @@ -60539,13 +61469,13 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1499 + 1547 ], "performance_multiplier": [ - 1499 + 1547 ], "player_team_elo_avg": [ - 1499 + 1547 ], "series_multiplier": [ 38 @@ -60554,7 +61484,7 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1547 ], "__typename": [ 78 @@ -60563,13 +61493,13 @@ export default { "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 3029 + 3077 ], "_set": [ - 3038 + 3086 ], "where": [ - 3027 + 3075 ], "__typename": [ 78 @@ -60775,19 +61705,19 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "observed_at": [ - 4324 + 4376 ], "player": [ - 3739 + 3787 ], "previous_rank": [ 38 @@ -60804,10 +61734,10 @@ export default { }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 3054 + 3102 ], "nodes": [ - 3050 + 3098 ], "__typename": [ 78 @@ -60815,7 +61745,7 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 3053 + 3101 ], "__typename": [ 78 @@ -60823,13 +61753,13 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3071 + 3119 ], "distinct": [ 3 ], "filter": [ - 3059 + 3107 ], "predicate": [ 39 @@ -60840,13 +61770,13 @@ export default { }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 3057 + 3105 ], "count": [ 38, { "columns": [ - 3071, + 3119, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -60855,31 +61785,31 @@ export default { } ], "max": [ - 3063 + 3111 ], "min": [ - 3065 + 3113 ], "stddev": [ - 3073 + 3121 ], "stddev_pop": [ - 3075 + 3123 ], "stddev_samp": [ - 3077 + 3125 ], "sum": [ - 3081 + 3129 ], "var_pop": [ - 3085 + 3133 ], "var_samp": [ - 3087 + 3135 ], "variance": [ - 3089 + 3137 ], "__typename": [ 78 @@ -60887,37 +61817,37 @@ export default { }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 3058 + 3106 ], "count": [ - 2781 + 2829 ], "max": [ - 3064 + 3112 ], "min": [ - 3066 + 3114 ], "stddev": [ - 3074 + 3122 ], "stddev_pop": [ - 3076 + 3124 ], "stddev_samp": [ - 3078 + 3126 ], "sum": [ - 3082 + 3130 ], "var_pop": [ - 3086 + 3134 ], "var_samp": [ - 3088 + 3136 ], "variance": [ - 3090 + 3138 ], "__typename": [ 78 @@ -60925,10 +61855,10 @@ export default { }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 3062 + 3110 ], "on_conflict": [ - 3068 + 3116 ], "__typename": [ 78 @@ -60953,16 +61883,16 @@ export default { }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 2781 + 2829 ], "previous_rank": [ - 2781 + 2829 ], "skill_level": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -60970,31 +61900,31 @@ export default { }, "player_faceit_rank_history_bool_exp": { "_and": [ - 3059 + 3107 ], "_not": [ - 3059 + 3107 ], "_or": [ - 3059 + 3107 ], "elo": [ 39 ], "id": [ - 4764 + 4923 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "observed_at": [ - 4325 + 4377 ], "player": [ - 3743 + 3791 ], "previous_rank": [ 39 @@ -61032,19 +61962,19 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "observed_at": [ - 4324 + 4376 ], "player": [ - 3750 + 3798 ], "previous_rank": [ 38 @@ -61064,13 +61994,13 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "observed_at": [ - 4324 + 4376 ], "previous_rank": [ 38 @@ -61087,25 +62017,25 @@ export default { }, "player_faceit_rank_history_max_order_by": { "elo": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "observed_at": [ - 2781 + 2829 ], "previous_rank": [ - 2781 + 2829 ], "skill_level": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -61116,13 +62046,13 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "observed_at": [ - 4324 + 4376 ], "previous_rank": [ 38 @@ -61139,25 +62069,25 @@ export default { }, "player_faceit_rank_history_min_order_by": { "elo": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "observed_at": [ - 2781 + 2829 ], "previous_rank": [ - 2781 + 2829 ], "skill_level": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -61168,7 +62098,7 @@ export default { 38 ], "returning": [ - 3050 + 3098 ], "__typename": [ 78 @@ -61176,13 +62106,13 @@ export default { }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 3060 + 3108 ], "update_columns": [ - 3083 + 3131 ], "where": [ - 3059 + 3107 ], "__typename": [ 78 @@ -61190,31 +62120,31 @@ export default { }, "player_faceit_rank_history_order_by": { "elo": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "observed_at": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "previous_rank": [ - 2781 + 2829 ], "skill_level": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -61222,7 +62152,7 @@ export default { }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -61234,13 +62164,13 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "observed_at": [ - 4324 + 4376 ], "previous_rank": [ 38 @@ -61274,16 +62204,16 @@ export default { }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 2781 + 2829 ], "previous_rank": [ - 2781 + 2829 ], "skill_level": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -61308,16 +62238,16 @@ export default { }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 2781 + 2829 ], "previous_rank": [ - 2781 + 2829 ], "skill_level": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -61342,16 +62272,16 @@ export default { }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 2781 + 2829 ], "previous_rank": [ - 2781 + 2829 ], "skill_level": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -61359,7 +62289,7 @@ export default { }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 3080 + 3128 ], "ordering": [ 236 @@ -61373,13 +62303,13 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "observed_at": [ - 4324 + 4376 ], "previous_rank": [ 38 @@ -61413,16 +62343,16 @@ export default { }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 2781 + 2829 ], "previous_rank": [ - 2781 + 2829 ], "skill_level": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -61431,13 +62361,13 @@ export default { "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 3061 + 3109 ], "_set": [ - 3072 + 3120 ], "where": [ - 3059 + 3107 ], "__typename": [ 78 @@ -61462,16 +62392,16 @@ export default { }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 2781 + 2829 ], "previous_rank": [ - 2781 + 2829 ], "skill_level": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -61496,16 +62426,16 @@ export default { }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 2781 + 2829 ], "previous_rank": [ - 2781 + 2829 ], "skill_level": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -61530,16 +62460,16 @@ export default { }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 2781 + 2829 ], "previous_rank": [ - 2781 + 2829 ], "skill_level": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -61553,25 +62483,25 @@ export default { 180 ], "blinded": [ - 3739 + 3787 ], "deleted_at": [ - 4324 + 4376 ], "duration": [ - 2779 + 2827 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 @@ -61580,10 +62510,10 @@ export default { 3 ], "thrown_by": [ - 3739 + 3787 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -61591,10 +62521,10 @@ export default { }, "player_flashes_aggregate": { "aggregate": [ - 3097 + 3145 ], "nodes": [ - 3091 + 3139 ], "__typename": [ 78 @@ -61602,13 +62532,13 @@ export default { }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 3094 + 3142 ], "bool_or": [ - 3095 + 3143 ], "count": [ - 3096 + 3144 ], "__typename": [ 78 @@ -61616,13 +62546,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 3115 + 3163 ], "distinct": [ 3 ], "filter": [ - 3102 + 3150 ], "predicate": [ 4 @@ -61633,13 +62563,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 3116 + 3164 ], "distinct": [ 3 ], "filter": [ - 3102 + 3150 ], "predicate": [ 4 @@ -61650,13 +62580,13 @@ export default { }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 3114 + 3162 ], "distinct": [ 3 ], "filter": [ - 3102 + 3150 ], "predicate": [ 39 @@ -61667,13 +62597,13 @@ export default { }, "player_flashes_aggregate_fields": { "avg": [ - 3100 + 3148 ], "count": [ 38, { "columns": [ - 3114, + 3162, "[player_flashes_select_column!]" ], "distinct": [ @@ -61682,31 +62612,31 @@ export default { } ], "max": [ - 3106 + 3154 ], "min": [ - 3108 + 3156 ], "stddev": [ - 3118 + 3166 ], "stddev_pop": [ - 3120 + 3168 ], "stddev_samp": [ - 3122 + 3170 ], "sum": [ - 3126 + 3174 ], "var_pop": [ - 3130 + 3178 ], "var_samp": [ - 3132 + 3180 ], "variance": [ - 3134 + 3182 ], "__typename": [ 78 @@ -61714,37 +62644,37 @@ export default { }, "player_flashes_aggregate_order_by": { "avg": [ - 3101 + 3149 ], "count": [ - 2781 + 2829 ], "max": [ - 3107 + 3155 ], "min": [ - 3109 + 3157 ], "stddev": [ - 3119 + 3167 ], "stddev_pop": [ - 3121 + 3169 ], "stddev_samp": [ - 3123 + 3171 ], "sum": [ - 3127 + 3175 ], "var_pop": [ - 3131 + 3179 ], "var_samp": [ - 3133 + 3181 ], "variance": [ - 3135 + 3183 ], "__typename": [ 78 @@ -61752,10 +62682,10 @@ export default { }, "player_flashes_arr_rel_insert_input": { "data": [ - 3105 + 3153 ], "on_conflict": [ - 3111 + 3159 ], "__typename": [ 78 @@ -61780,16 +62710,16 @@ export default { }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "duration": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -61797,13 +62727,13 @@ export default { }, "player_flashes_bool_exp": { "_and": [ - 3102 + 3150 ], "_not": [ - 3102 + 3150 ], "_or": [ - 3102 + 3150 ], "attacked_steam_id": [ 182 @@ -61812,25 +62742,25 @@ export default { 182 ], "blinded": [ - 3743 + 3791 ], "deleted_at": [ - 4325 + 4377 ], "duration": [ - 2780 + 2828 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "round": [ 39 @@ -61839,10 +62769,10 @@ export default { 4 ], "thrown_by": [ - 3743 + 3791 ], "time": [ - 4325 + 4377 ], "__typename": [ 78 @@ -61857,7 +62787,7 @@ export default { 180 ], "duration": [ - 2779 + 2827 ], "round": [ 38 @@ -61874,25 +62804,25 @@ export default { 180 ], "blinded": [ - 3750 + 3798 ], "deleted_at": [ - 4324 + 4376 ], "duration": [ - 2779 + 2827 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2452 + 2500 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 @@ -61901,10 +62831,10 @@ export default { 3 ], "thrown_by": [ - 3750 + 3798 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -61918,22 +62848,22 @@ export default { 180 ], "deleted_at": [ - 4324 + 4376 ], "duration": [ - 2779 + 2827 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -61941,28 +62871,28 @@ export default { }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "duration": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "__typename": [ 78 @@ -61976,22 +62906,22 @@ export default { 180 ], "deleted_at": [ - 4324 + 4376 ], "duration": [ - 2779 + 2827 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -61999,28 +62929,28 @@ export default { }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "duration": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "__typename": [ 78 @@ -62031,7 +62961,7 @@ export default { 38 ], "returning": [ - 3091 + 3139 ], "__typename": [ 78 @@ -62039,13 +62969,13 @@ export default { }, "player_flashes_on_conflict": { "constraint": [ - 3103 + 3151 ], "update_columns": [ - 3128 + 3176 ], "where": [ - 3102 + 3150 ], "__typename": [ 78 @@ -62053,43 +62983,43 @@ export default { }, "player_flashes_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "blinded": [ - 3752 + 3800 ], "deleted_at": [ - 2781 + 2829 ], "duration": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "team_flash": [ - 2781 + 2829 ], "thrown_by": [ - 3752 + 3800 ], "time": [ - 2781 + 2829 ], "__typename": [ 78 @@ -62103,10 +63033,10 @@ export default { 180 ], "match_map_id": [ - 4762 + 4921 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -62123,16 +63053,16 @@ export default { 180 ], "deleted_at": [ - 4324 + 4376 ], "duration": [ - 2779 + 2827 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 @@ -62141,7 +63071,7 @@ export default { 3 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -62166,16 +63096,16 @@ export default { }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "duration": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -62200,16 +63130,16 @@ export default { }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "duration": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -62234,16 +63164,16 @@ export default { }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "duration": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -62251,7 +63181,7 @@ export default { }, "player_flashes_stream_cursor_input": { "initial_value": [ - 3125 + 3173 ], "ordering": [ 236 @@ -62268,16 +63198,16 @@ export default { 180 ], "deleted_at": [ - 4324 + 4376 ], "duration": [ - 2779 + 2827 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 @@ -62286,7 +63216,7 @@ export default { 3 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -62300,7 +63230,7 @@ export default { 180 ], "duration": [ - 2779 + 2827 ], "round": [ 38 @@ -62311,16 +63241,16 @@ export default { }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "duration": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -62329,13 +63259,13 @@ export default { "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 3104 + 3152 ], "_set": [ - 3117 + 3165 ], "where": [ - 3102 + 3150 ], "__typename": [ 78 @@ -62360,16 +63290,16 @@ export default { }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "duration": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -62394,16 +63324,16 @@ export default { }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "duration": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -62428,16 +63358,16 @@ export default { }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "duration": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -62454,7 +63384,7 @@ export default { 78 ], "attacked_player": [ - 3739 + 3787 ], "attacked_steam_id": [ 180 @@ -62478,7 +63408,7 @@ export default { 3 ], "deleted_at": [ - 4324 + 4376 ], "headshot": [ 3 @@ -62493,22 +63423,22 @@ export default { 3 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "no_scope": [ 3 ], "player": [ - 3739 + 3787 ], "round": [ 38 @@ -62523,7 +63453,7 @@ export default { 3 ], "time": [ - 4324 + 4376 ], "with": [ 78 @@ -62534,10 +63464,10 @@ export default { }, "player_kills_aggregate": { "aggregate": [ - 3142 + 3190 ], "nodes": [ - 3136 + 3184 ], "__typename": [ 78 @@ -62545,13 +63475,13 @@ export default { }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 3139 + 3187 ], "bool_or": [ - 3140 + 3188 ], "count": [ - 3141 + 3189 ], "__typename": [ 78 @@ -62559,13 +63489,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 3201 + 3249 ], "distinct": [ 3 ], "filter": [ - 3147 + 3195 ], "predicate": [ 4 @@ -62576,13 +63506,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 3202 + 3250 ], "distinct": [ 3 ], "filter": [ - 3147 + 3195 ], "predicate": [ 4 @@ -62593,13 +63523,13 @@ export default { }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 3200 + 3248 ], "distinct": [ 3 ], "filter": [ - 3147 + 3195 ], "predicate": [ 39 @@ -62610,13 +63540,13 @@ export default { }, "player_kills_aggregate_fields": { "avg": [ - 3145 + 3193 ], "count": [ 38, { "columns": [ - 3200, + 3248, "[player_kills_select_column!]" ], "distinct": [ @@ -62625,31 +63555,31 @@ export default { } ], "max": [ - 3192 + 3240 ], "min": [ - 3194 + 3242 ], "stddev": [ - 3204 + 3252 ], "stddev_pop": [ - 3206 + 3254 ], "stddev_samp": [ - 3208 + 3256 ], "sum": [ - 3212 + 3260 ], "var_pop": [ - 3216 + 3264 ], "var_samp": [ - 3218 + 3266 ], "variance": [ - 3220 + 3268 ], "__typename": [ 78 @@ -62657,37 +63587,37 @@ export default { }, "player_kills_aggregate_order_by": { "avg": [ - 3146 + 3194 ], "count": [ - 2781 + 2829 ], "max": [ - 3193 + 3241 ], "min": [ - 3195 + 3243 ], "stddev": [ - 3205 + 3253 ], "stddev_pop": [ - 3207 + 3255 ], "stddev_samp": [ - 3209 + 3257 ], "sum": [ - 3213 + 3261 ], "var_pop": [ - 3217 + 3265 ], "var_samp": [ - 3219 + 3267 ], "variance": [ - 3221 + 3269 ], "__typename": [ 78 @@ -62695,10 +63625,10 @@ export default { }, "player_kills_arr_rel_insert_input": { "data": [ - 3191 + 3239 ], "on_conflict": [ - 3197 + 3245 ], "__typename": [ 78 @@ -62720,13 +63650,13 @@ export default { }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -62734,13 +63664,13 @@ export default { }, "player_kills_bool_exp": { "_and": [ - 3147 + 3195 ], "_not": [ - 3147 + 3195 ], "_or": [ - 3147 + 3195 ], "assisted": [ 4 @@ -62752,7 +63682,7 @@ export default { 80 ], "attacked_player": [ - 3743 + 3791 ], "attacked_steam_id": [ 182 @@ -62776,7 +63706,7 @@ export default { 4 ], "deleted_at": [ - 4325 + 4377 ], "headshot": [ 4 @@ -62791,22 +63721,22 @@ export default { 4 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "no_scope": [ 4 ], "player": [ - 3743 + 3791 ], "round": [ 39 @@ -62821,7 +63751,7 @@ export default { 4 ], "time": [ - 4325 + 4377 ], "with": [ 80 @@ -62835,7 +63765,7 @@ export default { 180 ], "player": [ - 3739 + 3787 ], "player_steam_id": [ 180 @@ -62849,10 +63779,10 @@ export default { }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 3152 + 3200 ], "nodes": [ - 3148 + 3196 ], "__typename": [ 78 @@ -62860,7 +63790,7 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 3151 + 3199 ], "__typename": [ 78 @@ -62868,13 +63798,13 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 3169 + 3217 ], "distinct": [ 3 ], "filter": [ - 3157 + 3205 ], "predicate": [ 39 @@ -62885,13 +63815,13 @@ export default { }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 3155 + 3203 ], "count": [ 38, { "columns": [ - 3169, + 3217, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -62900,31 +63830,31 @@ export default { } ], "max": [ - 3161 + 3209 ], "min": [ - 3163 + 3211 ], "stddev": [ - 3171 + 3219 ], "stddev_pop": [ - 3173 + 3221 ], "stddev_samp": [ - 3175 + 3223 ], "sum": [ - 3179 + 3227 ], "var_pop": [ - 3183 + 3231 ], "var_samp": [ - 3185 + 3233 ], "variance": [ - 3187 + 3235 ], "__typename": [ 78 @@ -62932,37 +63862,37 @@ export default { }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 3156 + 3204 ], "count": [ - 2781 + 2829 ], "max": [ - 3162 + 3210 ], "min": [ - 3164 + 3212 ], "stddev": [ - 3172 + 3220 ], "stddev_pop": [ - 3174 + 3222 ], "stddev_samp": [ - 3176 + 3224 ], "sum": [ - 3180 + 3228 ], "var_pop": [ - 3184 + 3232 ], "var_samp": [ - 3186 + 3234 ], "variance": [ - 3188 + 3236 ], "__typename": [ 78 @@ -62970,10 +63900,10 @@ export default { }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 3160 + 3208 ], "on_conflict": [ - 3166 + 3214 ], "__typename": [ 78 @@ -62992,10 +63922,10 @@ export default { }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63003,19 +63933,19 @@ export default { }, "player_kills_by_weapon_bool_exp": { "_and": [ - 3157 + 3205 ], "_not": [ - 3157 + 3205 ], "_or": [ - 3157 + 3205 ], "kill_count": [ 182 ], "player": [ - 3743 + 3791 ], "player_steam_id": [ 182 @@ -63044,7 +63974,7 @@ export default { 180 ], "player": [ - 3750 + 3798 ], "player_steam_id": [ 180 @@ -63072,13 +64002,13 @@ export default { }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "with": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63100,13 +64030,13 @@ export default { }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "with": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63117,7 +64047,7 @@ export default { 38 ], "returning": [ - 3148 + 3196 ], "__typename": [ 78 @@ -63125,13 +64055,13 @@ export default { }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 3158 + 3206 ], "update_columns": [ - 3181 + 3229 ], "where": [ - 3157 + 3205 ], "__typename": [ 78 @@ -63139,16 +64069,16 @@ export default { }, "player_kills_by_weapon_order_by": { "kill_count": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "player_steam_id": [ - 2781 + 2829 ], "with": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63193,10 +64123,10 @@ export default { }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63215,10 +64145,10 @@ export default { }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63237,10 +64167,10 @@ export default { }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63248,7 +64178,7 @@ export default { }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 3178 + 3226 ], "ordering": [ 236 @@ -63284,10 +64214,10 @@ export default { }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63296,13 +64226,13 @@ export default { "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 3159 + 3207 ], "_set": [ - 3170 + 3218 ], "where": [ - 3157 + 3205 ], "__typename": [ 78 @@ -63321,10 +64251,10 @@ export default { }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63343,10 +64273,10 @@ export default { }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63365,10 +64295,10 @@ export default { }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63400,7 +64330,7 @@ export default { 78 ], "attacked_player": [ - 3750 + 3798 ], "attacked_steam_id": [ 180 @@ -63424,7 +64354,7 @@ export default { 3 ], "deleted_at": [ - 4324 + 4376 ], "headshot": [ 3 @@ -63436,22 +64366,22 @@ export default { 3 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2452 + 2500 ], "match_map_id": [ - 4762 + 4921 ], "no_scope": [ 3 ], "player": [ - 3750 + 3798 ], "round": [ 38 @@ -63463,7 +64393,7 @@ export default { 3 ], "time": [ - 4324 + 4376 ], "with": [ 78 @@ -63498,22 +64428,22 @@ export default { 78 ], "deleted_at": [ - 4324 + 4376 ], "hitgroup": [ 78 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "with": [ 78 @@ -63524,49 +64454,49 @@ export default { }, "player_kills_max_order_by": { "attacked_location": [ - 2781 + 2829 ], "attacked_location_coordinates": [ - 2781 + 2829 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacked_team": [ - 2781 + 2829 ], "attacker_location": [ - 2781 + 2829 ], "attacker_location_coordinates": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "attacker_team": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "hitgroup": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "with": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63598,22 +64528,22 @@ export default { 78 ], "deleted_at": [ - 4324 + 4376 ], "hitgroup": [ 78 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "with": [ 78 @@ -63624,49 +64554,49 @@ export default { }, "player_kills_min_order_by": { "attacked_location": [ - 2781 + 2829 ], "attacked_location_coordinates": [ - 2781 + 2829 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacked_team": [ - 2781 + 2829 ], "attacker_location": [ - 2781 + 2829 ], "attacker_location_coordinates": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "attacker_team": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "hitgroup": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "with": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63677,7 +64607,7 @@ export default { 38 ], "returning": [ - 3136 + 3184 ], "__typename": [ 78 @@ -63685,13 +64615,13 @@ export default { }, "player_kills_on_conflict": { "constraint": [ - 3189 + 3237 ], "update_columns": [ - 3214 + 3262 ], "where": [ - 3147 + 3195 ], "__typename": [ 78 @@ -63699,88 +64629,88 @@ export default { }, "player_kills_order_by": { "assisted": [ - 2781 + 2829 ], "attacked_location": [ - 2781 + 2829 ], "attacked_location_coordinates": [ - 2781 + 2829 ], "attacked_player": [ - 3752 + 3800 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacked_team": [ - 2781 + 2829 ], "attacker_location": [ - 2781 + 2829 ], "attacker_location_coordinates": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "attacker_team": [ - 2781 + 2829 ], "blinded": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "headshot": [ - 2781 + 2829 ], "hitgroup": [ - 2781 + 2829 ], "in_air": [ - 2781 + 2829 ], "is_suicide": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "no_scope": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "round": [ - 2781 + 2829 ], "team_kill": [ - 2781 + 2829 ], "thru_smoke": [ - 2781 + 2829 ], "thru_wall": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "with": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63794,10 +64724,10 @@ export default { 180 ], "match_map_id": [ - 4762 + 4921 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -63838,7 +64768,7 @@ export default { 3 ], "deleted_at": [ - 4324 + 4376 ], "headshot": [ 3 @@ -63850,10 +64780,10 @@ export default { 3 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "no_scope": [ 3 @@ -63868,7 +64798,7 @@ export default { 3 ], "time": [ - 4324 + 4376 ], "with": [ 78 @@ -63893,13 +64823,13 @@ export default { }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63921,13 +64851,13 @@ export default { }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63949,13 +64879,13 @@ export default { }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -63963,7 +64893,7 @@ export default { }, "player_kills_stream_cursor_input": { "initial_value": [ - 3211 + 3259 ], "ordering": [ 236 @@ -64004,7 +64934,7 @@ export default { 3 ], "deleted_at": [ - 4324 + 4376 ], "headshot": [ 3 @@ -64016,10 +64946,10 @@ export default { 3 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "no_scope": [ 3 @@ -64034,7 +64964,7 @@ export default { 3 ], "time": [ - 4324 + 4376 ], "with": [ 78 @@ -64059,13 +64989,13 @@ export default { }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -64074,13 +65004,13 @@ export default { "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 3190 + 3238 ], "_set": [ - 3203 + 3251 ], "where": [ - 3147 + 3195 ], "__typename": [ 78 @@ -64102,13 +65032,13 @@ export default { }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -64130,13 +65060,13 @@ export default { }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -64158,13 +65088,13 @@ export default { }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -64181,7 +65111,7 @@ export default { 38 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -64189,10 +65119,10 @@ export default { }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 3224 + 3272 ], "nodes": [ - 3222 + 3270 ], "__typename": [ 78 @@ -64200,13 +65130,13 @@ export default { }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 3225 + 3273 ], "count": [ 38, { "columns": [ - 3233, + 3281, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -64215,31 +65145,31 @@ export default { } ], "max": [ - 3229 + 3277 ], "min": [ - 3230 + 3278 ], "stddev": [ - 3235 + 3283 ], "stddev_pop": [ - 3236 + 3284 ], "stddev_samp": [ - 3237 + 3285 ], "sum": [ - 3240 + 3288 ], "var_pop": [ - 3242 + 3290 ], "var_samp": [ - 3243 + 3291 ], "variance": [ - 3244 + 3292 ], "__typename": [ 78 @@ -64261,13 +65191,13 @@ export default { }, "player_leaderboard_rank_bool_exp": { "_and": [ - 3226 + 3274 ], "_not": [ - 3226 + 3274 ], "_or": [ - 3226 + 3274 ], "player_steam_id": [ 80 @@ -64279,7 +65209,7 @@ export default { 39 ], "value": [ - 1500 + 1548 ], "__typename": [ 78 @@ -64293,7 +65223,7 @@ export default { 38 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -64310,7 +65240,7 @@ export default { 38 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -64327,7 +65257,7 @@ export default { 38 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -64344,7 +65274,7 @@ export default { 38 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -64355,7 +65285,7 @@ export default { 38 ], "returning": [ - 3222 + 3270 ], "__typename": [ 78 @@ -64363,16 +65293,16 @@ export default { }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "total": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -64390,7 +65320,7 @@ export default { 38 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -64440,7 +65370,7 @@ export default { }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 3239 + 3287 ], "ordering": [ 236 @@ -64460,7 +65390,7 @@ export default { 38 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -64474,7 +65404,7 @@ export default { 38 ], "value": [ - 1499 + 1547 ], "__typename": [ 78 @@ -64482,13 +65412,13 @@ export default { }, "player_leaderboard_rank_updates": { "_inc": [ - 3227 + 3275 ], "_set": [ - 3234 + 3282 ], "where": [ - 3226 + 3274 ], "__typename": [ 78 @@ -64556,7 +65486,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "damage": [ 38 @@ -64598,7 +65528,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2827 ], "flashes_thrown": [ 38 @@ -64652,16 +65582,16 @@ export default { 38 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "molotov_damage": [ 38 @@ -64676,7 +65606,7 @@ export default { 38 ], "player": [ - 3739 + 3787 ], "rounds_ct": [ 38 @@ -64724,7 +65654,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -64754,7 +65684,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4376 ], "util_on_death_count": [ 38 @@ -64774,10 +65704,10 @@ export default { }, "player_match_map_stats_aggregate": { "aggregate": [ - 3249 + 3297 ], "nodes": [ - 3245 + 3293 ], "__typename": [ 78 @@ -64785,7 +65715,7 @@ export default { }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 3248 + 3296 ], "__typename": [ 78 @@ -64793,13 +65723,13 @@ export default { }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 3266 + 3314 ], "distinct": [ 3 ], "filter": [ - 3254 + 3302 ], "predicate": [ 39 @@ -64810,13 +65740,13 @@ export default { }, "player_match_map_stats_aggregate_fields": { "avg": [ - 3252 + 3300 ], "count": [ 38, { "columns": [ - 3266, + 3314, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -64825,31 +65755,31 @@ export default { } ], "max": [ - 3258 + 3306 ], "min": [ - 3260 + 3308 ], "stddev": [ - 3268 + 3316 ], "stddev_pop": [ - 3270 + 3318 ], "stddev_samp": [ - 3272 + 3320 ], "sum": [ - 3276 + 3324 ], "var_pop": [ - 3280 + 3328 ], "var_samp": [ - 3282 + 3330 ], "variance": [ - 3284 + 3332 ], "__typename": [ 78 @@ -64857,37 +65787,37 @@ export default { }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 3253 + 3301 ], "count": [ - 2781 + 2829 ], "max": [ - 3259 + 3307 ], "min": [ - 3261 + 3309 ], "stddev": [ - 3269 + 3317 ], "stddev_pop": [ - 3271 + 3319 ], "stddev_samp": [ - 3273 + 3321 ], "sum": [ - 3277 + 3325 ], "var_pop": [ - 3281 + 3329 ], "var_samp": [ - 3283 + 3331 ], "variance": [ - 3285 + 3333 ], "__typename": [ 78 @@ -64895,10 +65825,10 @@ export default { }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 3257 + 3305 ], "on_conflict": [ - 3263 + 3311 ], "__typename": [ 78 @@ -65124,217 +66054,217 @@ export default { }, "player_match_map_stats_avg_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "crosshair_angle_count": [ - 2781 + 2829 ], "crosshair_angle_sum_deg": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flash_duration_count": [ - 2781 + 2829 ], "flash_duration_sum": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kast_rounds": [ - 2781 + 2829 ], "kast_total_rounds": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "time_to_damage_count": [ - 2781 + 2829 ], "time_to_damage_sum_s": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "util_on_death_count": [ - 2781 + 2829 ], "util_on_death_sum": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -65342,13 +66272,13 @@ export default { }, "player_match_map_stats_bool_exp": { "_and": [ - 3254 + 3302 ], "_not": [ - 3254 + 3302 ], "_or": [ - 3254 + 3302 ], "assists": [ 39 @@ -65369,7 +66299,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2780 + 2828 ], "damage": [ 39 @@ -65411,7 +66341,7 @@ export default { 39 ], "flash_duration_sum": [ - 2780 + 2828 ], "flashes_thrown": [ 39 @@ -65465,16 +66395,16 @@ export default { 39 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "molotov_damage": [ 39 @@ -65489,7 +66419,7 @@ export default { 39 ], "player": [ - 3743 + 3791 ], "rounds_ct": [ 39 @@ -65537,7 +66467,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2780 + 2828 ], "total_engagement_frames": [ 39 @@ -65567,7 +66497,7 @@ export default { 39 ], "updated_at": [ - 4325 + 4377 ], "util_on_death_count": [ 39 @@ -65606,7 +66536,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "damage": [ 38 @@ -65648,7 +66578,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2827 ], "flashes_thrown": [ 38 @@ -65759,7 +66689,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -65824,7 +66754,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "damage": [ 38 @@ -65866,7 +66796,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2827 ], "flashes_thrown": [ 38 @@ -65920,16 +66850,16 @@ export default { 38 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2452 + 2500 ], "match_map_id": [ - 4762 + 4921 ], "molotov_damage": [ 38 @@ -65944,7 +66874,7 @@ export default { 38 ], "player": [ - 3750 + 3798 ], "rounds_ct": [ 38 @@ -65992,7 +66922,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -66022,7 +66952,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4376 ], "util_on_death_count": [ 38 @@ -66060,7 +66990,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "damage": [ 38 @@ -66102,7 +67032,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2827 ], "flashes_thrown": [ 38 @@ -66156,10 +67086,10 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "molotov_damage": [ 38 @@ -66219,7 +67149,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -66249,7 +67179,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4376 ], "util_on_death_count": [ 38 @@ -66269,226 +67199,226 @@ export default { }, "player_match_map_stats_max_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "crosshair_angle_count": [ - 2781 + 2829 ], "crosshair_angle_sum_deg": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flash_duration_count": [ - 2781 + 2829 ], "flash_duration_sum": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kast_rounds": [ - 2781 + 2829 ], "kast_total_rounds": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "time_to_damage_count": [ - 2781 + 2829 ], "time_to_damage_sum_s": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "util_on_death_count": [ - 2781 + 2829 ], "util_on_death_sum": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -66514,7 +67444,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "damage": [ 38 @@ -66556,7 +67486,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2827 ], "flashes_thrown": [ 38 @@ -66610,10 +67540,10 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "molotov_damage": [ 38 @@ -66673,7 +67603,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -66703,7 +67633,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4376 ], "util_on_death_count": [ 38 @@ -66723,226 +67653,226 @@ export default { }, "player_match_map_stats_min_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "crosshair_angle_count": [ - 2781 + 2829 ], "crosshair_angle_sum_deg": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flash_duration_count": [ - 2781 + 2829 ], "flash_duration_sum": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kast_rounds": [ - 2781 + 2829 ], "kast_total_rounds": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "time_to_damage_count": [ - 2781 + 2829 ], "time_to_damage_sum_s": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "util_on_death_count": [ - 2781 + 2829 ], "util_on_death_sum": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -66953,7 +67883,7 @@ export default { 38 ], "returning": [ - 3245 + 3293 ], "__typename": [ 78 @@ -66961,13 +67891,13 @@ export default { }, "player_match_map_stats_on_conflict": { "constraint": [ - 3255 + 3303 ], "update_columns": [ - 3278 + 3326 ], "where": [ - 3254 + 3302 ], "__typename": [ 78 @@ -66975,235 +67905,235 @@ export default { }, "player_match_map_stats_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "crosshair_angle_count": [ - 2781 + 2829 ], "crosshair_angle_sum_deg": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flash_duration_count": [ - 2781 + 2829 ], "flash_duration_sum": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kast_rounds": [ - 2781 + 2829 ], "kast_total_rounds": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "time_to_damage_count": [ - 2781 + 2829 ], "time_to_damage_sum_s": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "util_on_death_count": [ - 2781 + 2829 ], "util_on_death_sum": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -67211,7 +68141,7 @@ export default { }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 4762 + 4921 ], "steam_id": [ 180 @@ -67241,7 +68171,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "damage": [ 38 @@ -67283,7 +68213,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2827 ], "flashes_thrown": [ 38 @@ -67337,10 +68267,10 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "molotov_damage": [ 38 @@ -67400,7 +68330,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -67430,7 +68360,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4376 ], "util_on_death_count": [ 38 @@ -67668,217 +68598,217 @@ export default { }, "player_match_map_stats_stddev_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "crosshair_angle_count": [ - 2781 + 2829 ], "crosshair_angle_sum_deg": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flash_duration_count": [ - 2781 + 2829 ], "flash_duration_sum": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kast_rounds": [ - 2781 + 2829 ], "kast_total_rounds": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "time_to_damage_count": [ - 2781 + 2829 ], "time_to_damage_sum_s": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "util_on_death_count": [ - 2781 + 2829 ], "util_on_death_sum": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -68104,217 +69034,217 @@ export default { }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "crosshair_angle_count": [ - 2781 + 2829 ], "crosshair_angle_sum_deg": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flash_duration_count": [ - 2781 + 2829 ], "flash_duration_sum": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kast_rounds": [ - 2781 + 2829 ], "kast_total_rounds": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "time_to_damage_count": [ - 2781 + 2829 ], "time_to_damage_sum_s": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "util_on_death_count": [ - 2781 + 2829 ], "util_on_death_sum": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -68540,217 +69470,217 @@ export default { }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "crosshair_angle_count": [ - 2781 + 2829 ], "crosshair_angle_sum_deg": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flash_duration_count": [ - 2781 + 2829 ], "flash_duration_sum": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kast_rounds": [ - 2781 + 2829 ], "kast_total_rounds": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "time_to_damage_count": [ - 2781 + 2829 ], "time_to_damage_sum_s": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "util_on_death_count": [ - 2781 + 2829 ], "util_on_death_sum": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -68758,7 +69688,7 @@ export default { }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 3275 + 3323 ], "ordering": [ 236 @@ -68787,7 +69717,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "damage": [ 38 @@ -68829,7 +69759,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2827 ], "flashes_thrown": [ 38 @@ -68883,10 +69813,10 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "molotov_damage": [ 38 @@ -68946,7 +69876,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -68976,7 +69906,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4376 ], "util_on_death_count": [ 38 @@ -69014,7 +69944,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2827 ], "damage": [ 38 @@ -69056,7 +69986,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2827 ], "flashes_thrown": [ 38 @@ -69167,7 +70097,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2827 ], "total_engagement_frames": [ 38 @@ -69214,217 +70144,217 @@ export default { }, "player_match_map_stats_sum_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "crosshair_angle_count": [ - 2781 + 2829 ], "crosshair_angle_sum_deg": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flash_duration_count": [ - 2781 + 2829 ], "flash_duration_sum": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kast_rounds": [ - 2781 + 2829 ], "kast_total_rounds": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "time_to_damage_count": [ - 2781 + 2829 ], "time_to_damage_sum_s": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "util_on_death_count": [ - 2781 + 2829 ], "util_on_death_sum": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -69433,13 +70363,13 @@ export default { "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 3256 + 3304 ], "_set": [ - 3267 + 3315 ], "where": [ - 3254 + 3302 ], "__typename": [ 78 @@ -69665,217 +70595,217 @@ export default { }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "crosshair_angle_count": [ - 2781 + 2829 ], "crosshair_angle_sum_deg": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flash_duration_count": [ - 2781 + 2829 ], "flash_duration_sum": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kast_rounds": [ - 2781 + 2829 ], "kast_total_rounds": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "time_to_damage_count": [ - 2781 + 2829 ], "time_to_damage_sum_s": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "util_on_death_count": [ - 2781 + 2829 ], "util_on_death_sum": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -70101,217 +71031,217 @@ export default { }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "crosshair_angle_count": [ - 2781 + 2829 ], "crosshair_angle_sum_deg": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flash_duration_count": [ - 2781 + 2829 ], "flash_duration_sum": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kast_rounds": [ - 2781 + 2829 ], "kast_total_rounds": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "time_to_damage_count": [ - 2781 + 2829 ], "time_to_damage_sum_s": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "util_on_death_count": [ - 2781 + 2829 ], "util_on_death_sum": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -70537,217 +71467,217 @@ export default { }, "player_match_map_stats_variance_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "crosshair_angle_count": [ - 2781 + 2829 ], "crosshair_angle_sum_deg": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flash_duration_count": [ - 2781 + 2829 ], "flash_duration_sum": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kast_rounds": [ - 2781 + 2829 ], "kast_total_rounds": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "time_to_damage_count": [ - 2781 + 2829 ], "time_to_damage_sum_s": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "util_on_death_count": [ - 2781 + 2829 ], "util_on_death_sum": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -70755,40 +71685,40 @@ export default { }, "player_match_performance_v": { "accuracy": [ - 2779 + 2827 ], "accuracy_spotted": [ - 2779 + 2827 ], "aim_rating": [ - 1499 + 1547 ], "counter_strafe_pct": [ - 2779 + 2827 ], "enemy_blind_pr": [ - 2779 + 2827 ], "flash_assists_pr": [ - 2779 + 2827 ], "hs_pct": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "match_id": [ - 4762 + 4921 ], "overall_rating": [ - 1499 + 1547 ], "played_at": [ - 4324 + 4376 ], "positioning_rating": [ - 1499 + 1547 ], "rounds": [ 38 @@ -70800,16 +71730,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2827 ], "traded_death_pct": [ - 2779 + 2827 ], "util_efficiency": [ - 2779 + 2827 ], "utility_rating": [ - 1499 + 1547 ], "__typename": [ 78 @@ -70817,10 +71747,10 @@ export default { }, "player_match_performance_v_aggregate": { "aggregate": [ - 3288 + 3336 ], "nodes": [ - 3286 + 3334 ], "__typename": [ 78 @@ -70828,13 +71758,13 @@ export default { }, "player_match_performance_v_aggregate_fields": { "avg": [ - 3289 + 3337 ], "count": [ 38, { "columns": [ - 3294, + 3342, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -70843,31 +71773,31 @@ export default { } ], "max": [ - 3291 + 3339 ], "min": [ - 3292 + 3340 ], "stddev": [ - 3295 + 3343 ], "stddev_pop": [ - 3296 + 3344 ], "stddev_samp": [ - 3297 + 3345 ], "sum": [ - 3300 + 3348 ], "var_pop": [ - 3301 + 3349 ], "var_samp": [ - 3302 + 3350 ], "variance": [ - 3303 + 3351 ], "__typename": [ 78 @@ -70928,49 +71858,49 @@ export default { }, "player_match_performance_v_bool_exp": { "_and": [ - 3290 + 3338 ], "_not": [ - 3290 + 3338 ], "_or": [ - 3290 + 3338 ], "accuracy": [ - 2780 + 2828 ], "accuracy_spotted": [ - 2780 + 2828 ], "aim_rating": [ - 1500 + 1548 ], "counter_strafe_pct": [ - 2780 + 2828 ], "enemy_blind_pr": [ - 2780 + 2828 ], "flash_assists_pr": [ - 2780 + 2828 ], "hs_pct": [ - 2780 + 2828 ], "kast_pct": [ - 2780 + 2828 ], "match_id": [ - 4764 + 4923 ], "overall_rating": [ - 1500 + 1548 ], "played_at": [ - 4325 + 4377 ], "positioning_rating": [ - 1500 + 1548 ], "rounds": [ 39 @@ -70982,16 +71912,16 @@ export default { 182 ], "survival_pct": [ - 2780 + 2828 ], "traded_death_pct": [ - 2780 + 2828 ], "util_efficiency": [ - 2780 + 2828 ], "utility_rating": [ - 1500 + 1548 ], "__typename": [ 78 @@ -70999,40 +71929,40 @@ export default { }, "player_match_performance_v_max_fields": { "accuracy": [ - 2779 + 2827 ], "accuracy_spotted": [ - 2779 + 2827 ], "aim_rating": [ - 1499 + 1547 ], "counter_strafe_pct": [ - 2779 + 2827 ], "enemy_blind_pr": [ - 2779 + 2827 ], "flash_assists_pr": [ - 2779 + 2827 ], "hs_pct": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "match_id": [ - 4762 + 4921 ], "overall_rating": [ - 1499 + 1547 ], "played_at": [ - 4324 + 4376 ], "positioning_rating": [ - 1499 + 1547 ], "rounds": [ 38 @@ -71044,16 +71974,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2827 ], "traded_death_pct": [ - 2779 + 2827 ], "util_efficiency": [ - 2779 + 2827 ], "utility_rating": [ - 1499 + 1547 ], "__typename": [ 78 @@ -71061,40 +71991,40 @@ export default { }, "player_match_performance_v_min_fields": { "accuracy": [ - 2779 + 2827 ], "accuracy_spotted": [ - 2779 + 2827 ], "aim_rating": [ - 1499 + 1547 ], "counter_strafe_pct": [ - 2779 + 2827 ], "enemy_blind_pr": [ - 2779 + 2827 ], "flash_assists_pr": [ - 2779 + 2827 ], "hs_pct": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "match_id": [ - 4762 + 4921 ], "overall_rating": [ - 1499 + 1547 ], "played_at": [ - 4324 + 4376 ], "positioning_rating": [ - 1499 + 1547 ], "rounds": [ 38 @@ -71106,16 +72036,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2827 ], "traded_death_pct": [ - 2779 + 2827 ], "util_efficiency": [ - 2779 + 2827 ], "utility_rating": [ - 1499 + 1547 ], "__typename": [ 78 @@ -71123,61 +72053,61 @@ export default { }, "player_match_performance_v_order_by": { "accuracy": [ - 2781 + 2829 ], "accuracy_spotted": [ - 2781 + 2829 ], "aim_rating": [ - 2781 + 2829 ], "counter_strafe_pct": [ - 2781 + 2829 ], "enemy_blind_pr": [ - 2781 + 2829 ], "flash_assists_pr": [ - 2781 + 2829 ], "hs_pct": [ - 2781 + 2829 ], "kast_pct": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "overall_rating": [ - 2781 + 2829 ], "played_at": [ - 2781 + 2829 ], "positioning_rating": [ - 2781 + 2829 ], "rounds": [ - 2781 + 2829 ], "source": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "survival_pct": [ - 2781 + 2829 ], "traded_death_pct": [ - 2781 + 2829 ], "util_efficiency": [ - 2781 + 2829 ], "utility_rating": [ - 2781 + 2829 ], "__typename": [ 78 @@ -71345,7 +72275,7 @@ export default { }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 3299 + 3347 ], "ordering": [ 236 @@ -71356,40 +72286,40 @@ export default { }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 2779 + 2827 ], "accuracy_spotted": [ - 2779 + 2827 ], "aim_rating": [ - 1499 + 1547 ], "counter_strafe_pct": [ - 2779 + 2827 ], "enemy_blind_pr": [ - 2779 + 2827 ], "flash_assists_pr": [ - 2779 + 2827 ], "hs_pct": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "match_id": [ - 4762 + 4921 ], "overall_rating": [ - 1499 + 1547 ], "played_at": [ - 4324 + 4376 ], "positioning_rating": [ - 1499 + 1547 ], "rounds": [ 38 @@ -71401,16 +72331,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2827 ], "traded_death_pct": [ - 2779 + 2827 ], "util_efficiency": [ - 2779 + 2827 ], "utility_rating": [ - 1499 + 1547 ], "__typename": [ 78 @@ -71418,34 +72348,34 @@ export default { }, "player_match_performance_v_sum_fields": { "accuracy": [ - 2779 + 2827 ], "accuracy_spotted": [ - 2779 + 2827 ], "aim_rating": [ - 1499 + 1547 ], "counter_strafe_pct": [ - 2779 + 2827 ], "enemy_blind_pr": [ - 2779 + 2827 ], "flash_assists_pr": [ - 2779 + 2827 ], "hs_pct": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "overall_rating": [ - 1499 + 1547 ], "positioning_rating": [ - 1499 + 1547 ], "rounds": [ 38 @@ -71454,16 +72384,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2827 ], "traded_death_pct": [ - 2779 + 2827 ], "util_efficiency": [ - 2779 + 2827 ], "utility_rating": [ - 1499 + 1547 ], "__typename": [ 78 @@ -71639,13 +72569,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2779 + 2827 ], "avg_flash_duration": [ - 2779 + 2827 ], "avg_time_to_damage_s": [ - 2779 + 2827 ], "counter_strafe_eligible_shots": [ 38 @@ -71735,7 +72665,7 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "molotov_damage": [ 38 @@ -71819,7 +72749,7 @@ export default { 38 ], "utility_on_death": [ - 2779 + 2827 ], "wasted_magazine_shots": [ 38 @@ -71833,10 +72763,10 @@ export default { }, "player_match_stats_v_aggregate": { "aggregate": [ - 3308 + 3356 ], "nodes": [ - 3304 + 3352 ], "__typename": [ 78 @@ -71844,7 +72774,7 @@ export default { }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3307 + 3355 ], "__typename": [ 78 @@ -71852,13 +72782,13 @@ export default { }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3320 + 3368 ], "distinct": [ 3 ], "filter": [ - 3313 + 3361 ], "predicate": [ 39 @@ -71869,13 +72799,13 @@ export default { }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3311 + 3359 ], "count": [ 38, { "columns": [ - 3320, + 3368, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -71884,31 +72814,31 @@ export default { } ], "max": [ - 3315 + 3363 ], "min": [ - 3317 + 3365 ], "stddev": [ - 3321 + 3369 ], "stddev_pop": [ - 3323 + 3371 ], "stddev_samp": [ - 3325 + 3373 ], "sum": [ - 3329 + 3377 ], "var_pop": [ - 3331 + 3379 ], "var_samp": [ - 3333 + 3381 ], "variance": [ - 3335 + 3383 ], "__typename": [ 78 @@ -71916,37 +72846,37 @@ export default { }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3312 + 3360 ], "count": [ - 2781 + 2829 ], "max": [ - 3316 + 3364 ], "min": [ - 3318 + 3366 ], "stddev": [ - 3322 + 3370 ], "stddev_pop": [ - 3324 + 3372 ], "stddev_samp": [ - 3326 + 3374 ], "sum": [ - 3330 + 3378 ], "var_pop": [ - 3332 + 3380 ], "var_samp": [ - 3334 + 3382 ], "variance": [ - 3336 + 3384 ], "__typename": [ 78 @@ -71954,7 +72884,7 @@ export default { }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3314 + 3362 ], "__typename": [ 78 @@ -72162,199 +73092,199 @@ export default { }, "player_match_stats_v_avg_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "avg_crosshair_angle_deg": [ - 2781 + 2829 ], "avg_flash_duration": [ - 2781 + 2829 ], "avg_time_to_damage_s": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "utility_on_death": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -72362,13 +73292,13 @@ export default { }, "player_match_stats_v_bool_exp": { "_and": [ - 3313 + 3361 ], "_not": [ - 3313 + 3361 ], "_or": [ - 3313 + 3361 ], "assists": [ 39 @@ -72380,13 +73310,13 @@ export default { 39 ], "avg_crosshair_angle_deg": [ - 2780 + 2828 ], "avg_flash_duration": [ - 2780 + 2828 ], "avg_time_to_damage_s": [ - 2780 + 2828 ], "counter_strafe_eligible_shots": [ 39 @@ -72476,7 +73406,7 @@ export default { 39 ], "match_id": [ - 4764 + 4923 ], "molotov_damage": [ 39 @@ -72560,7 +73490,7 @@ export default { 39 ], "utility_on_death": [ - 2780 + 2828 ], "wasted_magazine_shots": [ 39 @@ -72583,13 +73513,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2779 + 2827 ], "avg_flash_duration": [ - 2779 + 2827 ], "avg_time_to_damage_s": [ - 2779 + 2827 ], "counter_strafe_eligible_shots": [ 38 @@ -72679,7 +73609,7 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "molotov_damage": [ 38 @@ -72763,7 +73693,7 @@ export default { 38 ], "utility_on_death": [ - 2779 + 2827 ], "wasted_magazine_shots": [ 38 @@ -72786,13 +73716,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2779 + 2827 ], "avg_flash_duration": [ - 2779 + 2827 ], "avg_time_to_damage_s": [ - 2779 + 2827 ], "counter_strafe_eligible_shots": [ 38 @@ -72882,7 +73812,7 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "molotov_damage": [ 38 @@ -72966,7 +73896,7 @@ export default { 38 ], "utility_on_death": [ - 2779 + 2827 ], "wasted_magazine_shots": [ 38 @@ -72980,202 +73910,202 @@ export default { }, "player_match_stats_v_max_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "avg_crosshair_angle_deg": [ - 2781 + 2829 ], "avg_flash_duration": [ - 2781 + 2829 ], "avg_time_to_damage_s": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "utility_on_death": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -73192,13 +74122,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2779 + 2827 ], "avg_flash_duration": [ - 2779 + 2827 ], "avg_time_to_damage_s": [ - 2779 + 2827 ], "counter_strafe_eligible_shots": [ 38 @@ -73288,7 +74218,7 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "molotov_damage": [ 38 @@ -73372,7 +74302,7 @@ export default { 38 ], "utility_on_death": [ - 2779 + 2827 ], "wasted_magazine_shots": [ 38 @@ -73386,202 +74316,202 @@ export default { }, "player_match_stats_v_min_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "avg_crosshair_angle_deg": [ - 2781 + 2829 ], "avg_flash_duration": [ - 2781 + 2829 ], "avg_time_to_damage_s": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "utility_on_death": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -73589,202 +74519,202 @@ export default { }, "player_match_stats_v_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "avg_crosshair_angle_deg": [ - 2781 + 2829 ], "avg_flash_duration": [ - 2781 + 2829 ], "avg_time_to_damage_s": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "utility_on_death": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -73993,199 +74923,199 @@ export default { }, "player_match_stats_v_stddev_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "avg_crosshair_angle_deg": [ - 2781 + 2829 ], "avg_flash_duration": [ - 2781 + 2829 ], "avg_time_to_damage_s": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "utility_on_death": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -74393,199 +75323,199 @@ export default { }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "avg_crosshair_angle_deg": [ - 2781 + 2829 ], "avg_flash_duration": [ - 2781 + 2829 ], "avg_time_to_damage_s": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "utility_on_death": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -74793,199 +75723,199 @@ export default { }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "avg_crosshair_angle_deg": [ - 2781 + 2829 ], "avg_flash_duration": [ - 2781 + 2829 ], "avg_time_to_damage_s": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "utility_on_death": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -74993,7 +75923,7 @@ export default { }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3328 + 3376 ], "ordering": [ 236 @@ -75013,13 +75943,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2779 + 2827 ], "avg_flash_duration": [ - 2779 + 2827 ], "avg_time_to_damage_s": [ - 2779 + 2827 ], "counter_strafe_eligible_shots": [ 38 @@ -75109,7 +76039,7 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "molotov_damage": [ 38 @@ -75193,7 +76123,7 @@ export default { 38 ], "utility_on_death": [ - 2779 + 2827 ], "wasted_magazine_shots": [ 38 @@ -75216,13 +76146,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2779 + 2827 ], "avg_flash_duration": [ - 2779 + 2827 ], "avg_time_to_damage_s": [ - 2779 + 2827 ], "counter_strafe_eligible_shots": [ 38 @@ -75393,7 +76323,7 @@ export default { 38 ], "utility_on_death": [ - 2779 + 2827 ], "wasted_magazine_shots": [ 38 @@ -75407,199 +76337,199 @@ export default { }, "player_match_stats_v_sum_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "avg_crosshair_angle_deg": [ - 2781 + 2829 ], "avg_flash_duration": [ - 2781 + 2829 ], "avg_time_to_damage_s": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "utility_on_death": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -75807,199 +76737,199 @@ export default { }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "avg_crosshair_angle_deg": [ - 2781 + 2829 ], "avg_flash_duration": [ - 2781 + 2829 ], "avg_time_to_damage_s": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "utility_on_death": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -76207,199 +77137,199 @@ export default { }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "avg_crosshair_angle_deg": [ - 2781 + 2829 ], "avg_flash_duration": [ - 2781 + 2829 ], "avg_time_to_damage_s": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "utility_on_death": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -76607,199 +77537,199 @@ export default { }, "player_match_stats_v_variance_order_by": { "assists": [ - 2781 + 2829 ], "assists_ct": [ - 2781 + 2829 ], "assists_t": [ - 2781 + 2829 ], "avg_crosshair_angle_deg": [ - 2781 + 2829 ], "avg_flash_duration": [ - 2781 + 2829 ], "avg_time_to_damage_s": [ - 2781 + 2829 ], "counter_strafe_eligible_shots": [ - 2781 + 2829 ], "counter_strafed_shots": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_ct": [ - 2781 + 2829 ], "damage_t": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "deaths_ct": [ - 2781 + 2829 ], "deaths_t": [ - 2781 + 2829 ], "decoy_throws": [ - 2781 + 2829 ], "enemies_flashed": [ - 2781 + 2829 ], "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "five_kill_rounds": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "flashes_thrown": [ - 2781 + 2829 ], "four_kill_rounds": [ - 2781 + 2829 ], "he_damage": [ - 2781 + 2829 ], "he_team_damage": [ - 2781 + 2829 ], "he_throws": [ - 2781 + 2829 ], "headshot_hits": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_at_spotted": [ - 2781 + 2829 ], "hs_kills": [ - 2781 + 2829 ], "hs_kills_ct": [ - 2781 + 2829 ], "hs_kills_t": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kills_ct": [ - 2781 + 2829 ], "kills_t": [ - 2781 + 2829 ], "knife_kills": [ - 2781 + 2829 ], "molotov_damage": [ - 2781 + 2829 ], "molotov_throws": [ - 2781 + 2829 ], "non_awp_hits": [ - 2781 + 2829 ], "on_target_frames": [ - 2781 + 2829 ], "rounds_ct": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "rounds_t": [ - 2781 + 2829 ], "shots_at_spotted": [ - 2781 + 2829 ], "shots_fired": [ - 2781 + 2829 ], "smoke_throws": [ - 2781 + 2829 ], "spotted_count": [ - 2781 + 2829 ], "spotted_with_damage_count": [ - 2781 + 2829 ], "spray_hits": [ - 2781 + 2829 ], "spray_shots": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_damage": [ - 2781 + 2829 ], "team_flashed": [ - 2781 + 2829 ], "three_kill_rounds": [ - 2781 + 2829 ], "total_engagement_frames": [ - 2781 + 2829 ], "trade_kill_attempts": [ - 2781 + 2829 ], "trade_kill_opportunities": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_attempts": [ - 2781 + 2829 ], "traded_death_opportunities": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "two_kill_rounds": [ - 2781 + 2829 ], "unused_utility_value": [ - 2781 + 2829 ], "utility_on_death": [ - 2781 + 2829 ], "wasted_magazine_shots": [ - 2781 + 2829 ], "zeus_kills": [ - 2781 + 2829 ], "__typename": [ 78 @@ -76807,22 +77737,22 @@ export default { }, "player_objectives": { "deleted_at": [ - 4324 + 4376 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3739 + 3787 ], "player_steam_id": [ 180 @@ -76831,10 +77761,10 @@ export default { 38 ], "time": [ - 4324 + 4376 ], "type": [ - 901 + 928 ], "__typename": [ 78 @@ -76842,10 +77772,10 @@ export default { }, "player_objectives_aggregate": { "aggregate": [ - 3341 + 3389 ], "nodes": [ - 3337 + 3385 ], "__typename": [ 78 @@ -76853,7 +77783,7 @@ export default { }, "player_objectives_aggregate_bool_exp": { "count": [ - 3340 + 3388 ], "__typename": [ 78 @@ -76861,13 +77791,13 @@ export default { }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3358 + 3406 ], "distinct": [ 3 ], "filter": [ - 3346 + 3394 ], "predicate": [ 39 @@ -76878,13 +77808,13 @@ export default { }, "player_objectives_aggregate_fields": { "avg": [ - 3344 + 3392 ], "count": [ 38, { "columns": [ - 3358, + 3406, "[player_objectives_select_column!]" ], "distinct": [ @@ -76893,31 +77823,31 @@ export default { } ], "max": [ - 3350 + 3398 ], "min": [ - 3352 + 3400 ], "stddev": [ - 3360 + 3408 ], "stddev_pop": [ - 3362 + 3410 ], "stddev_samp": [ - 3364 + 3412 ], "sum": [ - 3368 + 3416 ], "var_pop": [ - 3372 + 3420 ], "var_samp": [ - 3374 + 3422 ], "variance": [ - 3376 + 3424 ], "__typename": [ 78 @@ -76925,37 +77855,37 @@ export default { }, "player_objectives_aggregate_order_by": { "avg": [ - 3345 + 3393 ], "count": [ - 2781 + 2829 ], "max": [ - 3351 + 3399 ], "min": [ - 3353 + 3401 ], "stddev": [ - 3361 + 3409 ], "stddev_pop": [ - 3363 + 3411 ], "stddev_samp": [ - 3365 + 3413 ], "sum": [ - 3369 + 3417 ], "var_pop": [ - 3373 + 3421 ], "var_samp": [ - 3375 + 3423 ], "variance": [ - 3377 + 3425 ], "__typename": [ 78 @@ -76963,10 +77893,10 @@ export default { }, "player_objectives_arr_rel_insert_input": { "data": [ - 3349 + 3397 ], "on_conflict": [ - 3355 + 3403 ], "__typename": [ 78 @@ -76985,10 +77915,10 @@ export default { }, "player_objectives_avg_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -76996,31 +77926,31 @@ export default { }, "player_objectives_bool_exp": { "_and": [ - 3346 + 3394 ], "_not": [ - 3346 + 3394 ], "_or": [ - 3346 + 3394 ], "deleted_at": [ - 4325 + 4377 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "player": [ - 3743 + 3791 ], "player_steam_id": [ 182 @@ -77029,10 +77959,10 @@ export default { 39 ], "time": [ - 4325 + 4377 ], "type": [ - 902 + 929 ], "__typename": [ 78 @@ -77052,22 +77982,22 @@ export default { }, "player_objectives_insert_input": { "deleted_at": [ - 4324 + 4376 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2452 + 2500 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3750 + 3798 ], "player_steam_id": [ 180 @@ -77076,10 +78006,10 @@ export default { 38 ], "time": [ - 4324 + 4376 ], "type": [ - 901 + 928 ], "__typename": [ 78 @@ -77087,13 +78017,13 @@ export default { }, "player_objectives_max_fields": { "deleted_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "player_steam_id": [ 180 @@ -77102,7 +78032,7 @@ export default { 38 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -77110,22 +78040,22 @@ export default { }, "player_objectives_max_order_by": { "deleted_at": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "__typename": [ 78 @@ -77133,13 +78063,13 @@ export default { }, "player_objectives_min_fields": { "deleted_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "player_steam_id": [ 180 @@ -77148,7 +78078,7 @@ export default { 38 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -77156,22 +78086,22 @@ export default { }, "player_objectives_min_order_by": { "deleted_at": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "__typename": [ 78 @@ -77182,7 +78112,7 @@ export default { 38 ], "returning": [ - 3337 + 3385 ], "__typename": [ 78 @@ -77190,13 +78120,13 @@ export default { }, "player_objectives_on_conflict": { "constraint": [ - 3347 + 3395 ], "update_columns": [ - 3370 + 3418 ], "where": [ - 3346 + 3394 ], "__typename": [ 78 @@ -77204,34 +78134,34 @@ export default { }, "player_objectives_order_by": { "deleted_at": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "__typename": [ 78 @@ -77239,13 +78169,13 @@ export default { }, "player_objectives_pk_columns_input": { "match_map_id": [ - 4762 + 4921 ], "player_steam_id": [ 180 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -77254,13 +78184,13 @@ export default { "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "player_steam_id": [ 180 @@ -77269,10 +78199,10 @@ export default { 38 ], "time": [ - 4324 + 4376 ], "type": [ - 901 + 928 ], "__typename": [ 78 @@ -77291,10 +78221,10 @@ export default { }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -77313,10 +78243,10 @@ export default { }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -77335,10 +78265,10 @@ export default { }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -77346,7 +78276,7 @@ export default { }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3367 + 3415 ], "ordering": [ 236 @@ -77357,13 +78287,13 @@ export default { }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "player_steam_id": [ 180 @@ -77372,10 +78302,10 @@ export default { 38 ], "time": [ - 4324 + 4376 ], "type": [ - 901 + 928 ], "__typename": [ 78 @@ -77394,10 +78324,10 @@ export default { }, "player_objectives_sum_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -77406,13 +78336,13 @@ export default { "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3348 + 3396 ], "_set": [ - 3359 + 3407 ], "where": [ - 3346 + 3394 ], "__typename": [ 78 @@ -77431,10 +78361,10 @@ export default { }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -77453,10 +78383,10 @@ export default { }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -77475,10 +78405,10 @@ export default { }, "player_objectives_variance_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -77486,13 +78416,13 @@ export default { }, "player_performance_v": { "accuracy_score": [ - 1499 + 1547 ], "aim_goal": [ - 1499 + 1547 ], "aim_rating": [ - 1499 + 1547 ], "band": [ 38 @@ -77501,31 +78431,31 @@ export default { 180 ], "blind_score": [ - 1499 + 1547 ], "counter_strafe_score": [ - 1499 + 1547 ], "crosshair_score": [ - 1499 + 1547 ], "flash_assists_score": [ - 1499 + 1547 ], "hs_score": [ - 1499 + 1547 ], "kast_score": [ - 1499 + 1547 ], "maps": [ 38 ], "positioning_goal": [ - 1499 + 1547 ], "positioning_rating": [ - 1499 + 1547 ], "premier_rank": [ 38 @@ -77534,28 +78464,28 @@ export default { 38 ], "spotted_score": [ - 1499 + 1547 ], "steam_id": [ 180 ], "survival_score": [ - 1499 + 1547 ], "traded_score": [ - 1499 + 1547 ], "ttd_score": [ - 1499 + 1547 ], "util_eff_score": [ - 1499 + 1547 ], "utility_goal": [ - 1499 + 1547 ], "utility_rating": [ - 1499 + 1547 ], "__typename": [ 78 @@ -77563,10 +78493,10 @@ export default { }, "player_performance_v_aggregate": { "aggregate": [ - 3380 + 3428 ], "nodes": [ - 3378 + 3426 ], "__typename": [ 78 @@ -77574,13 +78504,13 @@ export default { }, "player_performance_v_aggregate_fields": { "avg": [ - 3381 + 3429 ], "count": [ 38, { "columns": [ - 3386, + 3434, "[player_performance_v_select_column!]" ], "distinct": [ @@ -77589,31 +78519,31 @@ export default { } ], "max": [ - 3383 + 3431 ], "min": [ - 3384 + 3432 ], "stddev": [ - 3387 + 3435 ], "stddev_pop": [ - 3388 + 3436 ], "stddev_samp": [ - 3389 + 3437 ], "sum": [ - 3392 + 3440 ], "var_pop": [ - 3393 + 3441 ], "var_samp": [ - 3394 + 3442 ], "variance": [ - 3395 + 3443 ], "__typename": [ 78 @@ -77698,22 +78628,22 @@ export default { }, "player_performance_v_bool_exp": { "_and": [ - 3382 + 3430 ], "_not": [ - 3382 + 3430 ], "_or": [ - 3382 + 3430 ], "accuracy_score": [ - 1500 + 1548 ], "aim_goal": [ - 1500 + 1548 ], "aim_rating": [ - 1500 + 1548 ], "band": [ 39 @@ -77722,31 +78652,31 @@ export default { 182 ], "blind_score": [ - 1500 + 1548 ], "counter_strafe_score": [ - 1500 + 1548 ], "crosshair_score": [ - 1500 + 1548 ], "flash_assists_score": [ - 1500 + 1548 ], "hs_score": [ - 1500 + 1548 ], "kast_score": [ - 1500 + 1548 ], "maps": [ 39 ], "positioning_goal": [ - 1500 + 1548 ], "positioning_rating": [ - 1500 + 1548 ], "premier_rank": [ 39 @@ -77755,28 +78685,28 @@ export default { 39 ], "spotted_score": [ - 1500 + 1548 ], "steam_id": [ 182 ], "survival_score": [ - 1500 + 1548 ], "traded_score": [ - 1500 + 1548 ], "ttd_score": [ - 1500 + 1548 ], "util_eff_score": [ - 1500 + 1548 ], "utility_goal": [ - 1500 + 1548 ], "utility_rating": [ - 1500 + 1548 ], "__typename": [ 78 @@ -77784,13 +78714,13 @@ export default { }, "player_performance_v_max_fields": { "accuracy_score": [ - 1499 + 1547 ], "aim_goal": [ - 1499 + 1547 ], "aim_rating": [ - 1499 + 1547 ], "band": [ 38 @@ -77799,31 +78729,31 @@ export default { 180 ], "blind_score": [ - 1499 + 1547 ], "counter_strafe_score": [ - 1499 + 1547 ], "crosshair_score": [ - 1499 + 1547 ], "flash_assists_score": [ - 1499 + 1547 ], "hs_score": [ - 1499 + 1547 ], "kast_score": [ - 1499 + 1547 ], "maps": [ 38 ], "positioning_goal": [ - 1499 + 1547 ], "positioning_rating": [ - 1499 + 1547 ], "premier_rank": [ 38 @@ -77832,28 +78762,28 @@ export default { 38 ], "spotted_score": [ - 1499 + 1547 ], "steam_id": [ 180 ], "survival_score": [ - 1499 + 1547 ], "traded_score": [ - 1499 + 1547 ], "ttd_score": [ - 1499 + 1547 ], "util_eff_score": [ - 1499 + 1547 ], "utility_goal": [ - 1499 + 1547 ], "utility_rating": [ - 1499 + 1547 ], "__typename": [ 78 @@ -77861,13 +78791,13 @@ export default { }, "player_performance_v_min_fields": { "accuracy_score": [ - 1499 + 1547 ], "aim_goal": [ - 1499 + 1547 ], "aim_rating": [ - 1499 + 1547 ], "band": [ 38 @@ -77876,31 +78806,31 @@ export default { 180 ], "blind_score": [ - 1499 + 1547 ], "counter_strafe_score": [ - 1499 + 1547 ], "crosshair_score": [ - 1499 + 1547 ], "flash_assists_score": [ - 1499 + 1547 ], "hs_score": [ - 1499 + 1547 ], "kast_score": [ - 1499 + 1547 ], "maps": [ 38 ], "positioning_goal": [ - 1499 + 1547 ], "positioning_rating": [ - 1499 + 1547 ], "premier_rank": [ 38 @@ -77909,28 +78839,28 @@ export default { 38 ], "spotted_score": [ - 1499 + 1547 ], "steam_id": [ 180 ], "survival_score": [ - 1499 + 1547 ], "traded_score": [ - 1499 + 1547 ], "ttd_score": [ - 1499 + 1547 ], "util_eff_score": [ - 1499 + 1547 ], "utility_goal": [ - 1499 + 1547 ], "utility_rating": [ - 1499 + 1547 ], "__typename": [ 78 @@ -77938,76 +78868,76 @@ export default { }, "player_performance_v_order_by": { "accuracy_score": [ - 2781 + 2829 ], "aim_goal": [ - 2781 + 2829 ], "aim_rating": [ - 2781 + 2829 ], "band": [ - 2781 + 2829 ], "band_sample": [ - 2781 + 2829 ], "blind_score": [ - 2781 + 2829 ], "counter_strafe_score": [ - 2781 + 2829 ], "crosshair_score": [ - 2781 + 2829 ], "flash_assists_score": [ - 2781 + 2829 ], "hs_score": [ - 2781 + 2829 ], "kast_score": [ - 2781 + 2829 ], "maps": [ - 2781 + 2829 ], "positioning_goal": [ - 2781 + 2829 ], "positioning_rating": [ - 2781 + 2829 ], "premier_rank": [ - 2781 + 2829 ], "rounds": [ - 2781 + 2829 ], "spotted_score": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "survival_score": [ - 2781 + 2829 ], "traded_score": [ - 2781 + 2829 ], "ttd_score": [ - 2781 + 2829 ], "util_eff_score": [ - 2781 + 2829 ], "utility_goal": [ - 2781 + 2829 ], "utility_rating": [ - 2781 + 2829 ], "__typename": [ 78 @@ -78247,7 +79177,7 @@ export default { }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3391 + 3439 ], "ordering": [ 236 @@ -78258,13 +79188,13 @@ export default { }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1499 + 1547 ], "aim_goal": [ - 1499 + 1547 ], "aim_rating": [ - 1499 + 1547 ], "band": [ 38 @@ -78273,31 +79203,31 @@ export default { 180 ], "blind_score": [ - 1499 + 1547 ], "counter_strafe_score": [ - 1499 + 1547 ], "crosshair_score": [ - 1499 + 1547 ], "flash_assists_score": [ - 1499 + 1547 ], "hs_score": [ - 1499 + 1547 ], "kast_score": [ - 1499 + 1547 ], "maps": [ 38 ], "positioning_goal": [ - 1499 + 1547 ], "positioning_rating": [ - 1499 + 1547 ], "premier_rank": [ 38 @@ -78306,28 +79236,28 @@ export default { 38 ], "spotted_score": [ - 1499 + 1547 ], "steam_id": [ 180 ], "survival_score": [ - 1499 + 1547 ], "traded_score": [ - 1499 + 1547 ], "ttd_score": [ - 1499 + 1547 ], "util_eff_score": [ - 1499 + 1547 ], "utility_goal": [ - 1499 + 1547 ], "utility_rating": [ - 1499 + 1547 ], "__typename": [ 78 @@ -78335,13 +79265,13 @@ export default { }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1499 + 1547 ], "aim_goal": [ - 1499 + 1547 ], "aim_rating": [ - 1499 + 1547 ], "band": [ 38 @@ -78350,31 +79280,31 @@ export default { 180 ], "blind_score": [ - 1499 + 1547 ], "counter_strafe_score": [ - 1499 + 1547 ], "crosshair_score": [ - 1499 + 1547 ], "flash_assists_score": [ - 1499 + 1547 ], "hs_score": [ - 1499 + 1547 ], "kast_score": [ - 1499 + 1547 ], "maps": [ 38 ], "positioning_goal": [ - 1499 + 1547 ], "positioning_rating": [ - 1499 + 1547 ], "premier_rank": [ 38 @@ -78383,28 +79313,28 @@ export default { 38 ], "spotted_score": [ - 1499 + 1547 ], "steam_id": [ 180 ], "survival_score": [ - 1499 + 1547 ], "traded_score": [ - 1499 + 1547 ], "ttd_score": [ - 1499 + 1547 ], "util_eff_score": [ - 1499 + 1547 ], "utility_goal": [ - 1499 + 1547 ], "utility_rating": [ - 1499 + 1547 ], "__typename": [ 78 @@ -78643,25 +79573,25 @@ export default { }, "player_premier_rank_history": { "id": [ - 4762 + 4921 ], "map": [ - 2114 + 2162 ], "map_id": [ - 4762 + 4921 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "observed_at": [ - 4324 + 4376 ], "player": [ - 3739 + 3787 ], "previous_rank": [ 38 @@ -78681,10 +79611,10 @@ export default { }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3400 + 3448 ], "nodes": [ - 3396 + 3444 ], "__typename": [ 78 @@ -78692,7 +79622,7 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3399 + 3447 ], "__typename": [ 78 @@ -78700,13 +79630,13 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3417 + 3465 ], "distinct": [ 3 ], "filter": [ - 3405 + 3453 ], "predicate": [ 39 @@ -78717,13 +79647,13 @@ export default { }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3403 + 3451 ], "count": [ 38, { "columns": [ - 3417, + 3465, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -78732,31 +79662,31 @@ export default { } ], "max": [ - 3409 + 3457 ], "min": [ - 3411 + 3459 ], "stddev": [ - 3419 + 3467 ], "stddev_pop": [ - 3421 + 3469 ], "stddev_samp": [ - 3423 + 3471 ], "sum": [ - 3427 + 3475 ], "var_pop": [ - 3431 + 3479 ], "var_samp": [ - 3433 + 3481 ], "variance": [ - 3435 + 3483 ], "__typename": [ 78 @@ -78764,37 +79694,37 @@ export default { }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 3404 + 3452 ], "count": [ - 2781 + 2829 ], "max": [ - 3410 + 3458 ], "min": [ - 3412 + 3460 ], "stddev": [ - 3420 + 3468 ], "stddev_pop": [ - 3422 + 3470 ], "stddev_samp": [ - 3424 + 3472 ], "sum": [ - 3428 + 3476 ], "var_pop": [ - 3432 + 3480 ], "var_samp": [ - 3434 + 3482 ], "variance": [ - 3436 + 3484 ], "__typename": [ 78 @@ -78802,10 +79732,10 @@ export default { }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3408 + 3456 ], "on_conflict": [ - 3414 + 3462 ], "__typename": [ 78 @@ -78830,16 +79760,16 @@ export default { }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rank_type": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -78847,34 +79777,34 @@ export default { }, "player_premier_rank_history_bool_exp": { "_and": [ - 3405 + 3453 ], "_not": [ - 3405 + 3453 ], "_or": [ - 3405 + 3453 ], "id": [ - 4764 + 4923 ], "map": [ - 2123 + 2171 ], "map_id": [ - 4764 + 4923 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "observed_at": [ - 4325 + 4377 ], "player": [ - 3743 + 3791 ], "previous_rank": [ 39 @@ -78912,25 +79842,25 @@ export default { }, "player_premier_rank_history_insert_input": { "id": [ - 4762 + 4921 ], "map": [ - 2131 + 2179 ], "map_id": [ - 4762 + 4921 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "observed_at": [ - 4324 + 4376 ], "player": [ - 3750 + 3798 ], "previous_rank": [ 38 @@ -78950,16 +79880,16 @@ export default { }, "player_premier_rank_history_max_fields": { "id": [ - 4762 + 4921 ], "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "observed_at": [ - 4324 + 4376 ], "previous_rank": [ 38 @@ -78979,28 +79909,28 @@ export default { }, "player_premier_rank_history_max_order_by": { "id": [ - 2781 + 2829 ], "map_id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "observed_at": [ - 2781 + 2829 ], "previous_rank": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rank_type": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -79008,16 +79938,16 @@ export default { }, "player_premier_rank_history_min_fields": { "id": [ - 4762 + 4921 ], "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "observed_at": [ - 4324 + 4376 ], "previous_rank": [ 38 @@ -79037,28 +79967,28 @@ export default { }, "player_premier_rank_history_min_order_by": { "id": [ - 2781 + 2829 ], "map_id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "observed_at": [ - 2781 + 2829 ], "previous_rank": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rank_type": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -79069,7 +79999,7 @@ export default { 38 ], "returning": [ - 3396 + 3444 ], "__typename": [ 78 @@ -79077,13 +80007,13 @@ export default { }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3406 + 3454 ], "update_columns": [ - 3429 + 3477 ], "where": [ - 3405 + 3453 ], "__typename": [ 78 @@ -79091,37 +80021,37 @@ export default { }, "player_premier_rank_history_order_by": { "id": [ - 2781 + 2829 ], "map": [ - 2133 + 2181 ], "map_id": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "observed_at": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "previous_rank": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rank_type": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -79129,7 +80059,7 @@ export default { }, "player_premier_rank_history_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -79138,16 +80068,16 @@ export default { "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 4762 + 4921 ], "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "observed_at": [ - 4324 + 4376 ], "previous_rank": [ 38 @@ -79184,16 +80114,16 @@ export default { }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rank_type": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -79218,16 +80148,16 @@ export default { }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rank_type": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -79252,16 +80182,16 @@ export default { }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rank_type": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -79269,7 +80199,7 @@ export default { }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3426 + 3474 ], "ordering": [ 236 @@ -79280,16 +80210,16 @@ export default { }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 4762 + 4921 ], "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "observed_at": [ - 4324 + 4376 ], "previous_rank": [ 38 @@ -79326,16 +80256,16 @@ export default { }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rank_type": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -79344,13 +80274,13 @@ export default { "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3407 + 3455 ], "_set": [ - 3418 + 3466 ], "where": [ - 3405 + 3453 ], "__typename": [ 78 @@ -79375,16 +80305,16 @@ export default { }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rank_type": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -79409,16 +80339,16 @@ export default { }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rank_type": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -79443,16 +80373,16 @@ export default { }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rank_type": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -79460,19 +80390,19 @@ export default { }, "player_sanctions": { "created_at": [ - 4324 + 4376 ], "deleted_at": [ - 4324 + 4376 ], "e_sanction_type": [ - 976 + 1003 ], "id": [ - 4762 + 4921 ], "player": [ - 3739 + 3787 ], "player_steam_id": [ 180 @@ -79481,16 +80411,16 @@ export default { 78 ], "remove_sanction_date": [ - 4324 + 4376 ], "sanctioned_by": [ - 3739 + 3787 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 981 + 1008 ], "__typename": [ 78 @@ -79498,10 +80428,10 @@ export default { }, "player_sanctions_aggregate": { "aggregate": [ - 3441 + 3489 ], "nodes": [ - 3437 + 3485 ], "__typename": [ 78 @@ -79509,7 +80439,7 @@ export default { }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3440 + 3488 ], "__typename": [ 78 @@ -79517,13 +80447,13 @@ export default { }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3458 + 3506 ], "distinct": [ 3 ], "filter": [ - 3446 + 3494 ], "predicate": [ 39 @@ -79534,13 +80464,13 @@ export default { }, "player_sanctions_aggregate_fields": { "avg": [ - 3444 + 3492 ], "count": [ 38, { "columns": [ - 3458, + 3506, "[player_sanctions_select_column!]" ], "distinct": [ @@ -79549,31 +80479,31 @@ export default { } ], "max": [ - 3450 + 3498 ], "min": [ - 3452 + 3500 ], "stddev": [ - 3460 + 3508 ], "stddev_pop": [ - 3462 + 3510 ], "stddev_samp": [ - 3464 + 3512 ], "sum": [ - 3468 + 3516 ], "var_pop": [ - 3472 + 3520 ], "var_samp": [ - 3474 + 3522 ], "variance": [ - 3476 + 3524 ], "__typename": [ 78 @@ -79581,37 +80511,37 @@ export default { }, "player_sanctions_aggregate_order_by": { "avg": [ - 3445 + 3493 ], "count": [ - 2781 + 2829 ], "max": [ - 3451 + 3499 ], "min": [ - 3453 + 3501 ], "stddev": [ - 3461 + 3509 ], "stddev_pop": [ - 3463 + 3511 ], "stddev_samp": [ - 3465 + 3513 ], "sum": [ - 3469 + 3517 ], "var_pop": [ - 3473 + 3521 ], "var_samp": [ - 3475 + 3523 ], "variance": [ - 3477 + 3525 ], "__typename": [ 78 @@ -79619,10 +80549,10 @@ export default { }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3449 + 3497 ], "on_conflict": [ - 3455 + 3503 ], "__typename": [ 78 @@ -79641,10 +80571,10 @@ export default { }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 2781 + 2829 ], "sanctioned_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -79652,28 +80582,28 @@ export default { }, "player_sanctions_bool_exp": { "_and": [ - 3446 + 3494 ], "_not": [ - 3446 + 3494 ], "_or": [ - 3446 + 3494 ], "created_at": [ - 4325 + 4377 ], "deleted_at": [ - 4325 + 4377 ], "e_sanction_type": [ - 979 + 1006 ], "id": [ - 4764 + 4923 ], "player": [ - 3743 + 3791 ], "player_steam_id": [ 182 @@ -79682,16 +80612,16 @@ export default { 80 ], "remove_sanction_date": [ - 4325 + 4377 ], "sanctioned_by": [ - 3743 + 3791 ], "sanctioned_by_steam_id": [ 182 ], "type": [ - 982 + 1009 ], "__typename": [ 78 @@ -79711,19 +80641,19 @@ export default { }, "player_sanctions_insert_input": { "created_at": [ - 4324 + 4376 ], "deleted_at": [ - 4324 + 4376 ], "e_sanction_type": [ - 987 + 1014 ], "id": [ - 4762 + 4921 ], "player": [ - 3750 + 3798 ], "player_steam_id": [ 180 @@ -79732,16 +80662,16 @@ export default { 78 ], "remove_sanction_date": [ - 4324 + 4376 ], "sanctioned_by": [ - 3750 + 3798 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 981 + 1008 ], "__typename": [ 78 @@ -79749,13 +80679,13 @@ export default { }, "player_sanctions_max_fields": { "created_at": [ - 4324 + 4376 ], "deleted_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "player_steam_id": [ 180 @@ -79764,7 +80694,7 @@ export default { 78 ], "remove_sanction_date": [ - 4324 + 4376 ], "sanctioned_by_steam_id": [ 180 @@ -79775,25 +80705,25 @@ export default { }, "player_sanctions_max_order_by": { "created_at": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "reason": [ - 2781 + 2829 ], "remove_sanction_date": [ - 2781 + 2829 ], "sanctioned_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -79801,13 +80731,13 @@ export default { }, "player_sanctions_min_fields": { "created_at": [ - 4324 + 4376 ], "deleted_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "player_steam_id": [ 180 @@ -79816,7 +80746,7 @@ export default { 78 ], "remove_sanction_date": [ - 4324 + 4376 ], "sanctioned_by_steam_id": [ 180 @@ -79827,25 +80757,25 @@ export default { }, "player_sanctions_min_order_by": { "created_at": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "reason": [ - 2781 + 2829 ], "remove_sanction_date": [ - 2781 + 2829 ], "sanctioned_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -79856,7 +80786,7 @@ export default { 38 ], "returning": [ - 3437 + 3485 ], "__typename": [ 78 @@ -79864,13 +80794,13 @@ export default { }, "player_sanctions_on_conflict": { "constraint": [ - 3447 + 3495 ], "update_columns": [ - 3470 + 3518 ], "where": [ - 3446 + 3494 ], "__typename": [ 78 @@ -79878,37 +80808,37 @@ export default { }, "player_sanctions_order_by": { "created_at": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "e_sanction_type": [ - 989 + 1016 ], "id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "player_steam_id": [ - 2781 + 2829 ], "reason": [ - 2781 + 2829 ], "remove_sanction_date": [ - 2781 + 2829 ], "sanctioned_by": [ - 3752 + 3800 ], "sanctioned_by_steam_id": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "__typename": [ 78 @@ -79916,10 +80846,10 @@ export default { }, "player_sanctions_pk_columns_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -79928,13 +80858,13 @@ export default { "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4324 + 4376 ], "deleted_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "player_steam_id": [ 180 @@ -79943,13 +80873,13 @@ export default { 78 ], "remove_sanction_date": [ - 4324 + 4376 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 981 + 1008 ], "__typename": [ 78 @@ -79968,10 +80898,10 @@ export default { }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 2781 + 2829 ], "sanctioned_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -79990,10 +80920,10 @@ export default { }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 2781 + 2829 ], "sanctioned_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -80012,10 +80942,10 @@ export default { }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 2781 + 2829 ], "sanctioned_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -80023,7 +80953,7 @@ export default { }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3467 + 3515 ], "ordering": [ 236 @@ -80034,13 +80964,13 @@ export default { }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "deleted_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "player_steam_id": [ 180 @@ -80049,13 +80979,13 @@ export default { 78 ], "remove_sanction_date": [ - 4324 + 4376 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 981 + 1008 ], "__typename": [ 78 @@ -80074,10 +81004,10 @@ export default { }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 2781 + 2829 ], "sanctioned_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -80086,13 +81016,13 @@ export default { "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3448 + 3496 ], "_set": [ - 3459 + 3507 ], "where": [ - 3446 + 3494 ], "__typename": [ 78 @@ -80111,10 +81041,10 @@ export default { }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 2781 + 2829 ], "sanctioned_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -80133,10 +81063,10 @@ export default { }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 2781 + 2829 ], "sanctioned_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -80155,10 +81085,10 @@ export default { }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 2781 + 2829 ], "sanctioned_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -80172,7 +81102,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -80181,16 +81111,16 @@ export default { 180 ], "player": [ - 3739 + 3787 ], "player_steam_id": [ 180 ], "season": [ - 3798 + 3846 ], "season_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -80198,10 +81128,10 @@ export default { }, "player_season_stats_aggregate": { "aggregate": [ - 3492 + 3540 ], "nodes": [ - 3478 + 3526 ], "__typename": [ 78 @@ -80209,31 +81139,31 @@ export default { }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3481 + 3529 ], "corr": [ - 3482 + 3530 ], "count": [ - 3484 + 3532 ], "covar_samp": [ - 3485 + 3533 ], "max": [ - 3487 + 3535 ], "min": [ - 3488 + 3536 ], "stddev_samp": [ - 3489 + 3537 ], "sum": [ - 3490 + 3538 ], "var_samp": [ - 3491 + 3539 ], "__typename": [ 78 @@ -80241,16 +81171,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3510 + 3558 ], "distinct": [ 3 ], "filter": [ - 3497 + 3545 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -80258,16 +81188,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3483 + 3531 ], "distinct": [ 3 ], "filter": [ - 3497 + 3545 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -80275,10 +81205,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3511 + 3559 ], "Y": [ - 3511 + 3559 ], "__typename": [ 78 @@ -80286,13 +81216,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3509 + 3557 ], "distinct": [ 3 ], "filter": [ - 3497 + 3545 ], "predicate": [ 39 @@ -80303,16 +81233,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3486 + 3534 ], "distinct": [ 3 ], "filter": [ - 3497 + 3545 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -80320,10 +81250,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3512 + 3560 ], "Y": [ - 3512 + 3560 ], "__typename": [ 78 @@ -80331,16 +81261,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3513 + 3561 ], "distinct": [ 3 ], "filter": [ - 3497 + 3545 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -80348,16 +81278,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3514 + 3562 ], "distinct": [ 3 ], "filter": [ - 3497 + 3545 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -80365,16 +81295,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3515 + 3563 ], "distinct": [ 3 ], "filter": [ - 3497 + 3545 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -80382,16 +81312,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3516 + 3564 ], "distinct": [ 3 ], "filter": [ - 3497 + 3545 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -80399,16 +81329,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3517 + 3565 ], "distinct": [ 3 ], "filter": [ - 3497 + 3545 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -80416,13 +81346,13 @@ export default { }, "player_season_stats_aggregate_fields": { "avg": [ - 3495 + 3543 ], "count": [ 38, { "columns": [ - 3509, + 3557, "[player_season_stats_select_column!]" ], "distinct": [ @@ -80431,31 +81361,31 @@ export default { } ], "max": [ - 3501 + 3549 ], "min": [ - 3503 + 3551 ], "stddev": [ - 3519 + 3567 ], "stddev_pop": [ - 3521 + 3569 ], "stddev_samp": [ - 3523 + 3571 ], "sum": [ - 3527 + 3575 ], "var_pop": [ - 3531 + 3579 ], "var_samp": [ - 3533 + 3581 ], "variance": [ - 3535 + 3583 ], "__typename": [ 78 @@ -80463,37 +81393,37 @@ export default { }, "player_season_stats_aggregate_order_by": { "avg": [ - 3496 + 3544 ], "count": [ - 2781 + 2829 ], "max": [ - 3502 + 3550 ], "min": [ - 3504 + 3552 ], "stddev": [ - 3520 + 3568 ], "stddev_pop": [ - 3522 + 3570 ], "stddev_samp": [ - 3524 + 3572 ], "sum": [ - 3528 + 3576 ], "var_pop": [ - 3532 + 3580 ], "var_samp": [ - 3534 + 3582 ], "variance": [ - 3536 + 3584 ], "__typename": [ 78 @@ -80501,10 +81431,10 @@ export default { }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3500 + 3548 ], "on_conflict": [ - 3506 + 3554 ], "__typename": [ 78 @@ -80535,22 +81465,22 @@ export default { }, "player_season_stats_avg_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -80558,13 +81488,13 @@ export default { }, "player_season_stats_bool_exp": { "_and": [ - 3497 + 3545 ], "_not": [ - 3497 + 3545 ], "_or": [ - 3497 + 3545 ], "assists": [ 182 @@ -80573,7 +81503,7 @@ export default { 182 ], "headshot_percentage": [ - 1500 + 1548 ], "headshots": [ 182 @@ -80582,16 +81512,16 @@ export default { 182 ], "player": [ - 3743 + 3791 ], "player_steam_id": [ 182 ], "season": [ - 3802 + 3850 ], "season_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -80606,7 +81536,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -80629,7 +81559,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -80638,16 +81568,16 @@ export default { 180 ], "player": [ - 3750 + 3798 ], "player_steam_id": [ 180 ], "season": [ - 3809 + 3857 ], "season_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -80661,7 +81591,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -80673,7 +81603,7 @@ export default { 180 ], "season_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -80681,25 +81611,25 @@ export default { }, "player_season_stats_max_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "season_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -80713,7 +81643,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -80725,7 +81655,7 @@ export default { 180 ], "season_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -80733,25 +81663,25 @@ export default { }, "player_season_stats_min_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "season_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -80762,7 +81692,7 @@ export default { 38 ], "returning": [ - 3478 + 3526 ], "__typename": [ 78 @@ -80770,13 +81700,13 @@ export default { }, "player_season_stats_on_conflict": { "constraint": [ - 3498 + 3546 ], "update_columns": [ - 3529 + 3577 ], "where": [ - 3497 + 3545 ], "__typename": [ 78 @@ -80784,31 +81714,31 @@ export default { }, "player_season_stats_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "player_steam_id": [ - 2781 + 2829 ], "season": [ - 3811 + 3859 ], "season_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -80819,7 +81749,7 @@ export default { 180 ], "season_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -80842,7 +81772,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -80854,7 +81784,7 @@ export default { 180 ], "season_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -80885,22 +81815,22 @@ export default { }, "player_season_stats_stddev_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -80931,22 +81861,22 @@ export default { }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -80977,22 +81907,22 @@ export default { }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -81000,7 +81930,7 @@ export default { }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3526 + 3574 ], "ordering": [ 236 @@ -81017,7 +81947,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -81029,7 +81959,7 @@ export default { 180 ], "season_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -81043,7 +81973,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -81060,22 +81990,22 @@ export default { }, "player_season_stats_sum_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -81084,13 +82014,13 @@ export default { "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3499 + 3547 ], "_set": [ - 3518 + 3566 ], "where": [ - 3497 + 3545 ], "__typename": [ 78 @@ -81121,22 +82051,22 @@ export default { }, "player_season_stats_var_pop_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -81167,22 +82097,22 @@ export default { }, "player_season_stats_var_samp_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -81213,22 +82143,22 @@ export default { }, "player_season_stats_variance_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -81242,7 +82172,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -81251,7 +82181,7 @@ export default { 180 ], "player": [ - 3739 + 3787 ], "player_steam_id": [ 180 @@ -81262,10 +82192,10 @@ export default { }, "player_stats_aggregate": { "aggregate": [ - 3539 + 3587 ], "nodes": [ - 3537 + 3585 ], "__typename": [ 78 @@ -81273,13 +82203,13 @@ export default { }, "player_stats_aggregate_fields": { "avg": [ - 3540 + 3588 ], "count": [ 38, { "columns": [ - 3552, + 3600, "[player_stats_select_column!]" ], "distinct": [ @@ -81288,31 +82218,31 @@ export default { } ], "max": [ - 3545 + 3593 ], "min": [ - 3546 + 3594 ], "stddev": [ - 3554 + 3602 ], "stddev_pop": [ - 3555 + 3603 ], "stddev_samp": [ - 3556 + 3604 ], "sum": [ - 3559 + 3607 ], "var_pop": [ - 3562 + 3610 ], "var_samp": [ - 3563 + 3611 ], "variance": [ - 3564 + 3612 ], "__typename": [ 78 @@ -81343,13 +82273,13 @@ export default { }, "player_stats_bool_exp": { "_and": [ - 3541 + 3589 ], "_not": [ - 3541 + 3589 ], "_or": [ - 3541 + 3589 ], "assists": [ 182 @@ -81358,7 +82288,7 @@ export default { 182 ], "headshot_percentage": [ - 1500 + 1548 ], "headshots": [ 182 @@ -81367,7 +82297,7 @@ export default { 182 ], "player": [ - 3743 + 3791 ], "player_steam_id": [ 182 @@ -81385,7 +82315,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -81408,7 +82338,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -81417,7 +82347,7 @@ export default { 180 ], "player": [ - 3750 + 3798 ], "player_steam_id": [ 180 @@ -81434,7 +82364,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -81457,7 +82387,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -81477,7 +82407,7 @@ export default { 38 ], "returning": [ - 3537 + 3585 ], "__typename": [ 78 @@ -81485,10 +82415,10 @@ export default { }, "player_stats_obj_rel_insert_input": { "data": [ - 3544 + 3592 ], "on_conflict": [ - 3549 + 3597 ], "__typename": [ 78 @@ -81496,13 +82426,13 @@ export default { }, "player_stats_on_conflict": { "constraint": [ - 3542 + 3590 ], "update_columns": [ - 3560 + 3608 ], "where": [ - 3541 + 3589 ], "__typename": [ 78 @@ -81510,25 +82440,25 @@ export default { }, "player_stats_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -81551,7 +82481,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -81637,7 +82567,7 @@ export default { }, "player_stats_stream_cursor_input": { "initial_value": [ - 3558 + 3606 ], "ordering": [ 236 @@ -81654,7 +82584,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -81677,7 +82607,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 180 @@ -81695,13 +82625,13 @@ export default { "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3543 + 3591 ], "_set": [ - 3553 + 3601 ], "where": [ - 3541 + 3589 ], "__typename": [ 78 @@ -81778,19 +82708,19 @@ export default { }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 4762 + 4921 ], "bot_steamid64": [ 180 ], "created_at": [ - 4324 + 4376 ], "friended_at": [ - 4324 + 4376 ], "last_presence_state": [ - 1652, + 1700, { "path": [ 78 @@ -81798,7 +82728,7 @@ export default { } ], "player": [ - 3739 + 3787 ], "status": [ 78 @@ -81807,7 +82737,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -81815,10 +82745,10 @@ export default { }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3567 + 3615 ], "nodes": [ - 3565 + 3613 ], "__typename": [ 78 @@ -81826,13 +82756,13 @@ export default { }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3569 + 3617 ], "count": [ 38, { "columns": [ - 3584, + 3632, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -81841,31 +82771,31 @@ export default { } ], "max": [ - 3577 + 3625 ], "min": [ - 3578 + 3626 ], "stddev": [ - 3586 + 3634 ], "stddev_pop": [ - 3587 + 3635 ], "stddev_samp": [ - 3588 + 3636 ], "sum": [ - 3591 + 3639 ], "var_pop": [ - 3594 + 3642 ], "var_samp": [ - 3595 + 3643 ], "variance": [ - 3596 + 3644 ], "__typename": [ 78 @@ -81873,7 +82803,7 @@ export default { }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 1652 + 1700 ], "__typename": [ 78 @@ -81892,31 +82822,31 @@ export default { }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3570 + 3618 ], "_not": [ - 3570 + 3618 ], "_or": [ - 3570 + 3618 ], "bot_steam_account_id": [ - 4764 + 4923 ], "bot_steamid64": [ 182 ], "created_at": [ - 4325 + 4377 ], "friended_at": [ - 4325 + 4377 ], "last_presence_state": [ - 1654 + 1702 ], "player": [ - 3743 + 3791 ], "status": [ 80 @@ -81925,7 +82855,7 @@ export default { 182 ], "updated_at": [ - 4325 + 4377 ], "__typename": [ 78 @@ -81969,22 +82899,22 @@ export default { }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 4762 + 4921 ], "bot_steamid64": [ 180 ], "created_at": [ - 4324 + 4376 ], "friended_at": [ - 4324 + 4376 ], "last_presence_state": [ - 1652 + 1700 ], "player": [ - 3750 + 3798 ], "status": [ 78 @@ -81993,7 +82923,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -82001,16 +82931,16 @@ export default { }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 4762 + 4921 ], "bot_steamid64": [ 180 ], "created_at": [ - 4324 + 4376 ], "friended_at": [ - 4324 + 4376 ], "status": [ 78 @@ -82019,7 +82949,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -82027,16 +82957,16 @@ export default { }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 4762 + 4921 ], "bot_steamid64": [ 180 ], "created_at": [ - 4324 + 4376 ], "friended_at": [ - 4324 + 4376 ], "status": [ 78 @@ -82045,7 +82975,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -82056,7 +82986,7 @@ export default { 38 ], "returning": [ - 3565 + 3613 ], "__typename": [ 78 @@ -82064,13 +82994,13 @@ export default { }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3571 + 3619 ], "update_columns": [ - 3592 + 3640 ], "where": [ - 3570 + 3618 ], "__typename": [ 78 @@ -82078,31 +83008,31 @@ export default { }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 2781 + 2829 ], "bot_steamid64": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "friended_at": [ - 2781 + 2829 ], "last_presence_state": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "status": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "__typename": [ 78 @@ -82118,7 +83048,7 @@ export default { }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 1652 + 1700 ], "__typename": [ 78 @@ -82127,19 +83057,19 @@ export default { "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 4762 + 4921 ], "bot_steamid64": [ 180 ], "created_at": [ - 4324 + 4376 ], "friended_at": [ - 4324 + 4376 ], "last_presence_state": [ - 1652 + 1700 ], "status": [ 78 @@ -82148,7 +83078,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -82189,7 +83119,7 @@ export default { }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3590 + 3638 ], "ordering": [ 236 @@ -82200,19 +83130,19 @@ export default { }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 4762 + 4921 ], "bot_steamid64": [ 180 ], "created_at": [ - 4324 + 4376 ], "friended_at": [ - 4324 + 4376 ], "last_presence_state": [ - 1652 + 1700 ], "status": [ 78 @@ -82221,7 +83151,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -82241,28 +83171,28 @@ export default { "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3568 + 3616 ], "_delete_at_path": [ - 3572 + 3620 ], "_delete_elem": [ - 3573 + 3621 ], "_delete_key": [ - 3574 + 3622 ], "_inc": [ - 3575 + 3623 ], "_prepend": [ - 3583 + 3631 ], "_set": [ - 3585 + 3633 ], "where": [ - 3570 + 3618 ], "__typename": [ 78 @@ -82306,7 +83236,7 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "last_error": [ 78 @@ -82315,16 +83245,16 @@ export default { 78 ], "last_polled_at": [ - 4324 + 4376 ], "player": [ - 3739 + 3787 ], "steam_id": [ 180 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -82332,10 +83262,10 @@ export default { }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3599 + 3647 ], "nodes": [ - 3597 + 3645 ], "__typename": [ 78 @@ -82343,13 +83273,13 @@ export default { }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3600 + 3648 ], "count": [ 38, { "columns": [ - 3611, + 3659, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -82358,31 +83288,31 @@ export default { } ], "max": [ - 3605 + 3653 ], "min": [ - 3606 + 3654 ], "stddev": [ - 3613 + 3661 ], "stddev_pop": [ - 3614 + 3662 ], "stddev_samp": [ - 3615 + 3663 ], "sum": [ - 3618 + 3666 ], "var_pop": [ - 3621 + 3669 ], "var_samp": [ - 3622 + 3670 ], "variance": [ - 3623 + 3671 ], "__typename": [ 78 @@ -82398,19 +83328,19 @@ export default { }, "player_steam_match_auth_bool_exp": { "_and": [ - 3601 + 3649 ], "_not": [ - 3601 + 3649 ], "_or": [ - 3601 + 3649 ], "auth_code": [ 80 ], "created_at": [ - 4325 + 4377 ], "last_error": [ 80 @@ -82419,16 +83349,16 @@ export default { 80 ], "last_polled_at": [ - 4325 + 4377 ], "player": [ - 3743 + 3791 ], "steam_id": [ 182 ], "updated_at": [ - 4325 + 4377 ], "__typename": [ 78 @@ -82448,7 +83378,7 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "last_error": [ 78 @@ -82457,16 +83387,16 @@ export default { 78 ], "last_polled_at": [ - 4324 + 4376 ], "player": [ - 3750 + 3798 ], "steam_id": [ 180 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -82477,7 +83407,7 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "last_error": [ 78 @@ -82486,13 +83416,13 @@ export default { 78 ], "last_polled_at": [ - 4324 + 4376 ], "steam_id": [ 180 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -82503,7 +83433,7 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "last_error": [ 78 @@ -82512,13 +83442,13 @@ export default { 78 ], "last_polled_at": [ - 4324 + 4376 ], "steam_id": [ 180 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -82529,7 +83459,7 @@ export default { 38 ], "returning": [ - 3597 + 3645 ], "__typename": [ 78 @@ -82537,13 +83467,13 @@ export default { }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3602 + 3650 ], "update_columns": [ - 3619 + 3667 ], "where": [ - 3601 + 3649 ], "__typename": [ 78 @@ -82551,28 +83481,28 @@ export default { }, "player_steam_match_auth_order_by": { "auth_code": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "last_error": [ - 2781 + 2829 ], "last_known_share_code": [ - 2781 + 2829 ], "last_polled_at": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "steam_id": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "__typename": [ 78 @@ -82592,7 +83522,7 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "last_error": [ 78 @@ -82601,13 +83531,13 @@ export default { 78 ], "last_polled_at": [ - 4324 + 4376 ], "steam_id": [ 180 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -82639,7 +83569,7 @@ export default { }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3617 + 3665 ], "ordering": [ 236 @@ -82653,7 +83583,7 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "last_error": [ 78 @@ -82662,13 +83592,13 @@ export default { 78 ], "last_polled_at": [ - 4324 + 4376 ], "steam_id": [ 180 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -82685,13 +83615,13 @@ export default { "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3603 + 3651 ], "_set": [ - 3612 + 3660 ], "where": [ - 3601 + 3649 ], "__typename": [ 78 @@ -82723,22 +83653,22 @@ export default { }, "player_unused_utility": { "deleted_at": [ - 4324 + 4376 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3739 + 3787 ], "player_steam_id": [ 180 @@ -82755,10 +83685,10 @@ export default { }, "player_unused_utility_aggregate": { "aggregate": [ - 3628 + 3676 ], "nodes": [ - 3624 + 3672 ], "__typename": [ 78 @@ -82766,7 +83696,7 @@ export default { }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3627 + 3675 ], "__typename": [ 78 @@ -82774,13 +83704,13 @@ export default { }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3645 + 3693 ], "distinct": [ 3 ], "filter": [ - 3633 + 3681 ], "predicate": [ 39 @@ -82791,13 +83721,13 @@ export default { }, "player_unused_utility_aggregate_fields": { "avg": [ - 3631 + 3679 ], "count": [ 38, { "columns": [ - 3645, + 3693, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -82806,31 +83736,31 @@ export default { } ], "max": [ - 3637 + 3685 ], "min": [ - 3639 + 3687 ], "stddev": [ - 3647 + 3695 ], "stddev_pop": [ - 3649 + 3697 ], "stddev_samp": [ - 3651 + 3699 ], "sum": [ - 3655 + 3703 ], "var_pop": [ - 3659 + 3707 ], "var_samp": [ - 3661 + 3709 ], "variance": [ - 3663 + 3711 ], "__typename": [ 78 @@ -82838,37 +83768,37 @@ export default { }, "player_unused_utility_aggregate_order_by": { "avg": [ - 3632 + 3680 ], "count": [ - 2781 + 2829 ], "max": [ - 3638 + 3686 ], "min": [ - 3640 + 3688 ], "stddev": [ - 3648 + 3696 ], "stddev_pop": [ - 3650 + 3698 ], "stddev_samp": [ - 3652 + 3700 ], "sum": [ - 3656 + 3704 ], "var_pop": [ - 3660 + 3708 ], "var_samp": [ - 3662 + 3710 ], "variance": [ - 3664 + 3712 ], "__typename": [ 78 @@ -82876,10 +83806,10 @@ export default { }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3636 + 3684 ], "on_conflict": [ - 3642 + 3690 ], "__typename": [ 78 @@ -82901,13 +83831,13 @@ export default { }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "unused": [ - 2781 + 2829 ], "__typename": [ 78 @@ -82915,31 +83845,31 @@ export default { }, "player_unused_utility_bool_exp": { "_and": [ - 3633 + 3681 ], "_not": [ - 3633 + 3681 ], "_or": [ - 3633 + 3681 ], "deleted_at": [ - 4325 + 4377 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "player": [ - 3743 + 3791 ], "player_steam_id": [ 182 @@ -82971,22 +83901,22 @@ export default { }, "player_unused_utility_insert_input": { "deleted_at": [ - 4324 + 4376 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2452 + 2500 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3750 + 3798 ], "player_steam_id": [ 180 @@ -83003,13 +83933,13 @@ export default { }, "player_unused_utility_max_fields": { "deleted_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "player_steam_id": [ 180 @@ -83026,22 +83956,22 @@ export default { }, "player_unused_utility_max_order_by": { "deleted_at": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "unused": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83049,13 +83979,13 @@ export default { }, "player_unused_utility_min_fields": { "deleted_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "player_steam_id": [ 180 @@ -83072,22 +84002,22 @@ export default { }, "player_unused_utility_min_order_by": { "deleted_at": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "unused": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83098,7 +84028,7 @@ export default { 38 ], "returning": [ - 3624 + 3672 ], "__typename": [ 78 @@ -83106,13 +84036,13 @@ export default { }, "player_unused_utility_on_conflict": { "constraint": [ - 3634 + 3682 ], "update_columns": [ - 3657 + 3705 ], "where": [ - 3633 + 3681 ], "__typename": [ 78 @@ -83120,31 +84050,31 @@ export default { }, "player_unused_utility_order_by": { "deleted_at": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "unused": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83152,7 +84082,7 @@ export default { }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 4762 + 4921 ], "player_steam_id": [ 180 @@ -83164,13 +84094,13 @@ export default { "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "player_steam_id": [ 180 @@ -83201,13 +84131,13 @@ export default { }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "unused": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83229,13 +84159,13 @@ export default { }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "unused": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83257,13 +84187,13 @@ export default { }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "unused": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83271,7 +84201,7 @@ export default { }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3654 + 3702 ], "ordering": [ 236 @@ -83282,13 +84212,13 @@ export default { }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "player_steam_id": [ 180 @@ -83319,13 +84249,13 @@ export default { }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "unused": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83334,13 +84264,13 @@ export default { "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3635 + 3683 ], "_set": [ - 3646 + 3694 ], "where": [ - 3633 + 3681 ], "__typename": [ 78 @@ -83362,13 +84292,13 @@ export default { }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "unused": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83390,13 +84320,13 @@ export default { }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "unused": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83418,13 +84348,13 @@ export default { }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "unused": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83438,31 +84368,31 @@ export default { 180 ], "deleted_at": [ - 4324 + 4376 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3739 + 3787 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "type": [ - 1185 + 1233 ], "__typename": [ 78 @@ -83470,10 +84400,10 @@ export default { }, "player_utility_aggregate": { "aggregate": [ - 3669 + 3717 ], "nodes": [ - 3665 + 3713 ], "__typename": [ 78 @@ -83481,7 +84411,7 @@ export default { }, "player_utility_aggregate_bool_exp": { "count": [ - 3668 + 3716 ], "__typename": [ 78 @@ -83489,13 +84419,13 @@ export default { }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3686 + 3734 ], "distinct": [ 3 ], "filter": [ - 3674 + 3722 ], "predicate": [ 39 @@ -83506,13 +84436,13 @@ export default { }, "player_utility_aggregate_fields": { "avg": [ - 3672 + 3720 ], "count": [ 38, { "columns": [ - 3686, + 3734, "[player_utility_select_column!]" ], "distinct": [ @@ -83521,31 +84451,31 @@ export default { } ], "max": [ - 3678 + 3726 ], "min": [ - 3680 + 3728 ], "stddev": [ - 3688 + 3736 ], "stddev_pop": [ - 3690 + 3738 ], "stddev_samp": [ - 3692 + 3740 ], "sum": [ - 3696 + 3744 ], "var_pop": [ - 3700 + 3748 ], "var_samp": [ - 3702 + 3750 ], "variance": [ - 3704 + 3752 ], "__typename": [ 78 @@ -83553,37 +84483,37 @@ export default { }, "player_utility_aggregate_order_by": { "avg": [ - 3673 + 3721 ], "count": [ - 2781 + 2829 ], "max": [ - 3679 + 3727 ], "min": [ - 3681 + 3729 ], "stddev": [ - 3689 + 3737 ], "stddev_pop": [ - 3691 + 3739 ], "stddev_samp": [ - 3693 + 3741 ], "sum": [ - 3697 + 3745 ], "var_pop": [ - 3701 + 3749 ], "var_samp": [ - 3703 + 3751 ], "variance": [ - 3705 + 3753 ], "__typename": [ 78 @@ -83591,10 +84521,10 @@ export default { }, "player_utility_arr_rel_insert_input": { "data": [ - 3677 + 3725 ], "on_conflict": [ - 3683 + 3731 ], "__typename": [ 78 @@ -83613,10 +84543,10 @@ export default { }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83624,13 +84554,13 @@ export default { }, "player_utility_bool_exp": { "_and": [ - 3674 + 3722 ], "_not": [ - 3674 + 3722 ], "_or": [ - 3674 + 3722 ], "attacker_location_coordinates": [ 80 @@ -83639,31 +84569,31 @@ export default { 182 ], "deleted_at": [ - 4325 + 4377 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "player": [ - 3743 + 3791 ], "round": [ 39 ], "time": [ - 4325 + 4377 ], "type": [ - 1186 + 1234 ], "__typename": [ 78 @@ -83689,31 +84619,31 @@ export default { 180 ], "deleted_at": [ - 4324 + 4376 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2452 + 2500 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3750 + 3798 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "type": [ - 1185 + 1233 ], "__typename": [ 78 @@ -83727,19 +84657,19 @@ export default { 180 ], "deleted_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -83747,25 +84677,25 @@ export default { }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83779,19 +84709,19 @@ export default { 180 ], "deleted_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -83799,25 +84729,25 @@ export default { }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83828,7 +84758,7 @@ export default { 38 ], "returning": [ - 3665 + 3713 ], "__typename": [ 78 @@ -83836,13 +84766,13 @@ export default { }, "player_utility_on_conflict": { "constraint": [ - 3675 + 3723 ], "update_columns": [ - 3698 + 3746 ], "where": [ - 3674 + 3722 ], "__typename": [ 78 @@ -83850,37 +84780,37 @@ export default { }, "player_utility_order_by": { "attacker_location_coordinates": [ - 2781 + 2829 ], "attacker_steam_id": [ - 2781 + 2829 ], "deleted_at": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "round": [ - 2781 + 2829 ], "time": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83891,10 +84821,10 @@ export default { 180 ], "match_map_id": [ - 4762 + 4921 ], "time": [ - 4324 + 4376 ], "__typename": [ 78 @@ -83909,22 +84839,22 @@ export default { 180 ], "deleted_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "type": [ - 1185 + 1233 ], "__typename": [ 78 @@ -83943,10 +84873,10 @@ export default { }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83965,10 +84895,10 @@ export default { }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83987,10 +84917,10 @@ export default { }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -83998,7 +84928,7 @@ export default { }, "player_utility_stream_cursor_input": { "initial_value": [ - 3695 + 3743 ], "ordering": [ 236 @@ -84015,22 +84945,22 @@ export default { 180 ], "deleted_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 ], "time": [ - 4324 + 4376 ], "type": [ - 1185 + 1233 ], "__typename": [ 78 @@ -84049,10 +84979,10 @@ export default { }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -84061,13 +84991,13 @@ export default { "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3676 + 3724 ], "_set": [ - 3687 + 3735 ], "where": [ - 3674 + 3722 ], "__typename": [ 78 @@ -84086,10 +85016,10 @@ export default { }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -84108,10 +85038,10 @@ export default { }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -84130,10 +85060,10 @@ export default { }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -84153,7 +85083,7 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "shots": [ 38 @@ -84173,10 +85103,10 @@ export default { }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 3710 + 3758 ], "nodes": [ - 3706 + 3754 ], "__typename": [ 78 @@ -84184,7 +85114,7 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 3709 + 3757 ], "__typename": [ 78 @@ -84192,13 +85122,13 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3722 + 3770 ], "distinct": [ 3 ], "filter": [ - 3715 + 3763 ], "predicate": [ 39 @@ -84209,13 +85139,13 @@ export default { }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 3713 + 3761 ], "count": [ 38, { "columns": [ - 3722, + 3770, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -84224,31 +85154,31 @@ export default { } ], "max": [ - 3717 + 3765 ], "min": [ - 3719 + 3767 ], "stddev": [ - 3723 + 3771 ], "stddev_pop": [ - 3725 + 3773 ], "stddev_samp": [ - 3727 + 3775 ], "sum": [ - 3731 + 3779 ], "var_pop": [ - 3733 + 3781 ], "var_samp": [ - 3735 + 3783 ], "variance": [ - 3737 + 3785 ], "__typename": [ 78 @@ -84256,37 +85186,37 @@ export default { }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 3714 + 3762 ], "count": [ - 2781 + 2829 ], "max": [ - 3718 + 3766 ], "min": [ - 3720 + 3768 ], "stddev": [ - 3724 + 3772 ], "stddev_pop": [ - 3726 + 3774 ], "stddev_samp": [ - 3728 + 3776 ], "sum": [ - 3732 + 3780 ], "var_pop": [ - 3734 + 3782 ], "var_samp": [ - 3736 + 3784 ], "variance": [ - 3738 + 3786 ], "__typename": [ 78 @@ -84294,7 +85224,7 @@ export default { }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 3716 + 3764 ], "__typename": [ 78 @@ -84328,25 +85258,25 @@ export default { }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -84354,13 +85284,13 @@ export default { }, "player_weapon_stats_v_bool_exp": { "_and": [ - 3715 + 3763 ], "_not": [ - 3715 + 3763 ], "_or": [ - 3715 + 3763 ], "first_bullet_hits": [ 39 @@ -84375,7 +85305,7 @@ export default { 39 ], "match_id": [ - 4764 + 4923 ], "shots": [ 39 @@ -84407,7 +85337,7 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "shots": [ 38 @@ -84439,7 +85369,7 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "shots": [ 38 @@ -84459,31 +85389,31 @@ export default { }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "weapon_class": [ - 2781 + 2829 ], "__typename": [ 78 @@ -84503,7 +85433,7 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "shots": [ 38 @@ -84523,31 +85453,31 @@ export default { }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "weapon_class": [ - 2781 + 2829 ], "__typename": [ 78 @@ -84555,31 +85485,31 @@ export default { }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "weapon_class": [ - 2781 + 2829 ], "__typename": [ 78 @@ -84614,25 +85544,25 @@ export default { }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -84666,25 +85596,25 @@ export default { }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -84718,25 +85648,25 @@ export default { }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -84744,7 +85674,7 @@ export default { }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 3730 + 3778 ], "ordering": [ 236 @@ -84767,7 +85697,7 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "shots": [ 38 @@ -84813,25 +85743,25 @@ export default { }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -84865,25 +85795,25 @@ export default { }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -84917,25 +85847,25 @@ export default { }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -84969,25 +85899,25 @@ export default { }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 2781 + 2829 ], "first_bullet_shots": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "hits_spotted": [ - 2781 + 2829 ], "shots": [ - 2781 + 2829 ], "shots_spotted": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -85039,10 +85969,10 @@ export default { } ], "aim_weapon_stats": [ - 2878, + 2926, { "distinct_on": [ - 2899, + 2947, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -85052,19 +85982,19 @@ export default { 38 ], "order_by": [ - 2897, + 2945, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2887 + 2935 ] } ], "aim_weapon_stats_aggregate": [ - 2879, + 2927, { "distinct_on": [ - 2899, + 2947, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -85074,19 +86004,19 @@ export default { 38 ], "order_by": [ - 2897, + 2945, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2887 + 2935 ] } ], "assists": [ - 2919, + 2967, { "distinct_on": [ - 2942, + 2990, "[player_assists_select_column!]" ], "limit": [ @@ -85096,19 +86026,19 @@ export default { 38 ], "order_by": [ - 2940, + 2988, "[player_assists_order_by!]" ], "where": [ - 2930 + 2978 ] } ], "assists_aggregate": [ - 2920, + 2968, { "distinct_on": [ - 2942, + 2990, "[player_assists_select_column!]" ], "limit": [ @@ -85118,19 +86048,19 @@ export default { 38 ], "order_by": [ - 2940, + 2988, "[player_assists_order_by!]" ], "where": [ - 2930 + 2978 ] } ], "assited_by_players": [ - 2919, + 2967, { "distinct_on": [ - 2942, + 2990, "[player_assists_select_column!]" ], "limit": [ @@ -85140,19 +86070,19 @@ export default { 38 ], "order_by": [ - 2940, + 2988, "[player_assists_order_by!]" ], "where": [ - 2930 + 2978 ] } ], "assited_by_players_aggregate": [ - 2920, + 2968, { "distinct_on": [ - 2942, + 2990, "[player_assists_select_column!]" ], "limit": [ @@ -85162,11 +86092,11 @@ export default { 38 ], "order_by": [ - 2940, + 2988, "[player_assists_order_by!]" ], "where": [ - 2930 + 2978 ] } ], @@ -85174,10 +86104,10 @@ export default { 78 ], "coach_lineups": [ - 2276, + 2324, { "distinct_on": [ - 2298, + 2346, "[match_lineups_select_column!]" ], "limit": [ @@ -85187,19 +86117,19 @@ export default { 38 ], "order_by": [ - 2296, + 2344, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2333 ] } ], "coach_lineups_aggregate": [ - 2277, + 2325, { "distinct_on": [ - 2298, + 2346, "[match_lineups_select_column!]" ], "limit": [ @@ -85209,11 +86139,11 @@ export default { 38 ], "order_by": [ - 2296, + 2344, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2333 ] } ], @@ -85221,19 +86151,19 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "current_lobby_id": [ - 4762 + 4921 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2982, + 3030, { "distinct_on": [ - 3003, + 3051, "[player_damages_select_column!]" ], "limit": [ @@ -85243,19 +86173,19 @@ export default { 38 ], "order_by": [ - 3001, + 3049, "[player_damages_order_by!]" ], "where": [ - 2991 + 3039 ] } ], "damage_dealt_aggregate": [ - 2983, + 3031, { "distinct_on": [ - 3003, + 3051, "[player_damages_select_column!]" ], "limit": [ @@ -85265,19 +86195,19 @@ export default { 38 ], "order_by": [ - 3001, + 3049, "[player_damages_order_by!]" ], "where": [ - 2991 + 3039 ] } ], "damage_taken": [ - 2982, + 3030, { "distinct_on": [ - 3003, + 3051, "[player_damages_select_column!]" ], "limit": [ @@ -85287,19 +86217,19 @@ export default { 38 ], "order_by": [ - 3001, + 3049, "[player_damages_order_by!]" ], "where": [ - 2991 + 3039 ] } ], "damage_taken_aggregate": [ - 2983, + 3031, { "distinct_on": [ - 3003, + 3051, "[player_damages_select_column!]" ], "limit": [ @@ -85309,11 +86239,11 @@ export default { 38 ], "order_by": [ - 3001, + 3049, "[player_damages_order_by!]" ], "where": [ - 2991 + 3039 ] } ], @@ -85321,10 +86251,10 @@ export default { 38 ], "deaths": [ - 3136, + 3184, { "distinct_on": [ - 3200, + 3248, "[player_kills_select_column!]" ], "limit": [ @@ -85334,19 +86264,19 @@ export default { 38 ], "order_by": [ - 3198, + 3246, "[player_kills_order_by!]" ], "where": [ - 3147 + 3195 ] } ], "deaths_aggregate": [ - 3137, + 3185, { "distinct_on": [ - 3200, + 3248, "[player_kills_select_column!]" ], "limit": [ @@ -85356,11 +86286,11 @@ export default { 38 ], "order_by": [ - 3198, + 3246, "[player_kills_order_by!]" ], "where": [ - 3147 + 3195 ] } ], @@ -85368,10 +86298,10 @@ export default { 78 ], "draft_game_players": [ - 309, + 336, { "distinct_on": [ - 332, + 359, "[draft_game_players_select_column!]" ], "limit": [ @@ -85381,19 +86311,19 @@ export default { 38 ], "order_by": [ - 330, + 357, "[draft_game_players_order_by!]" ], "where": [ - 320 + 347 ] } ], "draft_game_players_aggregate": [ - 310, + 337, { "distinct_on": [ - 332, + 359, "[draft_game_players_select_column!]" ], "limit": [ @@ -85403,16 +86333,16 @@ export default { 38 ], "order_by": [ - 330, + 357, "[draft_game_players_order_by!]" ], "where": [ - 320 + 347 ] } ], "elo": [ - 1652, + 1700, { "path": [ 78 @@ -85420,10 +86350,10 @@ export default { } ], "elo_history": [ - 5139, + 5298, { "distinct_on": [ - 5165, + 5324, "[v_player_elo_select_column!]" ], "limit": [ @@ -85433,19 +86363,19 @@ export default { 38 ], "order_by": [ - 5164, + 5323, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 5317 ] } ], "elo_history_aggregate": [ - 5140, + 5299, { "distinct_on": [ - 5165, + 5324, "[v_player_elo_select_column!]" ], "limit": [ @@ -85455,11 +86385,11 @@ export default { 38 ], "order_by": [ - 5164, + 5323, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 5317 ] } ], @@ -85473,10 +86403,10 @@ export default { 78 ], "faceit_rank_history": [ - 3050, + 3098, { "distinct_on": [ - 3071, + 3119, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -85486,19 +86416,19 @@ export default { 38 ], "order_by": [ - 3069, + 3117, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3059 + 3107 ] } ], "faceit_rank_history_aggregate": [ - 3051, + 3099, { "distinct_on": [ - 3071, + 3119, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -85508,11 +86438,11 @@ export default { 38 ], "order_by": [ - 3069, + 3117, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3059 + 3107 ] } ], @@ -85520,16 +86450,16 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4376 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 3091, + 3139, { "distinct_on": [ - 3114, + 3162, "[player_flashes_select_column!]" ], "limit": [ @@ -85539,19 +86469,19 @@ export default { 38 ], "order_by": [ - 3112, + 3160, "[player_flashes_order_by!]" ], "where": [ - 3102 + 3150 ] } ], "flashed_by_players_aggregate": [ - 3092, + 3140, { "distinct_on": [ - 3114, + 3162, "[player_flashes_select_column!]" ], "limit": [ @@ -85561,19 +86491,19 @@ export default { 38 ], "order_by": [ - 3112, + 3160, "[player_flashes_order_by!]" ], "where": [ - 3102 + 3150 ] } ], "flashed_players": [ - 3091, + 3139, { "distinct_on": [ - 3114, + 3162, "[player_flashes_select_column!]" ], "limit": [ @@ -85583,19 +86513,19 @@ export default { 38 ], "order_by": [ - 3112, + 3160, "[player_flashes_order_by!]" ], "where": [ - 3102 + 3150 ] } ], "flashed_players_aggregate": [ - 3092, + 3140, { "distinct_on": [ - 3114, + 3162, "[player_flashes_select_column!]" ], "limit": [ @@ -85605,19 +86535,19 @@ export default { 38 ], "order_by": [ - 3112, + 3160, "[player_flashes_order_by!]" ], "where": [ - 3102 + 3150 ] } ], "friends": [ - 2656, + 2704, { "distinct_on": [ - 2681, + 2729, "[my_friends_select_column!]" ], "limit": [ @@ -85627,19 +86557,19 @@ export default { 38 ], "order_by": [ - 2679, + 2727, "[my_friends_order_by!]" ], "where": [ - 2668 + 2716 ] } ], "friends_aggregate": [ - 2657, + 2705, { "distinct_on": [ - 2681, + 2729, "[my_friends_select_column!]" ], "limit": [ @@ -85649,11 +86579,11 @@ export default { 38 ], "order_by": [ - 2679, + 2727, "[my_friends_order_by!]" ], "where": [ - 2668 + 2716 ] } ], @@ -85661,10 +86591,10 @@ export default { 38 ], "invited_players": [ - 3998, + 4046, { "distinct_on": [ - 4019, + 4067, "[team_invites_select_column!]" ], "limit": [ @@ -85674,19 +86604,19 @@ export default { 38 ], "order_by": [ - 4017, + 4065, "[team_invites_order_by!]" ], "where": [ - 4007 + 4055 ] } ], "invited_players_aggregate": [ - 3999, + 4047, { "distinct_on": [ - 4019, + 4067, "[team_invites_select_column!]" ], "limit": [ @@ -85696,11 +86626,11 @@ export default { 38 ], "order_by": [ - 4017, + 4065, "[team_invites_order_by!]" ], "where": [ - 4007 + 4055 ] } ], @@ -85723,10 +86653,10 @@ export default { 3 ], "kills": [ - 3136, + 3184, { "distinct_on": [ - 3200, + 3248, "[player_kills_select_column!]" ], "limit": [ @@ -85736,19 +86666,19 @@ export default { 38 ], "order_by": [ - 3198, + 3246, "[player_kills_order_by!]" ], "where": [ - 3147 + 3195 ] } ], "kills_aggregate": [ - 3137, + 3185, { "distinct_on": [ - 3200, + 3248, "[player_kills_select_column!]" ], "limit": [ @@ -85758,19 +86688,19 @@ export default { 38 ], "order_by": [ - 3198, + 3246, "[player_kills_order_by!]" ], "where": [ - 3147 + 3195 ] } ], "kills_by_weapons": [ - 3148, + 3196, { "distinct_on": [ - 3169, + 3217, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -85780,19 +86710,19 @@ export default { 38 ], "order_by": [ - 3167, + 3215, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3157 + 3205 ] } ], "kills_by_weapons_aggregate": [ - 3149, + 3197, { "distinct_on": [ - 3169, + 3217, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -85802,11 +86732,11 @@ export default { 38 ], "order_by": [ - 3167, + 3215, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3157 + 3205 ] } ], @@ -85814,16 +86744,16 @@ export default { 78 ], "last_read_news_at": [ - 4324 + 4376 ], "last_sign_in_at": [ - 4324 + 4376 ], "lobby_players": [ - 2050, + 2098, { "distinct_on": [ - 2073, + 2121, "[lobby_players_select_column!]" ], "limit": [ @@ -85833,19 +86763,19 @@ export default { 38 ], "order_by": [ - 2071, + 2119, "[lobby_players_order_by!]" ], "where": [ - 2061 + 2109 ] } ], "lobby_players_aggregate": [ - 2051, + 2099, { "distinct_on": [ - 2073, + 2121, "[lobby_players_select_column!]" ], "limit": [ @@ -85855,11 +86785,11 @@ export default { 38 ], "order_by": [ - 2071, + 2119, "[lobby_players_order_by!]" ], "where": [ - 2061 + 2109 ] } ], @@ -85876,10 +86806,10 @@ export default { 38 ], "match_map_hltv": [ - 5244, + 5403, { "distinct_on": [ - 5262, + 5421, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -85889,19 +86819,19 @@ export default { 38 ], "order_by": [ - 5261, + 5420, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5253 + 5412 ] } ], "match_map_hltv_aggregate": [ - 5245, + 5404, { "distinct_on": [ - 5262, + 5421, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -85911,19 +86841,19 @@ export default { 38 ], "order_by": [ - 5261, + 5420, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5253 + 5412 ] } ], "match_map_stats": [ - 3245, + 3293, { "distinct_on": [ - 3266, + 3314, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -85933,19 +86863,19 @@ export default { 38 ], "order_by": [ - 3264, + 3312, "[player_match_map_stats_order_by!]" ], "where": [ - 3254 + 3302 ] } ], "match_map_stats_aggregate": [ - 3246, + 3294, { "distinct_on": [ - 3266, + 3314, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -85955,19 +86885,19 @@ export default { 38 ], "order_by": [ - 3264, + 3312, "[player_match_map_stats_order_by!]" ], "where": [ - 3254 + 3302 ] } ], "match_stats": [ - 3304, + 3352, { "distinct_on": [ - 3320, + 3368, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -85977,19 +86907,19 @@ export default { 38 ], "order_by": [ - 3319, + 3367, "[player_match_stats_v_order_by!]" ], "where": [ - 3313 + 3361 ] } ], "match_stats_aggregate": [ - 3305, + 3353, { "distinct_on": [ - 3320, + 3368, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -85999,19 +86929,19 @@ export default { 38 ], "order_by": [ - 3319, + 3367, "[player_match_stats_v_order_by!]" ], "where": [ - 3313 + 3361 ] } ], "matches": [ - 2596, + 2644, { "distinct_on": [ - 2618, + 2666, "[matches_select_column!]" ], "limit": [ @@ -86021,22 +86951,22 @@ export default { 38 ], "order_by": [ - 2616, + 2664, "[matches_order_by!]" ], "where": [ - 2605 + 2653 ] } ], "matchmaking_cooldown": [ - 4324 + 4376 ], "multi_kills": [ - 5335, + 5494, { "distinct_on": [ - 5351, + 5510, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -86046,19 +86976,19 @@ export default { 38 ], "order_by": [ - 5350, + 5509, "[v_player_multi_kills_order_by!]" ], "where": [ - 5344 + 5503 ] } ], "multi_kills_aggregate": [ - 5336, + 5495, { "distinct_on": [ - 5351, + 5510, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -86068,11 +86998,11 @@ export default { 38 ], "order_by": [ - 5350, + 5509, "[v_player_multi_kills_order_by!]" ], "where": [ - 5344 + 5503 ] } ], @@ -86083,10 +87013,10 @@ export default { 3 ], "notifications": [ - 2729, + 2777, { "distinct_on": [ - 2757, + 2805, "[notifications_select_column!]" ], "limit": [ @@ -86096,19 +87026,19 @@ export default { 38 ], "order_by": [ - 2754, + 2802, "[notifications_order_by!]" ], "where": [ - 2741 + 2789 ] } ], "notifications_aggregate": [ - 2730, + 2778, { "distinct_on": [ - 2757, + 2805, "[notifications_select_column!]" ], "limit": [ @@ -86118,19 +87048,19 @@ export default { 38 ], "order_by": [ - 2754, + 2802, "[notifications_order_by!]" ], "where": [ - 2741 + 2789 ] } ], "objectives": [ - 3337, + 3385, { "distinct_on": [ - 3358, + 3406, "[player_objectives_select_column!]" ], "limit": [ @@ -86140,19 +87070,19 @@ export default { 38 ], "order_by": [ - 3356, + 3404, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3394 ] } ], "objectives_aggregate": [ - 3338, + 3386, { "distinct_on": [ - 3358, + 3406, "[player_objectives_select_column!]" ], "limit": [ @@ -86162,19 +87092,19 @@ export default { 38 ], "order_by": [ - 3356, + 3404, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3394 ] } ], "owned_teams": [ - 4281, + 4329, { "distinct_on": [ - 4303, + 4353, "[teams_select_column!]" ], "limit": [ @@ -86184,19 +87114,19 @@ export default { 38 ], "order_by": [ - 4301, + 4351, "[teams_order_by!]" ], "where": [ - 4290 + 4340 ] } ], "owned_teams_aggregate": [ - 4282, + 4330, { "distinct_on": [ - 4303, + 4353, "[teams_select_column!]" ], "limit": [ @@ -86206,16 +87136,16 @@ export default { 38 ], "order_by": [ - 4301, + 4351, "[teams_order_by!]" ], "where": [ - 4290 + 4340 ] } ], "peak_elo": [ - 1652, + 1700, { "path": [ 78 @@ -86223,10 +87153,10 @@ export default { } ], "pending_match_imports": [ - 2782, + 2830, { "distinct_on": [ - 2803, + 2851, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -86236,19 +87166,19 @@ export default { 38 ], "order_by": [ - 2801, + 2849, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2839 ] } ], "pending_match_imports_aggregate": [ - 2783, + 2831, { "distinct_on": [ - 2803, + 2851, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -86258,19 +87188,19 @@ export default { 38 ], "order_by": [ - 2801, + 2849, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2839 ] } ], "player_lineup": [ - 2231, + 2279, { "distinct_on": [ - 2254, + 2302, "[match_lineup_players_select_column!]" ], "limit": [ @@ -86280,19 +87210,19 @@ export default { 38 ], "order_by": [ - 2252, + 2300, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 2290 ] } ], "player_lineup_aggregate": [ - 2232, + 2280, { "distinct_on": [ - 2254, + 2302, "[match_lineup_players_select_column!]" ], "limit": [ @@ -86302,19 +87232,19 @@ export default { 38 ], "order_by": [ - 2252, + 2300, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 2290 ] } ], "player_unused_utilities": [ - 3624, + 3672, { "distinct_on": [ - 3645, + 3693, "[player_unused_utility_select_column!]" ], "limit": [ @@ -86324,19 +87254,19 @@ export default { 38 ], "order_by": [ - 3643, + 3691, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3681 ] } ], "player_unused_utilities_aggregate": [ - 3625, + 3673, { "distinct_on": [ - 3645, + 3693, "[player_unused_utility_select_column!]" ], "limit": [ @@ -86346,11 +87276,11 @@ export default { 38 ], "order_by": [ - 3643, + 3691, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3681 ] } ], @@ -86358,10 +87288,10 @@ export default { 38 ], "premier_rank_history": [ - 3396, + 3444, { "distinct_on": [ - 3417, + 3465, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -86371,19 +87301,19 @@ export default { 38 ], "order_by": [ - 3415, + 3463, "[player_premier_rank_history_order_by!]" ], "where": [ - 3405 + 3453 ] } ], "premier_rank_history_aggregate": [ - 3397, + 3445, { "distinct_on": [ - 3417, + 3465, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -86393,31 +87323,31 @@ export default { 38 ], "order_by": [ - 3415, + 3463, "[player_premier_rank_history_order_by!]" ], "where": [ - 3405 + 3453 ] } ], "premier_rank_updated_at": [ - 4324 + 4376 ], "profile_url": [ 78 ], "role": [ - 921 + 948 ], "roster_image_url": [ 78 ], "sanctions": [ - 3437, + 3485, { "distinct_on": [ - 3458, + 3506, "[player_sanctions_select_column!]" ], "limit": [ @@ -86427,19 +87357,19 @@ export default { 38 ], "order_by": [ - 3456, + 3504, "[player_sanctions_order_by!]" ], "where": [ - 3446 + 3494 ] } ], "sanctions_aggregate": [ - 3438, + 3486, { "distinct_on": [ - 3458, + 3506, "[player_sanctions_select_column!]" ], "limit": [ @@ -86449,19 +87379,19 @@ export default { 38 ], "order_by": [ - 3456, + 3504, "[player_sanctions_order_by!]" ], "where": [ - 3446 + 3494 ] } ], "season_stats": [ - 3478, + 3526, { "distinct_on": [ - 3509, + 3557, "[player_season_stats_select_column!]" ], "limit": [ @@ -86471,19 +87401,19 @@ export default { 38 ], "order_by": [ - 3507, + 3555, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3545 ] } ], "season_stats_aggregate": [ - 3479, + 3527, { "distinct_on": [ - 3509, + 3557, "[player_season_stats_select_column!]" ], "limit": [ @@ -86493,11 +87423,11 @@ export default { 38 ], "order_by": [ - 3507, + 3555, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3545 ] } ], @@ -86505,19 +87435,19 @@ export default { 3 ], "stats": [ - 3537 + 3585 ], "steam_bans_checked_at": [ - 4324 + 4376 ], "steam_id": [ 180 ], "team_invites": [ - 3998, + 4046, { "distinct_on": [ - 4019, + 4067, "[team_invites_select_column!]" ], "limit": [ @@ -86527,19 +87457,19 @@ export default { 38 ], "order_by": [ - 4017, + 4065, "[team_invites_order_by!]" ], "where": [ - 4007 + 4055 ] } ], "team_invites_aggregate": [ - 3999, + 4047, { "distinct_on": [ - 4019, + 4067, "[team_invites_select_column!]" ], "limit": [ @@ -86549,19 +87479,19 @@ export default { 38 ], "order_by": [ - 4017, + 4065, "[team_invites_order_by!]" ], "where": [ - 4007 + 4055 ] } ], "team_members": [ - 4039, + 4087, { "distinct_on": [ - 4062, + 4110, "[team_roster_select_column!]" ], "limit": [ @@ -86571,19 +87501,19 @@ export default { 38 ], "order_by": [ - 4060, + 4108, "[team_roster_order_by!]" ], "where": [ - 4050 + 4098 ] } ], "team_members_aggregate": [ - 4040, + 4088, { "distinct_on": [ - 4062, + 4110, "[team_roster_select_column!]" ], "limit": [ @@ -86593,19 +87523,19 @@ export default { 38 ], "order_by": [ - 4060, + 4108, "[team_roster_order_by!]" ], "where": [ - 4050 + 4098 ] } ], "teams": [ - 4281, + 4329, { "distinct_on": [ - 4303, + 4353, "[teams_select_column!]" ], "limit": [ @@ -86615,11 +87545,11 @@ export default { 38 ], "order_by": [ - 4301, + 4351, "[teams_order_by!]" ], "where": [ - 4290 + 4340 ] } ], @@ -86627,10 +87557,10 @@ export default { 38 ], "tournament_organizers": [ - 4372, + 4472, { "distinct_on": [ - 4393, + 4493, "[tournament_organizers_select_column!]" ], "limit": [ @@ -86640,19 +87570,19 @@ export default { 38 ], "order_by": [ - 4391, + 4491, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4481 ] } ], "tournament_organizers_aggregate": [ - 4373, + 4473, { "distinct_on": [ - 4393, + 4493, "[tournament_organizers_select_column!]" ], "limit": [ @@ -86662,19 +87592,19 @@ export default { 38 ], "order_by": [ - 4391, + 4491, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4481 ] } ], "tournament_rosters": [ - 4546, + 4687, { "distinct_on": [ - 4567, + 4708, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -86684,19 +87614,19 @@ export default { 38 ], "order_by": [ - 4565, + 4706, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4696 ] } ], "tournament_rosters_aggregate": [ - 4547, + 4688, { "distinct_on": [ - 4567, + 4708, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -86706,19 +87636,19 @@ export default { 38 ], "order_by": [ - 4565, + 4706, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4696 ] } ], "tournament_trophies": [ - 4629, + 4770, { "distinct_on": [ - 4652, + 4793, "[tournament_trophies_select_column!]" ], "limit": [ @@ -86728,19 +87658,19 @@ export default { 38 ], "order_by": [ - 4650, + 4791, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4781 ] } ], "tournament_trophies_aggregate": [ - 4630, + 4771, { "distinct_on": [ - 4652, + 4793, "[tournament_trophies_select_column!]" ], "limit": [ @@ -86750,19 +87680,19 @@ export default { 38 ], "order_by": [ - 4650, + 4791, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4781 ] } ], "tournaments": [ - 4716, + 4857, { "distinct_on": [ - 4740, + 4891, "[tournaments_select_column!]" ], "limit": [ @@ -86772,19 +87702,19 @@ export default { 38 ], "order_by": [ - 4738, + 4889, "[tournaments_order_by!]" ], "where": [ - 4727 + 4878 ] } ], "tournaments_aggregate": [ - 4717, + 4858, { "distinct_on": [ - 4740, + 4891, "[tournaments_select_column!]" ], "limit": [ @@ -86794,19 +87724,19 @@ export default { 38 ], "order_by": [ - 4738, + 4889, "[tournaments_order_by!]" ], "where": [ - 4727 + 4878 ] } ], "utility_thrown": [ - 3665, + 3713, { "distinct_on": [ - 3686, + 3734, "[player_utility_select_column!]" ], "limit": [ @@ -86816,19 +87746,19 @@ export default { 38 ], "order_by": [ - 3684, + 3732, "[player_utility_order_by!]" ], "where": [ - 3674 + 3722 ] } ], "utility_thrown_aggregate": [ - 3666, + 3714, { "distinct_on": [ - 3686, + 3734, "[player_utility_select_column!]" ], "limit": [ @@ -86838,11 +87768,11 @@ export default { 38 ], "order_by": [ - 3684, + 3732, "[player_utility_order_by!]" ], "where": [ - 3674 + 3722 ] } ], @@ -86853,10 +87783,10 @@ export default { 3 ], "weapon_stats": [ - 3706, + 3754, { "distinct_on": [ - 3722, + 3770, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -86866,19 +87796,19 @@ export default { 38 ], "order_by": [ - 3721, + 3769, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3715 + 3763 ] } ], "weapon_stats_aggregate": [ - 3707, + 3755, { "distinct_on": [ - 3722, + 3770, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -86888,11 +87818,11 @@ export default { 38 ], "order_by": [ - 3721, + 3769, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3715 + 3763 ] } ], @@ -86914,10 +87844,10 @@ export default { }, "players_aggregate": { "aggregate": [ - 3741 + 3789 ], "nodes": [ - 3739 + 3787 ], "__typename": [ 78 @@ -86925,13 +87855,13 @@ export default { }, "players_aggregate_fields": { "avg": [ - 3742 + 3790 ], "count": [ 38, { "columns": [ - 3754, + 3802, "[players_select_column!]" ], "distinct": [ @@ -86940,31 +87870,31 @@ export default { } ], "max": [ - 3747 + 3795 ], "min": [ - 3748 + 3796 ], "stddev": [ - 3756 + 3804 ], "stddev_pop": [ - 3757 + 3805 ], "stddev_samp": [ - 3758 + 3806 ], "sum": [ - 3761 + 3809 ], "var_pop": [ - 3764 + 3812 ], "var_samp": [ - 3765 + 3813 ], "variance": [ - 3766 + 3814 ], "__typename": [ 78 @@ -87025,13 +87955,13 @@ export default { }, "players_bool_exp": { "_and": [ - 3743 + 3791 ], "_not": [ - 3743 + 3791 ], "_or": [ - 3743 + 3791 ], "abandoned_matches": [ 120 @@ -87040,82 +87970,82 @@ export default { 113 ], "aim_weapon_stats": [ - 2887 + 2935 ], "aim_weapon_stats_aggregate": [ - 2880 + 2928 ], "assists": [ - 2930 + 2978 ], "assists_aggregate": [ - 2921 + 2969 ], "assited_by_players": [ - 2930 + 2978 ], "assited_by_players_aggregate": [ - 2921 + 2969 ], "avatar_url": [ 80 ], "coach_lineups": [ - 2285 + 2333 ], "coach_lineups_aggregate": [ - 2278 + 2326 ], "country": [ 80 ], "created_at": [ - 4325 + 4377 ], "current_lobby_id": [ - 4764 + 4923 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 2991 + 3039 ], "damage_dealt_aggregate": [ - 2984 + 3032 ], "damage_taken": [ - 2991 + 3039 ], "damage_taken_aggregate": [ - 2984 + 3032 ], "days_since_last_ban": [ 39 ], "deaths": [ - 3147 + 3195 ], "deaths_aggregate": [ - 3138 + 3186 ], "discord_id": [ 80 ], "draft_game_players": [ - 320 + 347 ], "draft_game_players_aggregate": [ - 311 + 338 ], "elo": [ - 1654 + 1702 ], "elo_history": [ - 5158 + 5317 ], "elo_history_aggregate": [ - 5141 + 5300 ], "faceit_elo": [ 39 @@ -87127,46 +88057,46 @@ export default { 80 ], "faceit_rank_history": [ - 3059 + 3107 ], "faceit_rank_history_aggregate": [ - 3052 + 3100 ], "faceit_skill_level": [ 39 ], "faceit_updated_at": [ - 4325 + 4377 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 3102 + 3150 ], "flashed_by_players_aggregate": [ - 3093 + 3141 ], "flashed_players": [ - 3102 + 3150 ], "flashed_players_aggregate": [ - 3093 + 3141 ], "friends": [ - 2668 + 2716 ], "friends_aggregate": [ - 2658 + 2706 ], "game_ban_count": [ 39 ], "invited_players": [ - 4007 + 4055 ], "invited_players_aggregate": [ - 4000 + 4048 ], "is_banned": [ 4 @@ -87187,31 +88117,31 @@ export default { 4 ], "kills": [ - 3147 + 3195 ], "kills_aggregate": [ - 3138 + 3186 ], "kills_by_weapons": [ - 3157 + 3205 ], "kills_by_weapons_aggregate": [ - 3150 + 3198 ], "language": [ 80 ], "last_read_news_at": [ - 4325 + 4377 ], "last_sign_in_at": [ - 4325 + 4377 ], "lobby_players": [ - 2061 + 2109 ], "lobby_players_aggregate": [ - 2052 + 2100 ], "losses": [ 39 @@ -87226,34 +88156,34 @@ export default { 39 ], "match_map_hltv": [ - 5253 + 5412 ], "match_map_hltv_aggregate": [ - 5246 + 5405 ], "match_map_stats": [ - 3254 + 3302 ], "match_map_stats_aggregate": [ - 3247 + 3295 ], "match_stats": [ - 3313 + 3361 ], "match_stats_aggregate": [ - 3306 + 3354 ], "matches": [ - 2605 + 2653 ], "matchmaking_cooldown": [ - 4325 + 4377 ], "multi_kills": [ - 5344 + 5503 ], "multi_kills_aggregate": [ - 5337 + 5496 ], "name": [ 80 @@ -87262,136 +88192,136 @@ export default { 4 ], "notifications": [ - 2741 + 2789 ], "notifications_aggregate": [ - 2731 + 2779 ], "objectives": [ - 3346 + 3394 ], "objectives_aggregate": [ - 3339 + 3387 ], "owned_teams": [ - 4290 + 4340 ], "owned_teams_aggregate": [ - 4283 + 4331 ], "peak_elo": [ - 1654 + 1702 ], "pending_match_imports": [ - 2791 + 2839 ], "pending_match_imports_aggregate": [ - 2784 + 2832 ], "player_lineup": [ - 2242 + 2290 ], "player_lineup_aggregate": [ - 2233 + 2281 ], "player_unused_utilities": [ - 3633 + 3681 ], "player_unused_utilities_aggregate": [ - 3626 + 3674 ], "premier_rank": [ 39 ], "premier_rank_history": [ - 3405 + 3453 ], "premier_rank_history_aggregate": [ - 3398 + 3446 ], "premier_rank_updated_at": [ - 4325 + 4377 ], "profile_url": [ 80 ], "role": [ - 922 + 949 ], "roster_image_url": [ 80 ], "sanctions": [ - 3446 + 3494 ], "sanctions_aggregate": [ - 3439 + 3487 ], "season_stats": [ - 3497 + 3545 ], "season_stats_aggregate": [ - 3480 + 3528 ], "show_match_ready_modal": [ 4 ], "stats": [ - 3541 + 3589 ], "steam_bans_checked_at": [ - 4325 + 4377 ], "steam_id": [ 182 ], "team_invites": [ - 4007 + 4055 ], "team_invites_aggregate": [ - 4000 + 4048 ], "team_members": [ - 4050 + 4098 ], "team_members_aggregate": [ - 4041 + 4089 ], "teams": [ - 4290 + 4340 ], "total_matches": [ 39 ], "tournament_organizers": [ - 4381 + 4481 ], "tournament_organizers_aggregate": [ - 4374 + 4474 ], "tournament_rosters": [ - 4555 + 4696 ], "tournament_rosters_aggregate": [ - 4548 + 4689 ], "tournament_trophies": [ - 4640 + 4781 ], "tournament_trophies_aggregate": [ - 4631 + 4772 ], "tournaments": [ - 4727 + 4878 ], "tournaments_aggregate": [ - 4718 + 4859 ], "utility_thrown": [ - 3674 + 3722 ], "utility_thrown_aggregate": [ - 3667 + 3715 ], "vac_ban_count": [ 39 @@ -87400,10 +88330,10 @@ export default { 4 ], "weapon_stats": [ - 3715 + 3763 ], "weapon_stats_aggregate": [ - 3708 + 3756 ], "wins": [ 39 @@ -87453,49 +88383,49 @@ export default { 117 ], "aim_weapon_stats": [ - 2884 + 2932 ], "assists": [ - 2927 + 2975 ], "assited_by_players": [ - 2927 + 2975 ], "avatar_url": [ 78 ], "coach_lineups": [ - 2282 + 2330 ], "country": [ 78 ], "created_at": [ - 4324 + 4376 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2988 + 3036 ], "damage_taken": [ - 2988 + 3036 ], "days_since_last_ban": [ 38 ], "deaths": [ - 3144 + 3192 ], "discord_id": [ 78 ], "draft_game_players": [ - 317 + 344 ], "elo_history": [ - 5155 + 5314 ], "faceit_elo": [ 38 @@ -87507,61 +88437,61 @@ export default { 78 ], "faceit_rank_history": [ - 3056 + 3104 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 4324 + 4376 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 3099 + 3147 ], "flashed_players": [ - 3099 + 3147 ], "friends": [ - 2665 + 2713 ], "game_ban_count": [ 38 ], "invited_players": [ - 4004 + 4052 ], "kills": [ - 3144 + 3192 ], "kills_by_weapons": [ - 3154 + 3202 ], "language": [ 78 ], "last_read_news_at": [ - 4324 + 4376 ], "last_sign_in_at": [ - 4324 + 4376 ], "lobby_players": [ - 2058 + 2106 ], "match_map_hltv": [ - 5250 + 5409 ], "match_map_stats": [ - 3251 + 3299 ], "match_stats": [ - 3310 + 3358 ], "multi_kills": [ - 5341 + 5500 ], "name": [ 78 @@ -87570,79 +88500,79 @@ export default { 3 ], "notifications": [ - 2738 + 2786 ], "objectives": [ - 3343 + 3391 ], "owned_teams": [ - 4287 + 4337 ], "pending_match_imports": [ - 2788 + 2836 ], "player_lineup": [ - 2239 + 2287 ], "player_unused_utilities": [ - 3630 + 3678 ], "premier_rank": [ 38 ], "premier_rank_history": [ - 3402 + 3450 ], "premier_rank_updated_at": [ - 4324 + 4376 ], "profile_url": [ 78 ], "role": [ - 921 + 948 ], "roster_image_url": [ 78 ], "sanctions": [ - 3443 + 3491 ], "season_stats": [ - 3494 + 3542 ], "show_match_ready_modal": [ 3 ], "stats": [ - 3548 + 3596 ], "steam_bans_checked_at": [ - 4324 + 4376 ], "steam_id": [ 180 ], "team_invites": [ - 4004 + 4052 ], "team_members": [ - 4047 + 4095 ], "tournament_organizers": [ - 4378 + 4478 ], "tournament_rosters": [ - 4552 + 4693 ], "tournament_trophies": [ - 4637 + 4778 ], "tournaments": [ - 4724 + 4875 ], "utility_thrown": [ - 3671 + 3719 ], "vac_ban_count": [ 38 @@ -87651,7 +88581,7 @@ export default { 3 ], "weapon_stats": [ - 3712 + 3760 ], "__typename": [ 78 @@ -87665,10 +88595,10 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "current_lobby_id": [ - 4762 + 4921 ], "custom_avatar_url": [ 78 @@ -87692,7 +88622,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4376 ], "faceit_url": [ 78 @@ -87704,10 +88634,10 @@ export default { 78 ], "last_read_news_at": [ - 4324 + 4376 ], "last_sign_in_at": [ - 4324 + 4376 ], "losses": [ 38 @@ -87722,7 +88652,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4324 + 4376 ], "name": [ 78 @@ -87731,7 +88661,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4376 ], "profile_url": [ 78 @@ -87740,7 +88670,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -87775,10 +88705,10 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "current_lobby_id": [ - 4762 + 4921 ], "custom_avatar_url": [ 78 @@ -87802,7 +88732,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4376 ], "faceit_url": [ 78 @@ -87814,10 +88744,10 @@ export default { 78 ], "last_read_news_at": [ - 4324 + 4376 ], "last_sign_in_at": [ - 4324 + 4376 ], "losses": [ 38 @@ -87832,7 +88762,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4324 + 4376 ], "name": [ 78 @@ -87841,7 +88771,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4376 ], "profile_url": [ 78 @@ -87850,7 +88780,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -87882,7 +88812,7 @@ export default { 38 ], "returning": [ - 3739 + 3787 ], "__typename": [ 78 @@ -87890,10 +88820,10 @@ export default { }, "players_obj_rel_insert_input": { "data": [ - 3746 + 3794 ], "on_conflict": [ - 3751 + 3799 ], "__typename": [ 78 @@ -87901,13 +88831,13 @@ export default { }, "players_on_conflict": { "constraint": [ - 3744 + 3792 ], "update_columns": [ - 3762 + 3810 ], "where": [ - 3743 + 3791 ], "__typename": [ 78 @@ -87918,268 +88848,268 @@ export default { 116 ], "aim_weapon_stats_aggregate": [ - 2883 + 2931 ], "assists_aggregate": [ - 2926 + 2974 ], "assited_by_players_aggregate": [ - 2926 + 2974 ], "avatar_url": [ - 2781 + 2829 ], "coach_lineups_aggregate": [ - 2281 + 2329 ], "country": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "current_lobby_id": [ - 2781 + 2829 ], "custom_avatar_url": [ - 2781 + 2829 ], "damage_dealt_aggregate": [ - 2987 + 3035 ], "damage_taken_aggregate": [ - 2987 + 3035 ], "days_since_last_ban": [ - 2781 + 2829 ], "deaths_aggregate": [ - 3143 + 3191 ], "discord_id": [ - 2781 + 2829 ], "draft_game_players_aggregate": [ - 316 + 343 ], "elo": [ - 2781 + 2829 ], "elo_history_aggregate": [ - 5154 + 5313 ], "faceit_elo": [ - 2781 + 2829 ], "faceit_nickname": [ - 2781 + 2829 ], "faceit_player_id": [ - 2781 + 2829 ], "faceit_rank_history_aggregate": [ - 3055 + 3103 ], "faceit_skill_level": [ - 2781 + 2829 ], "faceit_updated_at": [ - 2781 + 2829 ], "faceit_url": [ - 2781 + 2829 ], "flashed_by_players_aggregate": [ - 3098 + 3146 ], "flashed_players_aggregate": [ - 3098 + 3146 ], "friends_aggregate": [ - 2663 + 2711 ], "game_ban_count": [ - 2781 + 2829 ], "invited_players_aggregate": [ - 4003 + 4051 ], "is_banned": [ - 2781 + 2829 ], "is_gagged": [ - 2781 + 2829 ], "is_in_another_match": [ - 2781 + 2829 ], "is_in_draft": [ - 2781 + 2829 ], "is_in_lobby": [ - 2781 + 2829 ], "is_muted": [ - 2781 + 2829 ], "kills_aggregate": [ - 3143 + 3191 ], "kills_by_weapons_aggregate": [ - 3153 + 3201 ], "language": [ - 2781 + 2829 ], "last_read_news_at": [ - 2781 + 2829 ], "last_sign_in_at": [ - 2781 + 2829 ], "lobby_players_aggregate": [ - 2057 + 2105 ], "losses": [ - 2781 + 2829 ], "losses_competitive": [ - 2781 + 2829 ], "losses_duel": [ - 2781 + 2829 ], "losses_wingman": [ - 2781 + 2829 ], "match_map_hltv_aggregate": [ - 5249 + 5408 ], "match_map_stats_aggregate": [ - 3250 + 3298 ], "match_stats_aggregate": [ - 3309 + 3357 ], "matches_aggregate": [ - 2601 + 2649 ], "matchmaking_cooldown": [ - 2781 + 2829 ], "multi_kills_aggregate": [ - 5340 + 5499 ], "name": [ - 2781 + 2829 ], "name_registered": [ - 2781 + 2829 ], "notifications_aggregate": [ - 2736 + 2784 ], "objectives_aggregate": [ - 3342 + 3390 ], "owned_teams_aggregate": [ - 4286 + 4336 ], "peak_elo": [ - 2781 + 2829 ], "pending_match_imports_aggregate": [ - 2787 + 2835 ], "player_lineup_aggregate": [ - 2238 + 2286 ], "player_unused_utilities_aggregate": [ - 3629 + 3677 ], "premier_rank": [ - 2781 + 2829 ], "premier_rank_history_aggregate": [ - 3401 + 3449 ], "premier_rank_updated_at": [ - 2781 + 2829 ], "profile_url": [ - 2781 + 2829 ], "role": [ - 2781 + 2829 ], "roster_image_url": [ - 2781 + 2829 ], "sanctions_aggregate": [ - 3442 + 3490 ], "season_stats_aggregate": [ - 3493 + 3541 ], "show_match_ready_modal": [ - 2781 + 2829 ], "stats": [ - 3550 + 3598 ], "steam_bans_checked_at": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_invites_aggregate": [ - 4003 + 4051 ], "team_members_aggregate": [ - 4046 + 4094 ], "teams_aggregate": [ - 4286 + 4336 ], "total_matches": [ - 2781 + 2829 ], "tournament_organizers_aggregate": [ - 4377 + 4477 ], "tournament_rosters_aggregate": [ - 4551 + 4692 ], "tournament_trophies_aggregate": [ - 4636 + 4777 ], "tournaments_aggregate": [ - 4723 + 4874 ], "utility_thrown_aggregate": [ - 3670 + 3718 ], "vac_ban_count": [ - 2781 + 2829 ], "vac_banned": [ - 2781 + 2829 ], "weapon_stats_aggregate": [ - 3711 + 3759 ], "wins": [ - 2781 + 2829 ], "wins_competitive": [ - 2781 + 2829 ], "wins_duel": [ - 2781 + 2829 ], "wins_wingman": [ - 2781 + 2829 ], "__typename": [ 78 @@ -88202,7 +89132,7 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "custom_avatar_url": [ 78 @@ -88226,7 +89156,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4376 ], "faceit_url": [ 78 @@ -88238,10 +89168,10 @@ export default { 78 ], "last_read_news_at": [ - 4324 + 4376 ], "last_sign_in_at": [ - 4324 + 4376 ], "name": [ 78 @@ -88253,13 +89183,13 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4376 ], "profile_url": [ 78 ], "role": [ - 921 + 948 ], "roster_image_url": [ 78 @@ -88268,7 +89198,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -88444,7 +89374,7 @@ export default { }, "players_stream_cursor_input": { "initial_value": [ - 3760 + 3808 ], "ordering": [ 236 @@ -88461,7 +89391,7 @@ export default { 78 ], "created_at": [ - 4324 + 4376 ], "custom_avatar_url": [ 78 @@ -88485,7 +89415,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4376 ], "faceit_url": [ 78 @@ -88497,10 +89427,10 @@ export default { 78 ], "last_read_news_at": [ - 4324 + 4376 ], "last_sign_in_at": [ - 4324 + 4376 ], "name": [ 78 @@ -88512,13 +89442,13 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4376 ], "profile_url": [ 78 ], "role": [ - 921 + 948 ], "roster_image_url": [ 78 @@ -88527,7 +89457,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -88598,13 +89528,13 @@ export default { "players_update_column": {}, "players_updates": { "_inc": [ - 3745 + 3793 ], "_set": [ - 3755 + 3803 ], "where": [ - 3743 + 3791 ], "__typename": [ 78 @@ -88774,10 +89704,10 @@ export default { 38 ], "published_at": [ - 4324 + 4376 ], "runtime": [ - 941 + 968 ], "version": [ 78 @@ -88788,10 +89718,10 @@ export default { }, "plugin_versions_aggregate": { "aggregate": [ - 3769 + 3817 ], "nodes": [ - 3767 + 3815 ], "__typename": [ 78 @@ -88799,13 +89729,13 @@ export default { }, "plugin_versions_aggregate_fields": { "avg": [ - 3770 + 3818 ], "count": [ 38, { "columns": [ - 3781, + 3829, "[plugin_versions_select_column!]" ], "distinct": [ @@ -88814,31 +89744,31 @@ export default { } ], "max": [ - 3775 + 3823 ], "min": [ - 3776 + 3824 ], "stddev": [ - 3783 + 3831 ], "stddev_pop": [ - 3784 + 3832 ], "stddev_samp": [ - 3785 + 3833 ], "sum": [ - 3788 + 3836 ], "var_pop": [ - 3791 + 3839 ], "var_samp": [ - 3792 + 3840 ], "variance": [ - 3793 + 3841 ], "__typename": [ 78 @@ -88854,22 +89784,22 @@ export default { }, "plugin_versions_bool_exp": { "_and": [ - 3771 + 3819 ], "_not": [ - 3771 + 3819 ], "_or": [ - 3771 + 3819 ], "min_game_build_id": [ 39 ], "published_at": [ - 4325 + 4377 ], "runtime": [ - 942 + 969 ], "version": [ 80 @@ -88892,10 +89822,10 @@ export default { 38 ], "published_at": [ - 4324 + 4376 ], "runtime": [ - 941 + 968 ], "version": [ 78 @@ -88909,7 +89839,7 @@ export default { 38 ], "published_at": [ - 4324 + 4376 ], "version": [ 78 @@ -88923,7 +89853,7 @@ export default { 38 ], "published_at": [ - 4324 + 4376 ], "version": [ 78 @@ -88937,7 +89867,7 @@ export default { 38 ], "returning": [ - 3767 + 3815 ], "__typename": [ 78 @@ -88945,13 +89875,13 @@ export default { }, "plugin_versions_on_conflict": { "constraint": [ - 3772 + 3820 ], "update_columns": [ - 3789 + 3837 ], "where": [ - 3771 + 3819 ], "__typename": [ 78 @@ -88959,16 +89889,16 @@ export default { }, "plugin_versions_order_by": { "min_game_build_id": [ - 2781 + 2829 ], "published_at": [ - 2781 + 2829 ], "runtime": [ - 2781 + 2829 ], "version": [ - 2781 + 2829 ], "__typename": [ 78 @@ -88976,7 +89906,7 @@ export default { }, "plugin_versions_pk_columns_input": { "runtime": [ - 941 + 968 ], "version": [ 78 @@ -88991,10 +89921,10 @@ export default { 38 ], "published_at": [ - 4324 + 4376 ], "runtime": [ - 941 + 968 ], "version": [ 78 @@ -89029,7 +89959,7 @@ export default { }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 3787 + 3835 ], "ordering": [ 236 @@ -89043,10 +89973,10 @@ export default { 38 ], "published_at": [ - 4324 + 4376 ], "runtime": [ - 941 + 968 ], "version": [ 78 @@ -89066,13 +89996,13 @@ export default { "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 3773 + 3821 ], "_set": [ - 3782 + 3830 ], "where": [ - 3771 + 3819 ], "__typename": [ 78 @@ -89104,7 +90034,7 @@ export default { }, "recalculate_tournament_trophies_args": { "_tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -89112,7 +90042,7 @@ export default { }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -89128,7 +90058,7 @@ export default { }, "restart_league_season_args": { "_league_season_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -89136,16 +90066,16 @@ export default { }, "seasons": { "created_at": [ - 4324 + 4376 ], "description": [ 78 ], "ends_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "needs_rebuild": [ 3 @@ -89154,10 +90084,10 @@ export default { 38 ], "player_season_stats": [ - 3478, + 3526, { "distinct_on": [ - 3509, + 3557, "[player_season_stats_select_column!]" ], "limit": [ @@ -89167,19 +90097,19 @@ export default { 38 ], "order_by": [ - 3507, + 3555, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3545 ] } ], "player_season_stats_aggregate": [ - 3479, + 3527, { "distinct_on": [ - 3509, + 3557, "[player_season_stats_select_column!]" ], "limit": [ @@ -89189,16 +90119,16 @@ export default { 38 ], "order_by": [ - 3507, + 3555, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3545 ] } ], "starts_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -89206,10 +90136,10 @@ export default { }, "seasons_aggregate": { "aggregate": [ - 3800 + 3848 ], "nodes": [ - 3798 + 3846 ], "__typename": [ 78 @@ -89217,13 +90147,13 @@ export default { }, "seasons_aggregate_fields": { "avg": [ - 3801 + 3849 ], "count": [ 38, { "columns": [ - 3813, + 3861, "[seasons_select_column!]" ], "distinct": [ @@ -89232,31 +90162,31 @@ export default { } ], "max": [ - 3806 + 3854 ], "min": [ - 3807 + 3855 ], "stddev": [ - 3815 + 3863 ], "stddev_pop": [ - 3816 + 3864 ], "stddev_samp": [ - 3817 + 3865 ], "sum": [ - 3820 + 3868 ], "var_pop": [ - 3823 + 3871 ], "var_samp": [ - 3824 + 3872 ], "variance": [ - 3825 + 3873 ], "__typename": [ 78 @@ -89272,25 +90202,25 @@ export default { }, "seasons_bool_exp": { "_and": [ - 3802 + 3850 ], "_not": [ - 3802 + 3850 ], "_or": [ - 3802 + 3850 ], "created_at": [ - 4325 + 4377 ], "description": [ 80 ], "ends_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "needs_rebuild": [ 4 @@ -89299,13 +90229,13 @@ export default { 39 ], "player_season_stats": [ - 3497 + 3545 ], "player_season_stats_aggregate": [ - 3480 + 3528 ], "starts_at": [ - 4325 + 4377 ], "__typename": [ 78 @@ -89322,16 +90252,16 @@ export default { }, "seasons_insert_input": { "created_at": [ - 4324 + 4376 ], "description": [ 78 ], "ends_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "needs_rebuild": [ 3 @@ -89340,10 +90270,10 @@ export default { 38 ], "player_season_stats": [ - 3494 + 3542 ], "starts_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -89351,22 +90281,22 @@ export default { }, "seasons_max_fields": { "created_at": [ - 4324 + 4376 ], "description": [ 78 ], "ends_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "number": [ 38 ], "starts_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -89374,22 +90304,22 @@ export default { }, "seasons_min_fields": { "created_at": [ - 4324 + 4376 ], "description": [ 78 ], "ends_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "number": [ 38 ], "starts_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -89400,7 +90330,7 @@ export default { 38 ], "returning": [ - 3798 + 3846 ], "__typename": [ 78 @@ -89408,10 +90338,10 @@ export default { }, "seasons_obj_rel_insert_input": { "data": [ - 3805 + 3853 ], "on_conflict": [ - 3810 + 3858 ], "__typename": [ 78 @@ -89419,13 +90349,13 @@ export default { }, "seasons_on_conflict": { "constraint": [ - 3803 + 3851 ], "update_columns": [ - 3821 + 3869 ], "where": [ - 3802 + 3850 ], "__typename": [ 78 @@ -89433,28 +90363,28 @@ export default { }, "seasons_order_by": { "created_at": [ - 2781 + 2829 ], "description": [ - 2781 + 2829 ], "ends_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "needs_rebuild": [ - 2781 + 2829 ], "number": [ - 2781 + 2829 ], "player_season_stats_aggregate": [ - 3493 + 3541 ], "starts_at": [ - 2781 + 2829 ], "__typename": [ 78 @@ -89462,7 +90392,7 @@ export default { }, "seasons_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -89471,16 +90401,16 @@ export default { "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4324 + 4376 ], "description": [ 78 ], "ends_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "needs_rebuild": [ 3 @@ -89489,7 +90419,7 @@ export default { 38 ], "starts_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -89521,7 +90451,7 @@ export default { }, "seasons_stream_cursor_input": { "initial_value": [ - 3819 + 3867 ], "ordering": [ 236 @@ -89532,16 +90462,16 @@ export default { }, "seasons_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "description": [ 78 ], "ends_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "needs_rebuild": [ 3 @@ -89550,7 +90480,7 @@ export default { 38 ], "starts_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -89567,13 +90497,13 @@ export default { "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 3804 + 3852 ], "_set": [ - 3814 + 3862 ], "where": [ - 3802 + 3850 ], "__typename": [ 78 @@ -89611,10 +90541,10 @@ export default { 78 ], "game_server_nodes": [ - 1528, + 1576, { "distinct_on": [ - 1557, + 1605, "[game_server_nodes_select_column!]" ], "limit": [ @@ -89624,19 +90554,19 @@ export default { 38 ], "order_by": [ - 1554, + 1602, "[game_server_nodes_order_by!]" ], "where": [ - 1540 + 1588 ] } ], "game_server_nodes_aggregate": [ - 1529, + 1577, { "distinct_on": [ - 1557, + 1605, "[game_server_nodes_select_column!]" ], "limit": [ @@ -89646,11 +90576,11 @@ export default { 38 ], "order_by": [ - 1554, + 1602, "[game_server_nodes_order_by!]" ], "where": [ - 1540 + 1588 ] } ], @@ -89678,10 +90608,10 @@ export default { }, "server_regions_aggregate": { "aggregate": [ - 3828 + 3876 ], "nodes": [ - 3826 + 3874 ], "__typename": [ 78 @@ -89689,13 +90619,13 @@ export default { }, "server_regions_aggregate_fields": { "avg": [ - 3829 + 3877 ], "count": [ 38, { "columns": [ - 3840, + 3888, "[server_regions_select_column!]" ], "distinct": [ @@ -89704,31 +90634,31 @@ export default { } ], "max": [ - 3833 + 3881 ], "min": [ - 3834 + 3882 ], "stddev": [ - 3842 + 3890 ], "stddev_pop": [ - 3843 + 3891 ], "stddev_samp": [ - 3844 + 3892 ], "sum": [ - 3847 + 3895 ], "var_pop": [ - 3850 + 3898 ], "var_samp": [ - 3851 + 3899 ], "variance": [ - 3852 + 3900 ], "__typename": [ 78 @@ -89747,13 +90677,13 @@ export default { }, "server_regions_bool_exp": { "_and": [ - 3830 + 3878 ], "_not": [ - 3830 + 3878 ], "_or": [ - 3830 + 3878 ], "available_server_count": [ 39 @@ -89762,10 +90692,10 @@ export default { 80 ], "game_server_nodes": [ - 1540 + 1588 ], "game_server_nodes_aggregate": [ - 1530 + 1578 ], "has_node": [ 4 @@ -89795,7 +90725,7 @@ export default { 78 ], "game_server_nodes": [ - 1537 + 1585 ], "is_lan": [ 3 @@ -89855,7 +90785,7 @@ export default { 38 ], "returning": [ - 3826 + 3874 ], "__typename": [ 78 @@ -89863,10 +90793,10 @@ export default { }, "server_regions_obj_rel_insert_input": { "data": [ - 3832 + 3880 ], "on_conflict": [ - 3837 + 3885 ], "__typename": [ 78 @@ -89874,13 +90804,13 @@ export default { }, "server_regions_on_conflict": { "constraint": [ - 3831 + 3879 ], "update_columns": [ - 3848 + 3896 ], "where": [ - 3830 + 3878 ], "__typename": [ 78 @@ -89888,31 +90818,31 @@ export default { }, "server_regions_order_by": { "available_server_count": [ - 2781 + 2829 ], "description": [ - 2781 + 2829 ], "game_server_nodes_aggregate": [ - 1535 + 1583 ], "has_node": [ - 2781 + 2829 ], "is_lan": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "steam_relay": [ - 2781 + 2829 ], "total_server_count": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -89979,7 +90909,7 @@ export default { }, "server_regions_stream_cursor_input": { "initial_value": [ - 3846 + 3894 ], "ordering": [ 236 @@ -90019,10 +90949,10 @@ export default { "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 3841 + 3889 ], "where": [ - 3830 + 3878 ], "__typename": [ 78 @@ -90063,7 +90993,7 @@ export default { }, "servers": { "api_password": [ - 4762 + 4921 ], "boot_status": [ 78 @@ -90084,7 +91014,7 @@ export default { 78 ], "current_match": [ - 2596 + 2644 ], "enabled": [ 3 @@ -90093,7 +91023,7 @@ export default { 78 ], "game_server_node": [ - 1528 + 1576 ], "game_server_node_id": [ 78 @@ -90102,7 +91032,7 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "is_dedicated": [ 3 @@ -90111,10 +91041,10 @@ export default { 78 ], "matches": [ - 2596, + 2644, { "distinct_on": [ - 2618, + 2666, "[matches_select_column!]" ], "limit": [ @@ -90124,19 +91054,19 @@ export default { 38 ], "order_by": [ - 2616, + 2664, "[matches_order_by!]" ], "where": [ - 2605 + 2653 ] } ], "matches_aggregate": [ - 2597, + 2645, { "distinct_on": [ - 2618, + 2666, "[matches_select_column!]" ], "limit": [ @@ -90146,11 +91076,11 @@ export default { 38 ], "order_by": [ - 2616, + 2664, "[matches_order_by!]" ], "where": [ - 2605 + 2653 ] } ], @@ -90158,10 +91088,10 @@ export default { 38 ], "offline_at": [ - 4324 + 4376 ], "plugin_runtime": [ - 941 + 968 ], "plugin_version": [ 78 @@ -90179,10 +91109,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4762 + 4921 ], "server_region": [ - 3826 + 3874 ], "steam_relay": [ 78 @@ -90191,10 +91121,10 @@ export default { 38 ], "type": [ - 1022 + 1049 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -90202,10 +91132,10 @@ export default { }, "servers_aggregate": { "aggregate": [ - 3859 + 3907 ], "nodes": [ - 3853 + 3901 ], "__typename": [ 78 @@ -90213,13 +91143,13 @@ export default { }, "servers_aggregate_bool_exp": { "bool_and": [ - 3856 + 3904 ], "bool_or": [ - 3857 + 3905 ], "count": [ - 3858 + 3906 ], "__typename": [ 78 @@ -90227,13 +91157,13 @@ export default { }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 3878 + 3926 ], "distinct": [ 3 ], "filter": [ - 3864 + 3912 ], "predicate": [ 4 @@ -90244,13 +91174,13 @@ export default { }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 3879 + 3927 ], "distinct": [ 3 ], "filter": [ - 3864 + 3912 ], "predicate": [ 4 @@ -90261,13 +91191,13 @@ export default { }, "servers_aggregate_bool_exp_count": { "arguments": [ - 3877 + 3925 ], "distinct": [ 3 ], "filter": [ - 3864 + 3912 ], "predicate": [ 39 @@ -90278,13 +91208,13 @@ export default { }, "servers_aggregate_fields": { "avg": [ - 3862 + 3910 ], "count": [ 38, { "columns": [ - 3877, + 3925, "[servers_select_column!]" ], "distinct": [ @@ -90293,31 +91223,31 @@ export default { } ], "max": [ - 3868 + 3916 ], "min": [ - 3870 + 3918 ], "stddev": [ - 3881 + 3929 ], "stddev_pop": [ - 3883 + 3931 ], "stddev_samp": [ - 3885 + 3933 ], "sum": [ - 3889 + 3937 ], "var_pop": [ - 3893 + 3941 ], "var_samp": [ - 3895 + 3943 ], "variance": [ - 3897 + 3945 ], "__typename": [ 78 @@ -90325,37 +91255,37 @@ export default { }, "servers_aggregate_order_by": { "avg": [ - 3863 + 3911 ], "count": [ - 2781 + 2829 ], "max": [ - 3869 + 3917 ], "min": [ - 3871 + 3919 ], "stddev": [ - 3882 + 3930 ], "stddev_pop": [ - 3884 + 3932 ], "stddev_samp": [ - 3886 + 3934 ], "sum": [ - 3890 + 3938 ], "var_pop": [ - 3894 + 3942 ], "var_samp": [ - 3896 + 3944 ], "variance": [ - 3898 + 3946 ], "__typename": [ 78 @@ -90363,10 +91293,10 @@ export default { }, "servers_arr_rel_insert_input": { "data": [ - 3867 + 3915 ], "on_conflict": [ - 3874 + 3922 ], "__typename": [ 78 @@ -90388,13 +91318,13 @@ export default { }, "servers_avg_order_by": { "max_players": [ - 2781 + 2829 ], "port": [ - 2781 + 2829 ], "tv_port": [ - 2781 + 2829 ], "__typename": [ 78 @@ -90402,16 +91332,16 @@ export default { }, "servers_bool_exp": { "_and": [ - 3864 + 3912 ], "_not": [ - 3864 + 3912 ], "_or": [ - 3864 + 3912 ], "api_password": [ - 4764 + 4923 ], "boot_status": [ 80 @@ -90432,7 +91362,7 @@ export default { 80 ], "current_match": [ - 2605 + 2653 ], "enabled": [ 4 @@ -90441,7 +91371,7 @@ export default { 80 ], "game_server_node": [ - 1540 + 1588 ], "game_server_node_id": [ 80 @@ -90450,7 +91380,7 @@ export default { 80 ], "id": [ - 4764 + 4923 ], "is_dedicated": [ 4 @@ -90459,19 +91389,19 @@ export default { 80 ], "matches": [ - 2605 + 2653 ], "matches_aggregate": [ - 2598 + 2646 ], "max_players": [ 39 ], "offline_at": [ - 4325 + 4377 ], "plugin_runtime": [ - 942 + 969 ], "plugin_version": [ 80 @@ -90489,10 +91419,10 @@ export default { 80 ], "reserved_by_match_id": [ - 4764 + 4923 ], "server_region": [ - 3830 + 3878 ], "steam_relay": [ 80 @@ -90501,10 +91431,10 @@ export default { 39 ], "type": [ - 1023 + 1050 ], "updated_at": [ - 4325 + 4377 ], "__typename": [ 78 @@ -90527,7 +91457,7 @@ export default { }, "servers_insert_input": { "api_password": [ - 4762 + 4921 ], "boot_status": [ 78 @@ -90542,7 +91472,7 @@ export default { 3 ], "current_match": [ - 2614 + 2662 ], "enabled": [ 3 @@ -90551,7 +91481,7 @@ export default { 78 ], "game_server_node": [ - 1552 + 1600 ], "game_server_node_id": [ 78 @@ -90560,7 +91490,7 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "is_dedicated": [ 3 @@ -90569,16 +91499,16 @@ export default { 78 ], "matches": [ - 2602 + 2650 ], "max_players": [ 38 ], "offline_at": [ - 4324 + 4376 ], "plugin_runtime": [ - 941 + 968 ], "plugin_version": [ 78 @@ -90596,10 +91526,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4762 + 4921 ], "server_region": [ - 3836 + 3884 ], "steam_relay": [ 78 @@ -90608,10 +91538,10 @@ export default { 38 ], "type": [ - 1022 + 1049 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -90619,7 +91549,7 @@ export default { }, "servers_max_fields": { "api_password": [ - 4762 + 4921 ], "boot_status": [ 78 @@ -90646,7 +91576,7 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "label": [ 78 @@ -90655,7 +91585,7 @@ export default { 38 ], "offline_at": [ - 4324 + 4376 ], "plugin_version": [ 78 @@ -90667,7 +91597,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4762 + 4921 ], "steam_relay": [ 78 @@ -90676,7 +91606,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -90684,58 +91614,58 @@ export default { }, "servers_max_order_by": { "api_password": [ - 2781 + 2829 ], "boot_status": [ - 2781 + 2829 ], "boot_status_detail": [ - 2781 + 2829 ], "connect_password": [ - 2781 + 2829 ], "game": [ - 2781 + 2829 ], "game_server_node_id": [ - 2781 + 2829 ], "host": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "max_players": [ - 2781 + 2829 ], "offline_at": [ - 2781 + 2829 ], "plugin_version": [ - 2781 + 2829 ], "port": [ - 2781 + 2829 ], "region": [ - 2781 + 2829 ], "reserved_by_match_id": [ - 2781 + 2829 ], "steam_relay": [ - 2781 + 2829 ], "tv_port": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "__typename": [ 78 @@ -90743,7 +91673,7 @@ export default { }, "servers_min_fields": { "api_password": [ - 4762 + 4921 ], "boot_status": [ 78 @@ -90770,7 +91700,7 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "label": [ 78 @@ -90779,7 +91709,7 @@ export default { 38 ], "offline_at": [ - 4324 + 4376 ], "plugin_version": [ 78 @@ -90791,7 +91721,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4762 + 4921 ], "steam_relay": [ 78 @@ -90800,7 +91730,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -90808,58 +91738,58 @@ export default { }, "servers_min_order_by": { "api_password": [ - 2781 + 2829 ], "boot_status": [ - 2781 + 2829 ], "boot_status_detail": [ - 2781 + 2829 ], "connect_password": [ - 2781 + 2829 ], "game": [ - 2781 + 2829 ], "game_server_node_id": [ - 2781 + 2829 ], "host": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "max_players": [ - 2781 + 2829 ], "offline_at": [ - 2781 + 2829 ], "plugin_version": [ - 2781 + 2829 ], "port": [ - 2781 + 2829 ], "region": [ - 2781 + 2829 ], "reserved_by_match_id": [ - 2781 + 2829 ], "steam_relay": [ - 2781 + 2829 ], "tv_port": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "__typename": [ 78 @@ -90870,7 +91800,7 @@ export default { 38 ], "returning": [ - 3853 + 3901 ], "__typename": [ 78 @@ -90878,10 +91808,10 @@ export default { }, "servers_obj_rel_insert_input": { "data": [ - 3867 + 3915 ], "on_conflict": [ - 3874 + 3922 ], "__typename": [ 78 @@ -90889,13 +91819,13 @@ export default { }, "servers_on_conflict": { "constraint": [ - 3865 + 3913 ], "update_columns": [ - 3891 + 3939 ], "where": [ - 3864 + 3912 ], "__typename": [ 78 @@ -90903,97 +91833,97 @@ export default { }, "servers_order_by": { "api_password": [ - 2781 + 2829 ], "boot_status": [ - 2781 + 2829 ], "boot_status_detail": [ - 2781 + 2829 ], "connect_password": [ - 2781 + 2829 ], "connected": [ - 2781 + 2829 ], "connection_link": [ - 2781 + 2829 ], "connection_string": [ - 2781 + 2829 ], "current_match": [ - 2616 + 2664 ], "enabled": [ - 2781 + 2829 ], "game": [ - 2781 + 2829 ], "game_server_node": [ - 1554 + 1602 ], "game_server_node_id": [ - 2781 + 2829 ], "host": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "is_dedicated": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "matches_aggregate": [ - 2601 + 2649 ], "max_players": [ - 2781 + 2829 ], "offline_at": [ - 2781 + 2829 ], "plugin_runtime": [ - 2781 + 2829 ], "plugin_version": [ - 2781 + 2829 ], "port": [ - 2781 + 2829 ], "rcon_password": [ - 2781 + 2829 ], "rcon_status": [ - 2781 + 2829 ], "region": [ - 2781 + 2829 ], "reserved_by_match_id": [ - 2781 + 2829 ], "server_region": [ - 3838 + 3886 ], "steam_relay": [ - 2781 + 2829 ], "tv_port": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "__typename": [ 78 @@ -91001,7 +91931,7 @@ export default { }, "servers_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -91012,7 +91942,7 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 4762 + 4921 ], "boot_status": [ 78 @@ -91039,7 +91969,7 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "is_dedicated": [ 3 @@ -91051,10 +91981,10 @@ export default { 38 ], "offline_at": [ - 4324 + 4376 ], "plugin_runtime": [ - 941 + 968 ], "plugin_version": [ 78 @@ -91072,7 +92002,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4762 + 4921 ], "steam_relay": [ 78 @@ -91081,10 +92011,10 @@ export default { 38 ], "type": [ - 1022 + 1049 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -91106,13 +92036,13 @@ export default { }, "servers_stddev_order_by": { "max_players": [ - 2781 + 2829 ], "port": [ - 2781 + 2829 ], "tv_port": [ - 2781 + 2829 ], "__typename": [ 78 @@ -91134,13 +92064,13 @@ export default { }, "servers_stddev_pop_order_by": { "max_players": [ - 2781 + 2829 ], "port": [ - 2781 + 2829 ], "tv_port": [ - 2781 + 2829 ], "__typename": [ 78 @@ -91162,13 +92092,13 @@ export default { }, "servers_stddev_samp_order_by": { "max_players": [ - 2781 + 2829 ], "port": [ - 2781 + 2829 ], "tv_port": [ - 2781 + 2829 ], "__typename": [ 78 @@ -91176,7 +92106,7 @@ export default { }, "servers_stream_cursor_input": { "initial_value": [ - 3888 + 3936 ], "ordering": [ 236 @@ -91187,7 +92117,7 @@ export default { }, "servers_stream_cursor_value_input": { "api_password": [ - 4762 + 4921 ], "boot_status": [ 78 @@ -91214,7 +92144,7 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "is_dedicated": [ 3 @@ -91226,10 +92156,10 @@ export default { 38 ], "offline_at": [ - 4324 + 4376 ], "plugin_runtime": [ - 941 + 968 ], "plugin_version": [ 78 @@ -91247,7 +92177,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4762 + 4921 ], "steam_relay": [ 78 @@ -91256,10 +92186,10 @@ export default { 38 ], "type": [ - 1022 + 1049 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -91281,13 +92211,13 @@ export default { }, "servers_sum_order_by": { "max_players": [ - 2781 + 2829 ], "port": [ - 2781 + 2829 ], "tv_port": [ - 2781 + 2829 ], "__typename": [ 78 @@ -91296,13 +92226,13 @@ export default { "servers_update_column": {}, "servers_updates": { "_inc": [ - 3866 + 3914 ], "_set": [ - 3880 + 3928 ], "where": [ - 3864 + 3912 ], "__typename": [ 78 @@ -91324,13 +92254,13 @@ export default { }, "servers_var_pop_order_by": { "max_players": [ - 2781 + 2829 ], "port": [ - 2781 + 2829 ], "tv_port": [ - 2781 + 2829 ], "__typename": [ 78 @@ -91352,13 +92282,13 @@ export default { }, "servers_var_samp_order_by": { "max_players": [ - 2781 + 2829 ], "port": [ - 2781 + 2829 ], "tv_port": [ - 2781 + 2829 ], "__typename": [ 78 @@ -91380,13 +92310,13 @@ export default { }, "servers_variance_order_by": { "max_players": [ - 2781 + 2829 ], "port": [ - 2781 + 2829 ], "tv_port": [ - 2781 + 2829 ], "__typename": [ 78 @@ -91405,10 +92335,10 @@ export default { }, "settings_aggregate": { "aggregate": [ - 3901 + 3949 ], "nodes": [ - 3899 + 3947 ], "__typename": [ 78 @@ -91419,7 +92349,7 @@ export default { 38, { "columns": [ - 3911, + 3959, "[settings_select_column!]" ], "distinct": [ @@ -91428,10 +92358,10 @@ export default { } ], "max": [ - 3905 + 3953 ], "min": [ - 3906 + 3954 ], "__typename": [ 78 @@ -91439,13 +92369,13 @@ export default { }, "settings_bool_exp": { "_and": [ - 3902 + 3950 ], "_not": [ - 3902 + 3950 ], "_or": [ - 3902 + 3950 ], "name": [ 80 @@ -91496,7 +92426,7 @@ export default { 38 ], "returning": [ - 3899 + 3947 ], "__typename": [ 78 @@ -91504,13 +92434,13 @@ export default { }, "settings_on_conflict": { "constraint": [ - 3903 + 3951 ], "update_columns": [ - 3915 + 3963 ], "where": [ - 3902 + 3950 ], "__typename": [ 78 @@ -91518,10 +92448,10 @@ export default { }, "settings_order_by": { "name": [ - 2781 + 2829 ], "value": [ - 2781 + 2829 ], "__typename": [ 78 @@ -91549,7 +92479,7 @@ export default { }, "settings_stream_cursor_input": { "initial_value": [ - 3914 + 3962 ], "ordering": [ 236 @@ -91572,10 +92502,10 @@ export default { "settings_update_column": {}, "settings_updates": { "_set": [ - 3912 + 3960 ], "where": [ - 3902 + 3950 ], "__typename": [ 78 @@ -91584,31 +92514,31 @@ export default { "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 3917 + 3965 ], "_gt": [ - 3917 + 3965 ], "_gte": [ - 3917 + 3965 ], "_in": [ - 3917 + 3965 ], "_is_null": [ 3 ], "_lt": [ - 3917 + 3965 ], "_lte": [ - 3917 + 3965 ], "_neq": [ - 3917 + 3965 ], "_nin": [ - 3917 + 3965 ], "__typename": [ 78 @@ -91616,16 +92546,16 @@ export default { }, "steam_account_claims": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 ], "node": [ - 1528 + 1576 ], "node_id": [ 78 @@ -91634,10 +92564,10 @@ export default { 78 ], "steam_account": [ - 3943 + 3991 ], "steam_account_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -91645,10 +92575,10 @@ export default { }, "steam_account_claims_aggregate": { "aggregate": [ - 3923 + 3971 ], "nodes": [ - 3919 + 3967 ], "__typename": [ 78 @@ -91656,7 +92586,7 @@ export default { }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 3922 + 3970 ], "__typename": [ 78 @@ -91664,13 +92594,13 @@ export default { }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 3937 + 3985 ], "distinct": [ 3 ], "filter": [ - 3926 + 3974 ], "predicate": [ 39 @@ -91684,7 +92614,7 @@ export default { 38, { "columns": [ - 3937, + 3985, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -91693,10 +92623,10 @@ export default { } ], "max": [ - 3929 + 3977 ], "min": [ - 3931 + 3979 ], "__typename": [ 78 @@ -91704,13 +92634,13 @@ export default { }, "steam_account_claims_aggregate_order_by": { "count": [ - 2781 + 2829 ], "max": [ - 3930 + 3978 ], "min": [ - 3932 + 3980 ], "__typename": [ 78 @@ -91718,10 +92648,10 @@ export default { }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 3928 + 3976 ], "on_conflict": [ - 3934 + 3982 ], "__typename": [ 78 @@ -91729,25 +92659,25 @@ export default { }, "steam_account_claims_bool_exp": { "_and": [ - 3926 + 3974 ], "_not": [ - 3926 + 3974 ], "_or": [ - 3926 + 3974 ], "created_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "k8s_job_name": [ 80 ], "node": [ - 1540 + 1588 ], "node_id": [ 80 @@ -91756,10 +92686,10 @@ export default { 80 ], "steam_account": [ - 3947 + 3995 ], "steam_account_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -91768,16 +92698,16 @@ export default { "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 ], "node": [ - 1552 + 1600 ], "node_id": [ 78 @@ -91786,10 +92716,10 @@ export default { 78 ], "steam_account": [ - 3954 + 4002 ], "steam_account_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -91797,10 +92727,10 @@ export default { }, "steam_account_claims_max_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 @@ -91812,7 +92742,7 @@ export default { 78 ], "steam_account_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -91820,22 +92750,22 @@ export default { }, "steam_account_claims_max_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "k8s_job_name": [ - 2781 + 2829 ], "node_id": [ - 2781 + 2829 ], "purpose": [ - 2781 + 2829 ], "steam_account_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -91843,10 +92773,10 @@ export default { }, "steam_account_claims_min_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 @@ -91858,7 +92788,7 @@ export default { 78 ], "steam_account_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -91866,22 +92796,22 @@ export default { }, "steam_account_claims_min_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "k8s_job_name": [ - 2781 + 2829 ], "node_id": [ - 2781 + 2829 ], "purpose": [ - 2781 + 2829 ], "steam_account_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -91892,7 +92822,7 @@ export default { 38 ], "returning": [ - 3919 + 3967 ], "__typename": [ 78 @@ -91900,13 +92830,13 @@ export default { }, "steam_account_claims_on_conflict": { "constraint": [ - 3927 + 3975 ], "update_columns": [ - 3941 + 3989 ], "where": [ - 3926 + 3974 ], "__typename": [ 78 @@ -91914,28 +92844,28 @@ export default { }, "steam_account_claims_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "k8s_job_name": [ - 2781 + 2829 ], "node": [ - 1554 + 1602 ], "node_id": [ - 2781 + 2829 ], "purpose": [ - 2781 + 2829 ], "steam_account": [ - 3956 + 4004 ], "steam_account_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -91943,7 +92873,7 @@ export default { }, "steam_account_claims_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -91952,10 +92882,10 @@ export default { "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 @@ -91967,7 +92897,7 @@ export default { 78 ], "steam_account_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -91975,7 +92905,7 @@ export default { }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 3940 + 3988 ], "ordering": [ 236 @@ -91986,10 +92916,10 @@ export default { }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "k8s_job_name": [ 78 @@ -92001,7 +92931,7 @@ export default { 78 ], "steam_account_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -92010,10 +92940,10 @@ export default { "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 3938 + 3986 ], "where": [ - 3926 + 3974 ], "__typename": [ 78 @@ -92021,10 +92951,10 @@ export default { }, "steam_accounts": { "claims": [ - 3919, + 3967, { "distinct_on": [ - 3937, + 3985, "[steam_account_claims_select_column!]" ], "limit": [ @@ -92034,19 +92964,19 @@ export default { 38 ], "order_by": [ - 3935, + 3983, "[steam_account_claims_order_by!]" ], "where": [ - 3926 + 3974 ] } ], "claims_aggregate": [ - 3920, + 3968, { "distinct_on": [ - 3937, + 3985, "[steam_account_claims_select_column!]" ], "limit": [ @@ -92056,25 +92986,25 @@ export default { 38 ], "order_by": [ - 3935, + 3983, "[steam_account_claims_order_by!]" ], "where": [ - 3926 + 3974 ] } ], "created_at": [ - 4324 + 4376 ], "friend_capacity": [ 38 ], "id": [ - 4762 + 4921 ], "last_node": [ - 1528 + 1576 ], "last_node_id": [ 78 @@ -92092,7 +93022,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4376 ], "username": [ 78 @@ -92103,10 +93033,10 @@ export default { }, "steam_accounts_aggregate": { "aggregate": [ - 3945 + 3993 ], "nodes": [ - 3943 + 3991 ], "__typename": [ 78 @@ -92114,13 +93044,13 @@ export default { }, "steam_accounts_aggregate_fields": { "avg": [ - 3946 + 3994 ], "count": [ 38, { "columns": [ - 3958, + 4006, "[steam_accounts_select_column!]" ], "distinct": [ @@ -92129,31 +93059,31 @@ export default { } ], "max": [ - 3951 + 3999 ], "min": [ - 3952 + 4000 ], "stddev": [ - 3960 + 4008 ], "stddev_pop": [ - 3961 + 4009 ], "stddev_samp": [ - 3962 + 4010 ], "sum": [ - 3965 + 4013 ], "var_pop": [ - 3968 + 4016 ], "var_samp": [ - 3969 + 4017 ], "variance": [ - 3970 + 4018 ], "__typename": [ 78 @@ -92175,31 +93105,31 @@ export default { }, "steam_accounts_bool_exp": { "_and": [ - 3947 + 3995 ], "_not": [ - 3947 + 3995 ], "_or": [ - 3947 + 3995 ], "claims": [ - 3926 + 3974 ], "claims_aggregate": [ - 3921 + 3969 ], "created_at": [ - 4325 + 4377 ], "friend_capacity": [ 39 ], "id": [ - 4764 + 4923 ], "last_node": [ - 1540 + 1588 ], "last_node_id": [ 80 @@ -92217,7 +93147,7 @@ export default { 182 ], "updated_at": [ - 4325 + 4377 ], "username": [ 80 @@ -92243,19 +93173,19 @@ export default { }, "steam_accounts_insert_input": { "claims": [ - 3925 + 3973 ], "created_at": [ - 4324 + 4376 ], "friend_capacity": [ 38 ], "id": [ - 4762 + 4921 ], "last_node": [ - 1552 + 1600 ], "last_node_id": [ 78 @@ -92273,7 +93203,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4376 ], "username": [ 78 @@ -92284,13 +93214,13 @@ export default { }, "steam_accounts_max_fields": { "created_at": [ - 4324 + 4376 ], "friend_capacity": [ 38 ], "id": [ - 4762 + 4921 ], "last_node_id": [ 78 @@ -92308,7 +93238,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4376 ], "username": [ 78 @@ -92319,13 +93249,13 @@ export default { }, "steam_accounts_min_fields": { "created_at": [ - 4324 + 4376 ], "friend_capacity": [ 38 ], "id": [ - 4762 + 4921 ], "last_node_id": [ 78 @@ -92343,7 +93273,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4376 ], "username": [ 78 @@ -92357,7 +93287,7 @@ export default { 38 ], "returning": [ - 3943 + 3991 ], "__typename": [ 78 @@ -92365,10 +93295,10 @@ export default { }, "steam_accounts_obj_rel_insert_input": { "data": [ - 3950 + 3998 ], "on_conflict": [ - 3955 + 4003 ], "__typename": [ 78 @@ -92376,13 +93306,13 @@ export default { }, "steam_accounts_on_conflict": { "constraint": [ - 3948 + 3996 ], "update_columns": [ - 3966 + 4014 ], "where": [ - 3947 + 3995 ], "__typename": [ 78 @@ -92390,40 +93320,40 @@ export default { }, "steam_accounts_order_by": { "claims_aggregate": [ - 3924 + 3972 ], "created_at": [ - 2781 + 2829 ], "friend_capacity": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "last_node": [ - 1554 + 1602 ], "last_node_id": [ - 2781 + 2829 ], "password": [ - 2781 + 2829 ], "role": [ - 2781 + 2829 ], "steam_level": [ - 2781 + 2829 ], "steamid64": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "username": [ - 2781 + 2829 ], "__typename": [ 78 @@ -92431,7 +93361,7 @@ export default { }, "steam_accounts_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -92440,13 +93370,13 @@ export default { "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4324 + 4376 ], "friend_capacity": [ 38 ], "id": [ - 4762 + 4921 ], "last_node_id": [ 78 @@ -92464,7 +93394,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4376 ], "username": [ 78 @@ -92517,7 +93447,7 @@ export default { }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 3964 + 4012 ], "ordering": [ 236 @@ -92528,13 +93458,13 @@ export default { }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "friend_capacity": [ 38 ], "id": [ - 4762 + 4921 ], "last_node_id": [ 78 @@ -92552,7 +93482,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4376 ], "username": [ 78 @@ -92578,13 +93508,13 @@ export default { "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 3949 + 3997 ], "_set": [ - 3959 + 4007 ], "where": [ - 3947 + 3995 ], "__typename": [ 78 @@ -92634,7 +93564,7 @@ export default { }, "system_alerts": { "created_at": [ - 4324 + 4376 ], "created_by": [ 180 @@ -92643,10 +93573,10 @@ export default { 3 ], "expires_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "is_active": [ 3 @@ -92658,10 +93588,10 @@ export default { 78 ], "type": [ - 1062 + 1089 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -92669,10 +93599,10 @@ export default { }, "system_alerts_aggregate": { "aggregate": [ - 3973 + 4021 ], "nodes": [ - 3971 + 4019 ], "__typename": [ 78 @@ -92680,13 +93610,13 @@ export default { }, "system_alerts_aggregate_fields": { "avg": [ - 3974 + 4022 ], "count": [ 38, { "columns": [ - 3985, + 4033, "[system_alerts_select_column!]" ], "distinct": [ @@ -92695,31 +93625,31 @@ export default { } ], "max": [ - 3979 + 4027 ], "min": [ - 3980 + 4028 ], "stddev": [ - 3987 + 4035 ], "stddev_pop": [ - 3988 + 4036 ], "stddev_samp": [ - 3989 + 4037 ], "sum": [ - 3992 + 4040 ], "var_pop": [ - 3995 + 4043 ], "var_samp": [ - 3996 + 4044 ], "variance": [ - 3997 + 4045 ], "__typename": [ 78 @@ -92735,16 +93665,16 @@ export default { }, "system_alerts_bool_exp": { "_and": [ - 3975 + 4023 ], "_not": [ - 3975 + 4023 ], "_or": [ - 3975 + 4023 ], "created_at": [ - 4325 + 4377 ], "created_by": [ 182 @@ -92753,10 +93683,10 @@ export default { 4 ], "expires_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "is_active": [ 4 @@ -92768,10 +93698,10 @@ export default { 80 ], "type": [ - 1063 + 1090 ], "updated_at": [ - 4325 + 4377 ], "__typename": [ 78 @@ -92788,7 +93718,7 @@ export default { }, "system_alerts_insert_input": { "created_at": [ - 4324 + 4376 ], "created_by": [ 180 @@ -92797,10 +93727,10 @@ export default { 3 ], "expires_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "is_active": [ 3 @@ -92812,10 +93742,10 @@ export default { 78 ], "type": [ - 1062 + 1089 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -92823,16 +93753,16 @@ export default { }, "system_alerts_max_fields": { "created_at": [ - 4324 + 4376 ], "created_by": [ 180 ], "expires_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "message": [ 78 @@ -92841,7 +93771,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -92849,16 +93779,16 @@ export default { }, "system_alerts_min_fields": { "created_at": [ - 4324 + 4376 ], "created_by": [ 180 ], "expires_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "message": [ 78 @@ -92867,7 +93797,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -92878,7 +93808,7 @@ export default { 38 ], "returning": [ - 3971 + 4019 ], "__typename": [ 78 @@ -92886,13 +93816,13 @@ export default { }, "system_alerts_on_conflict": { "constraint": [ - 3976 + 4024 ], "update_columns": [ - 3993 + 4041 ], "where": [ - 3975 + 4023 ], "__typename": [ 78 @@ -92900,34 +93830,34 @@ export default { }, "system_alerts_order_by": { "created_at": [ - 2781 + 2829 ], "created_by": [ - 2781 + 2829 ], "dismissible": [ - 2781 + 2829 ], "expires_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "is_active": [ - 2781 + 2829 ], "message": [ - 2781 + 2829 ], "title": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "__typename": [ 78 @@ -92935,7 +93865,7 @@ export default { }, "system_alerts_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -92944,7 +93874,7 @@ export default { "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4324 + 4376 ], "created_by": [ 180 @@ -92953,10 +93883,10 @@ export default { 3 ], "expires_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "is_active": [ 3 @@ -92968,10 +93898,10 @@ export default { 78 ], "type": [ - 1062 + 1089 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -93003,7 +93933,7 @@ export default { }, "system_alerts_stream_cursor_input": { "initial_value": [ - 3991 + 4039 ], "ordering": [ 236 @@ -93014,7 +93944,7 @@ export default { }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "created_by": [ 180 @@ -93023,10 +93953,10 @@ export default { 3 ], "expires_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "is_active": [ 3 @@ -93038,10 +93968,10 @@ export default { 78 ], "type": [ - 1062 + 1089 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -93058,13 +93988,13 @@ export default { "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 3977 + 4025 ], "_set": [ - 3986 + 4034 ], "where": [ - 3975 + 4023 ], "__typename": [ 78 @@ -93096,28 +94026,28 @@ export default { }, "team_invites": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "invited_by": [ - 3739 + 3787 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3739 + 3787 ], "steam_id": [ 180 ], "team": [ - 4281 + 4329 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -93125,10 +94055,10 @@ export default { }, "team_invites_aggregate": { "aggregate": [ - 4002 + 4050 ], "nodes": [ - 3998 + 4046 ], "__typename": [ 78 @@ -93136,7 +94066,7 @@ export default { }, "team_invites_aggregate_bool_exp": { "count": [ - 4001 + 4049 ], "__typename": [ 78 @@ -93144,13 +94074,13 @@ export default { }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 4019 + 4067 ], "distinct": [ 3 ], "filter": [ - 4007 + 4055 ], "predicate": [ 39 @@ -93161,13 +94091,13 @@ export default { }, "team_invites_aggregate_fields": { "avg": [ - 4005 + 4053 ], "count": [ 38, { "columns": [ - 4019, + 4067, "[team_invites_select_column!]" ], "distinct": [ @@ -93176,31 +94106,31 @@ export default { } ], "max": [ - 4011 + 4059 ], "min": [ - 4013 + 4061 ], "stddev": [ - 4021 + 4069 ], "stddev_pop": [ - 4023 + 4071 ], "stddev_samp": [ - 4025 + 4073 ], "sum": [ - 4029 + 4077 ], "var_pop": [ - 4033 + 4081 ], "var_samp": [ - 4035 + 4083 ], "variance": [ - 4037 + 4085 ], "__typename": [ 78 @@ -93208,37 +94138,37 @@ export default { }, "team_invites_aggregate_order_by": { "avg": [ - 4006 + 4054 ], "count": [ - 2781 + 2829 ], "max": [ - 4012 + 4060 ], "min": [ - 4014 + 4062 ], "stddev": [ - 4022 + 4070 ], "stddev_pop": [ - 4024 + 4072 ], "stddev_samp": [ - 4026 + 4074 ], "sum": [ - 4030 + 4078 ], "var_pop": [ - 4034 + 4082 ], "var_samp": [ - 4036 + 4084 ], "variance": [ - 4038 + 4086 ], "__typename": [ 78 @@ -93246,10 +94176,10 @@ export default { }, "team_invites_arr_rel_insert_input": { "data": [ - 4010 + 4058 ], "on_conflict": [ - 4016 + 4064 ], "__typename": [ 78 @@ -93268,10 +94198,10 @@ export default { }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -93279,37 +94209,37 @@ export default { }, "team_invites_bool_exp": { "_and": [ - 4007 + 4055 ], "_not": [ - 4007 + 4055 ], "_or": [ - 4007 + 4055 ], "created_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "invited_by": [ - 3743 + 3791 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3743 + 3791 ], "steam_id": [ 182 ], "team": [ - 4290 + 4340 ], "team_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -93329,28 +94259,28 @@ export default { }, "team_invites_insert_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "invited_by": [ - 3750 + 3798 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3750 + 3798 ], "steam_id": [ 180 ], "team": [ - 4299 + 4349 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -93358,10 +94288,10 @@ export default { }, "team_invites_max_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "invited_by_player_steam_id": [ 180 @@ -93370,7 +94300,7 @@ export default { 180 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -93378,19 +94308,19 @@ export default { }, "team_invites_max_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -93398,10 +94328,10 @@ export default { }, "team_invites_min_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "invited_by_player_steam_id": [ 180 @@ -93410,7 +94340,7 @@ export default { 180 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -93418,19 +94348,19 @@ export default { }, "team_invites_min_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -93441,7 +94371,7 @@ export default { 38 ], "returning": [ - 3998 + 4046 ], "__typename": [ 78 @@ -93449,13 +94379,13 @@ export default { }, "team_invites_on_conflict": { "constraint": [ - 4008 + 4056 ], "update_columns": [ - 4031 + 4079 ], "where": [ - 4007 + 4055 ], "__typename": [ 78 @@ -93463,28 +94393,28 @@ export default { }, "team_invites_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "invited_by": [ - 3752 + 3800 ], "invited_by_player_steam_id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "steam_id": [ - 2781 + 2829 ], "team": [ - 4301 + 4351 ], "team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -93492,7 +94422,7 @@ export default { }, "team_invites_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -93501,10 +94431,10 @@ export default { "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "invited_by_player_steam_id": [ 180 @@ -93513,7 +94443,7 @@ export default { 180 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -93532,10 +94462,10 @@ export default { }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -93554,10 +94484,10 @@ export default { }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -93576,10 +94506,10 @@ export default { }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -93587,7 +94517,7 @@ export default { }, "team_invites_stream_cursor_input": { "initial_value": [ - 4028 + 4076 ], "ordering": [ 236 @@ -93598,10 +94528,10 @@ export default { }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "invited_by_player_steam_id": [ 180 @@ -93610,7 +94540,7 @@ export default { 180 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -93629,10 +94559,10 @@ export default { }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -93641,13 +94571,13 @@ export default { "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 4009 + 4057 ], "_set": [ - 4020 + 4068 ], "where": [ - 4007 + 4055 ], "__typename": [ 78 @@ -93666,10 +94596,10 @@ export default { }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -93688,10 +94618,10 @@ export default { }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -93710,10 +94640,10 @@ export default { }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -93724,25 +94654,25 @@ export default { 3 ], "player": [ - 3739 + 3787 ], "player_steam_id": [ 180 ], "role": [ - 1082 + 1109 ], "roster_image_url": [ 78 ], "status": [ - 1103 + 1130 ], "team": [ - 4281 + 4329 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -93750,10 +94680,10 @@ export default { }, "team_roster_aggregate": { "aggregate": [ - 4045 + 4093 ], "nodes": [ - 4039 + 4087 ], "__typename": [ 78 @@ -93761,13 +94691,13 @@ export default { }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 4042 + 4090 ], "bool_or": [ - 4043 + 4091 ], "count": [ - 4044 + 4092 ], "__typename": [ 78 @@ -93775,13 +94705,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 4063 + 4111 ], "distinct": [ 3 ], "filter": [ - 4050 + 4098 ], "predicate": [ 4 @@ -93792,13 +94722,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 4064 + 4112 ], "distinct": [ 3 ], "filter": [ - 4050 + 4098 ], "predicate": [ 4 @@ -93809,13 +94739,13 @@ export default { }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 4062 + 4110 ], "distinct": [ 3 ], "filter": [ - 4050 + 4098 ], "predicate": [ 39 @@ -93826,13 +94756,13 @@ export default { }, "team_roster_aggregate_fields": { "avg": [ - 4048 + 4096 ], "count": [ 38, { "columns": [ - 4062, + 4110, "[team_roster_select_column!]" ], "distinct": [ @@ -93841,31 +94771,31 @@ export default { } ], "max": [ - 4054 + 4102 ], "min": [ - 4056 + 4104 ], "stddev": [ - 4066 + 4114 ], "stddev_pop": [ - 4068 + 4116 ], "stddev_samp": [ - 4070 + 4118 ], "sum": [ - 4074 + 4122 ], "var_pop": [ - 4078 + 4126 ], "var_samp": [ - 4080 + 4128 ], "variance": [ - 4082 + 4130 ], "__typename": [ 78 @@ -93873,37 +94803,37 @@ export default { }, "team_roster_aggregate_order_by": { "avg": [ - 4049 + 4097 ], "count": [ - 2781 + 2829 ], "max": [ - 4055 + 4103 ], "min": [ - 4057 + 4105 ], "stddev": [ - 4067 + 4115 ], "stddev_pop": [ - 4069 + 4117 ], "stddev_samp": [ - 4071 + 4119 ], "sum": [ - 4075 + 4123 ], "var_pop": [ - 4079 + 4127 ], "var_samp": [ - 4081 + 4129 ], "variance": [ - 4083 + 4131 ], "__typename": [ 78 @@ -93911,10 +94841,10 @@ export default { }, "team_roster_arr_rel_insert_input": { "data": [ - 4053 + 4101 ], "on_conflict": [ - 4059 + 4107 ], "__typename": [ 78 @@ -93930,7 +94860,7 @@ export default { }, "team_roster_avg_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -93938,37 +94868,37 @@ export default { }, "team_roster_bool_exp": { "_and": [ - 4050 + 4098 ], "_not": [ - 4050 + 4098 ], "_or": [ - 4050 + 4098 ], "coach": [ 4 ], "player": [ - 3743 + 3791 ], "player_steam_id": [ 182 ], "role": [ - 1083 + 1110 ], "roster_image_url": [ 80 ], "status": [ - 1104 + 1131 ], "team": [ - 4290 + 4340 ], "team_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -93988,25 +94918,25 @@ export default { 3 ], "player": [ - 3750 + 3798 ], "player_steam_id": [ 180 ], "role": [ - 1082 + 1109 ], "roster_image_url": [ 78 ], "status": [ - 1103 + 1130 ], "team": [ - 4299 + 4349 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -94020,7 +94950,7 @@ export default { 78 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -94028,13 +94958,13 @@ export default { }, "team_roster_max_order_by": { "player_steam_id": [ - 2781 + 2829 ], "roster_image_url": [ - 2781 + 2829 ], "team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -94048,7 +94978,7 @@ export default { 78 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -94056,13 +94986,13 @@ export default { }, "team_roster_min_order_by": { "player_steam_id": [ - 2781 + 2829 ], "roster_image_url": [ - 2781 + 2829 ], "team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -94073,7 +95003,7 @@ export default { 38 ], "returning": [ - 4039 + 4087 ], "__typename": [ 78 @@ -94081,13 +95011,13 @@ export default { }, "team_roster_on_conflict": { "constraint": [ - 4051 + 4099 ], "update_columns": [ - 4076 + 4124 ], "where": [ - 4050 + 4098 ], "__typename": [ 78 @@ -94095,28 +95025,28 @@ export default { }, "team_roster_order_by": { "coach": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "player_steam_id": [ - 2781 + 2829 ], "role": [ - 2781 + 2829 ], "roster_image_url": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "team": [ - 4301 + 4351 ], "team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -94127,7 +95057,7 @@ export default { 180 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -94144,16 +95074,16 @@ export default { 180 ], "role": [ - 1082 + 1109 ], "roster_image_url": [ 78 ], "status": [ - 1103 + 1130 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -94169,7 +95099,7 @@ export default { }, "team_roster_stddev_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -94185,7 +95115,7 @@ export default { }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -94201,7 +95131,7 @@ export default { }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -94209,7 +95139,7 @@ export default { }, "team_roster_stream_cursor_input": { "initial_value": [ - 4073 + 4121 ], "ordering": [ 236 @@ -94226,16 +95156,16 @@ export default { 180 ], "role": [ - 1082 + 1109 ], "roster_image_url": [ 78 ], "status": [ - 1103 + 1130 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -94251,7 +95181,7 @@ export default { }, "team_roster_sum_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -94260,13 +95190,13 @@ export default { "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 4052 + 4100 ], "_set": [ - 4065 + 4113 ], "where": [ - 4050 + 4098 ], "__typename": [ 78 @@ -94282,7 +95212,7 @@ export default { }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -94298,7 +95228,7 @@ export default { }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -94314,7 +95244,7 @@ export default { }, "team_roster_variance_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -94322,7 +95252,7 @@ export default { }, "team_scrim_alerts": { "created_at": [ - 4324 + 4376 ], "elo_max": [ 38 @@ -94334,19 +95264,19 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "last_notified_at": [ - 4324 + 4376 ], "regions": [ 78 ], "team": [ - 4281 + 4329 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -94354,10 +95284,10 @@ export default { }, "team_scrim_alerts_aggregate": { "aggregate": [ - 4086 + 4134 ], "nodes": [ - 4084 + 4132 ], "__typename": [ 78 @@ -94365,13 +95295,13 @@ export default { }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 4087 + 4135 ], "count": [ 38, { "columns": [ - 4098, + 4146, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -94380,31 +95310,31 @@ export default { } ], "max": [ - 4092 + 4140 ], "min": [ - 4093 + 4141 ], "stddev": [ - 4100 + 4148 ], "stddev_pop": [ - 4101 + 4149 ], "stddev_samp": [ - 4102 + 4150 ], "sum": [ - 4105 + 4153 ], "var_pop": [ - 4108 + 4156 ], "var_samp": [ - 4109 + 4157 ], "variance": [ - 4110 + 4158 ], "__typename": [ 78 @@ -94423,16 +95353,16 @@ export default { }, "team_scrim_alerts_bool_exp": { "_and": [ - 4088 + 4136 ], "_not": [ - 4088 + 4136 ], "_or": [ - 4088 + 4136 ], "created_at": [ - 4325 + 4377 ], "elo_max": [ 39 @@ -94444,19 +95374,19 @@ export default { 4 ], "id": [ - 4764 + 4923 ], "last_notified_at": [ - 4325 + 4377 ], "regions": [ 79 ], "team": [ - 4290 + 4340 ], "team_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -94476,7 +95406,7 @@ export default { }, "team_scrim_alerts_insert_input": { "created_at": [ - 4324 + 4376 ], "elo_max": [ 38 @@ -94488,19 +95418,19 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "last_notified_at": [ - 4324 + 4376 ], "regions": [ 78 ], "team": [ - 4299 + 4349 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -94508,7 +95438,7 @@ export default { }, "team_scrim_alerts_max_fields": { "created_at": [ - 4324 + 4376 ], "elo_max": [ 38 @@ -94517,16 +95447,16 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "last_notified_at": [ - 4324 + 4376 ], "regions": [ 78 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -94534,7 +95464,7 @@ export default { }, "team_scrim_alerts_min_fields": { "created_at": [ - 4324 + 4376 ], "elo_max": [ 38 @@ -94543,16 +95473,16 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "last_notified_at": [ - 4324 + 4376 ], "regions": [ 78 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -94563,7 +95493,7 @@ export default { 38 ], "returning": [ - 4084 + 4132 ], "__typename": [ 78 @@ -94571,13 +95501,13 @@ export default { }, "team_scrim_alerts_on_conflict": { "constraint": [ - 4089 + 4137 ], "update_columns": [ - 4106 + 4154 ], "where": [ - 4088 + 4136 ], "__typename": [ 78 @@ -94585,31 +95515,31 @@ export default { }, "team_scrim_alerts_order_by": { "created_at": [ - 2781 + 2829 ], "elo_max": [ - 2781 + 2829 ], "elo_min": [ - 2781 + 2829 ], "enabled": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "last_notified_at": [ - 2781 + 2829 ], "regions": [ - 2781 + 2829 ], "team": [ - 4301 + 4351 ], "team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -94617,7 +95547,7 @@ export default { }, "team_scrim_alerts_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -94626,7 +95556,7 @@ export default { "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4324 + 4376 ], "elo_max": [ 38 @@ -94638,16 +95568,16 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "last_notified_at": [ - 4324 + 4376 ], "regions": [ 78 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -94688,7 +95618,7 @@ export default { }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 4104 + 4152 ], "ordering": [ 236 @@ -94699,7 +95629,7 @@ export default { }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "elo_max": [ 38 @@ -94711,16 +95641,16 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "last_notified_at": [ - 4324 + 4376 ], "regions": [ 78 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -94740,13 +95670,13 @@ export default { "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 4090 + 4138 ], "_set": [ - 4099 + 4147 ], "where": [ - 4088 + 4136 ], "__typename": [ 78 @@ -94787,25 +95717,25 @@ export default { }, "team_scrim_availability": { "created_at": [ - 4324 + 4376 ], "ends_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4324 + 4376 ], "team": [ - 4281 + 4329 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -94813,10 +95743,10 @@ export default { }, "team_scrim_availability_aggregate": { "aggregate": [ - 4117 + 4165 ], "nodes": [ - 4111 + 4159 ], "__typename": [ 78 @@ -94824,13 +95754,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 4114 + 4162 ], "bool_or": [ - 4115 + 4163 ], "count": [ - 4116 + 4164 ], "__typename": [ 78 @@ -94838,13 +95768,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 4132 + 4180 ], "distinct": [ 3 ], "filter": [ - 4120 + 4168 ], "predicate": [ 4 @@ -94855,13 +95785,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 4133 + 4181 ], "distinct": [ 3 ], "filter": [ - 4120 + 4168 ], "predicate": [ 4 @@ -94872,13 +95802,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 4131 + 4179 ], "distinct": [ 3 ], "filter": [ - 4120 + 4168 ], "predicate": [ 39 @@ -94892,7 +95822,7 @@ export default { 38, { "columns": [ - 4131, + 4179, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -94901,10 +95831,10 @@ export default { } ], "max": [ - 4123 + 4171 ], "min": [ - 4125 + 4173 ], "__typename": [ 78 @@ -94912,13 +95842,13 @@ export default { }, "team_scrim_availability_aggregate_order_by": { "count": [ - 2781 + 2829 ], "max": [ - 4124 + 4172 ], "min": [ - 4126 + 4174 ], "__typename": [ 78 @@ -94926,10 +95856,10 @@ export default { }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 4122 + 4170 ], "on_conflict": [ - 4128 + 4176 ], "__typename": [ 78 @@ -94937,34 +95867,34 @@ export default { }, "team_scrim_availability_bool_exp": { "_and": [ - 4120 + 4168 ], "_not": [ - 4120 + 4168 ], "_or": [ - 4120 + 4168 ], "created_at": [ - 4325 + 4377 ], "ends_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "recurring_weekly": [ 4 ], "starts_at": [ - 4325 + 4377 ], "team": [ - 4290 + 4340 ], "team_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -94973,25 +95903,25 @@ export default { "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4324 + 4376 ], "ends_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4324 + 4376 ], "team": [ - 4299 + 4349 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -94999,19 +95929,19 @@ export default { }, "team_scrim_availability_max_fields": { "created_at": [ - 4324 + 4376 ], "ends_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "starts_at": [ - 4324 + 4376 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -95019,19 +95949,19 @@ export default { }, "team_scrim_availability_max_order_by": { "created_at": [ - 2781 + 2829 ], "ends_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "starts_at": [ - 2781 + 2829 ], "team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -95039,19 +95969,19 @@ export default { }, "team_scrim_availability_min_fields": { "created_at": [ - 4324 + 4376 ], "ends_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "starts_at": [ - 4324 + 4376 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -95059,19 +95989,19 @@ export default { }, "team_scrim_availability_min_order_by": { "created_at": [ - 2781 + 2829 ], "ends_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "starts_at": [ - 2781 + 2829 ], "team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -95082,7 +96012,7 @@ export default { 38 ], "returning": [ - 4111 + 4159 ], "__typename": [ 78 @@ -95090,13 +96020,13 @@ export default { }, "team_scrim_availability_on_conflict": { "constraint": [ - 4121 + 4169 ], "update_columns": [ - 4137 + 4185 ], "where": [ - 4120 + 4168 ], "__typename": [ 78 @@ -95104,25 +96034,25 @@ export default { }, "team_scrim_availability_order_by": { "created_at": [ - 2781 + 2829 ], "ends_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "recurring_weekly": [ - 2781 + 2829 ], "starts_at": [ - 2781 + 2829 ], "team": [ - 4301 + 4351 ], "team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -95130,7 +96060,7 @@ export default { }, "team_scrim_availability_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -95141,22 +96071,22 @@ export default { "team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns": {}, "team_scrim_availability_set_input": { "created_at": [ - 4324 + 4376 ], "ends_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4324 + 4376 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -95164,7 +96094,7 @@ export default { }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 4136 + 4184 ], "ordering": [ 236 @@ -95175,22 +96105,22 @@ export default { }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "ends_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4324 + 4376 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -95199,10 +96129,10 @@ export default { "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 4134 + 4182 ], "where": [ - 4120 + 4168 ], "__typename": [ 78 @@ -95210,31 +96140,31 @@ export default { }, "team_scrim_request_proposals": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "proposed_by": [ - 3739 + 3787 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 4281 + 4329 ], "proposed_by_team_id": [ - 4762 + 4921 ], "proposed_scheduled_at": [ - 4324 + 4376 ], "request": [ - 4180 + 4228 ], "request_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -95242,10 +96172,10 @@ export default { }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 4143 + 4191 ], "nodes": [ - 4139 + 4187 ], "__typename": [ 78 @@ -95253,7 +96183,7 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 4142 + 4190 ], "__typename": [ 78 @@ -95261,13 +96191,13 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 4160 + 4208 ], "distinct": [ 3 ], "filter": [ - 4148 + 4196 ], "predicate": [ 39 @@ -95278,13 +96208,13 @@ export default { }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 4146 + 4194 ], "count": [ 38, { "columns": [ - 4160, + 4208, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -95293,31 +96223,31 @@ export default { } ], "max": [ - 4152 + 4200 ], "min": [ - 4154 + 4202 ], "stddev": [ - 4162 + 4210 ], "stddev_pop": [ - 4164 + 4212 ], "stddev_samp": [ - 4166 + 4214 ], "sum": [ - 4170 + 4218 ], "var_pop": [ - 4174 + 4222 ], "var_samp": [ - 4176 + 4224 ], "variance": [ - 4178 + 4226 ], "__typename": [ 78 @@ -95325,37 +96255,37 @@ export default { }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 4147 + 4195 ], "count": [ - 2781 + 2829 ], "max": [ - 4153 + 4201 ], "min": [ - 4155 + 4203 ], "stddev": [ - 4163 + 4211 ], "stddev_pop": [ - 4165 + 4213 ], "stddev_samp": [ - 4167 + 4215 ], "sum": [ - 4171 + 4219 ], "var_pop": [ - 4175 + 4223 ], "var_samp": [ - 4177 + 4225 ], "variance": [ - 4179 + 4227 ], "__typename": [ 78 @@ -95363,10 +96293,10 @@ export default { }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 4151 + 4199 ], "on_conflict": [ - 4157 + 4205 ], "__typename": [ 78 @@ -95382,7 +96312,7 @@ export default { }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -95390,40 +96320,40 @@ export default { }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 4148 + 4196 ], "_not": [ - 4148 + 4196 ], "_or": [ - 4148 + 4196 ], "created_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "proposed_by": [ - 3743 + 3791 ], "proposed_by_steam_id": [ 182 ], "proposed_by_team": [ - 4290 + 4340 ], "proposed_by_team_id": [ - 4764 + 4923 ], "proposed_scheduled_at": [ - 4325 + 4377 ], "request": [ - 4191 + 4239 ], "request_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -95440,31 +96370,31 @@ export default { }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "proposed_by": [ - 3750 + 3798 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 4299 + 4349 ], "proposed_by_team_id": [ - 4762 + 4921 ], "proposed_scheduled_at": [ - 4324 + 4376 ], "request": [ - 4200 + 4248 ], "request_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -95472,22 +96402,22 @@ export default { }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4762 + 4921 ], "proposed_scheduled_at": [ - 4324 + 4376 ], "request_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -95495,22 +96425,22 @@ export default { }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "proposed_by_steam_id": [ - 2781 + 2829 ], "proposed_by_team_id": [ - 2781 + 2829 ], "proposed_scheduled_at": [ - 2781 + 2829 ], "request_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -95518,22 +96448,22 @@ export default { }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4762 + 4921 ], "proposed_scheduled_at": [ - 4324 + 4376 ], "request_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -95541,22 +96471,22 @@ export default { }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "proposed_by_steam_id": [ - 2781 + 2829 ], "proposed_by_team_id": [ - 2781 + 2829 ], "proposed_scheduled_at": [ - 2781 + 2829 ], "request_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -95567,7 +96497,7 @@ export default { 38 ], "returning": [ - 4139 + 4187 ], "__typename": [ 78 @@ -95575,13 +96505,13 @@ export default { }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 4149 + 4197 ], "update_columns": [ - 4172 + 4220 ], "where": [ - 4148 + 4196 ], "__typename": [ 78 @@ -95589,31 +96519,31 @@ export default { }, "team_scrim_request_proposals_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "proposed_by": [ - 3752 + 3800 ], "proposed_by_steam_id": [ - 2781 + 2829 ], "proposed_by_team": [ - 4301 + 4351 ], "proposed_by_team_id": [ - 2781 + 2829 ], "proposed_scheduled_at": [ - 2781 + 2829 ], "request": [ - 4202 + 4250 ], "request_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -95621,7 +96551,7 @@ export default { }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -95630,22 +96560,22 @@ export default { "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4762 + 4921 ], "proposed_scheduled_at": [ - 4324 + 4376 ], "request_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -95661,7 +96591,7 @@ export default { }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -95677,7 +96607,7 @@ export default { }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -95693,7 +96623,7 @@ export default { }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -95701,7 +96631,7 @@ export default { }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 4169 + 4217 ], "ordering": [ 236 @@ -95712,22 +96642,22 @@ export default { }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4762 + 4921 ], "proposed_scheduled_at": [ - 4324 + 4376 ], "request_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -95743,7 +96673,7 @@ export default { }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -95752,13 +96682,13 @@ export default { "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 4150 + 4198 ], "_set": [ - 4161 + 4209 ], "where": [ - 4148 + 4196 ], "__typename": [ 78 @@ -95774,7 +96704,7 @@ export default { }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -95790,7 +96720,7 @@ export default { }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -95806,7 +96736,7 @@ export default { }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -95817,55 +96747,55 @@ export default { 3 ], "awaiting_team": [ - 4281 + 4329 ], "awaiting_team_id": [ - 4762 + 4921 ], "canceled_by_team_id": [ - 4762 + 4921 ], "canceled_late": [ 3 ], "created_at": [ - 4324 + 4376 ], "expires_at": [ - 4324 + 4376 ], "from_team": [ - 4281 + 4329 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_options": [ - 2476 + 2524 ], "match_options_id": [ - 4762 + 4921 ], "match_outcome": [ 78 ], "proposals": [ - 4139, + 4187, { "distinct_on": [ - 4160, + 4208, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -95875,19 +96805,19 @@ export default { 38 ], "order_by": [ - 4158, + 4206, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4148 + 4196 ] } ], "proposals_aggregate": [ - 4140, + 4188, { "distinct_on": [ - 4160, + 4208, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -95897,40 +96827,40 @@ export default { 38 ], "order_by": [ - 4158, + 4206, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4148 + 4196 ] } ], "proposed_scheduled_at": [ - 4324 + 4376 ], "region": [ 78 ], "requested_by": [ - 3739 + 3787 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4324 + 4376 ], "status": [ - 1002 + 1029 ], "to_team": [ - 4281 + 4329 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -95938,10 +96868,10 @@ export default { }, "team_scrim_requests_aggregate": { "aggregate": [ - 4186 + 4234 ], "nodes": [ - 4180 + 4228 ], "__typename": [ 78 @@ -95949,13 +96879,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 4183 + 4231 ], "bool_or": [ - 4184 + 4232 ], "count": [ - 4185 + 4233 ], "__typename": [ 78 @@ -95963,13 +96893,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 4205 + 4253 ], "distinct": [ 3 ], "filter": [ - 4191 + 4239 ], "predicate": [ 4 @@ -95980,13 +96910,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 4206 + 4254 ], "distinct": [ 3 ], "filter": [ - 4191 + 4239 ], "predicate": [ 4 @@ -95997,13 +96927,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 4204 + 4252 ], "distinct": [ 3 ], "filter": [ - 4191 + 4239 ], "predicate": [ 39 @@ -96014,13 +96944,13 @@ export default { }, "team_scrim_requests_aggregate_fields": { "avg": [ - 4189 + 4237 ], "count": [ 38, { "columns": [ - 4204, + 4252, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -96029,31 +96959,31 @@ export default { } ], "max": [ - 4195 + 4243 ], "min": [ - 4197 + 4245 ], "stddev": [ - 4208 + 4256 ], "stddev_pop": [ - 4210 + 4258 ], "stddev_samp": [ - 4212 + 4260 ], "sum": [ - 4216 + 4264 ], "var_pop": [ - 4220 + 4268 ], "var_samp": [ - 4222 + 4270 ], "variance": [ - 4224 + 4272 ], "__typename": [ 78 @@ -96061,37 +96991,37 @@ export default { }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 4190 + 4238 ], "count": [ - 2781 + 2829 ], "max": [ - 4196 + 4244 ], "min": [ - 4198 + 4246 ], "stddev": [ - 4209 + 4257 ], "stddev_pop": [ - 4211 + 4259 ], "stddev_samp": [ - 4213 + 4261 ], "sum": [ - 4217 + 4265 ], "var_pop": [ - 4221 + 4269 ], "var_samp": [ - 4223 + 4271 ], "variance": [ - 4225 + 4273 ], "__typename": [ 78 @@ -96099,10 +97029,10 @@ export default { }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 4194 + 4242 ], "on_conflict": [ - 4201 + 4249 ], "__typename": [ 78 @@ -96118,7 +97048,7 @@ export default { }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -96126,94 +97056,94 @@ export default { }, "team_scrim_requests_bool_exp": { "_and": [ - 4191 + 4239 ], "_not": [ - 4191 + 4239 ], "_or": [ - 4191 + 4239 ], "auto_generated": [ 4 ], "awaiting_team": [ - 4290 + 4340 ], "awaiting_team_id": [ - 4764 + 4923 ], "canceled_by_team_id": [ - 4764 + 4923 ], "canceled_late": [ 4 ], "created_at": [ - 4325 + 4377 ], "expires_at": [ - 4325 + 4377 ], "from_team": [ - 4290 + 4340 ], "from_team_checked_in": [ 4 ], "from_team_id": [ - 4764 + 4923 ], "id": [ - 4764 + 4923 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_options": [ - 2480 + 2528 ], "match_options_id": [ - 4764 + 4923 ], "match_outcome": [ 80 ], "proposals": [ - 4148 + 4196 ], "proposals_aggregate": [ - 4141 + 4189 ], "proposed_scheduled_at": [ - 4325 + 4377 ], "region": [ 80 ], "requested_by": [ - 3743 + 3791 ], "requested_by_steam_id": [ 182 ], "responded_at": [ - 4325 + 4377 ], "status": [ - 1003 + 1030 ], "to_team": [ - 4290 + 4340 ], "to_team_checked_in": [ 4 ], "to_team_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -96233,79 +97163,79 @@ export default { 3 ], "awaiting_team": [ - 4299 + 4349 ], "awaiting_team_id": [ - 4762 + 4921 ], "canceled_by_team_id": [ - 4762 + 4921 ], "canceled_late": [ 3 ], "created_at": [ - 4324 + 4376 ], "expires_at": [ - 4324 + 4376 ], "from_team": [ - 4299 + 4349 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_options": [ - 2487 + 2535 ], "match_options_id": [ - 4762 + 4921 ], "match_outcome": [ 78 ], "proposals": [ - 4145 + 4193 ], "proposed_scheduled_at": [ - 4324 + 4376 ], "region": [ 78 ], "requested_by": [ - 3750 + 3798 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4324 + 4376 ], "status": [ - 1002 + 1029 ], "to_team": [ - 4299 + 4349 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -96313,34 +97243,34 @@ export default { }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 4762 + 4921 ], "canceled_by_team_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "expires_at": [ - 4324 + 4376 ], "from_team_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4324 + 4376 ], "region": [ 78 @@ -96349,10 +97279,10 @@ export default { 180 ], "responded_at": [ - 4324 + 4376 ], "to_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -96360,46 +97290,46 @@ export default { }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 2781 + 2829 ], "canceled_by_team_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "expires_at": [ - 2781 + 2829 ], "from_team_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_options_id": [ - 2781 + 2829 ], "match_outcome": [ - 2781 + 2829 ], "proposed_scheduled_at": [ - 2781 + 2829 ], "region": [ - 2781 + 2829 ], "requested_by_steam_id": [ - 2781 + 2829 ], "responded_at": [ - 2781 + 2829 ], "to_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -96407,34 +97337,34 @@ export default { }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 4762 + 4921 ], "canceled_by_team_id": [ - 4762 + 4921 ], "created_at": [ - 4324 + 4376 ], "expires_at": [ - 4324 + 4376 ], "from_team_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4324 + 4376 ], "region": [ 78 @@ -96443,10 +97373,10 @@ export default { 180 ], "responded_at": [ - 4324 + 4376 ], "to_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -96454,46 +97384,46 @@ export default { }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 2781 + 2829 ], "canceled_by_team_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "expires_at": [ - 2781 + 2829 ], "from_team_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_options_id": [ - 2781 + 2829 ], "match_outcome": [ - 2781 + 2829 ], "proposed_scheduled_at": [ - 2781 + 2829 ], "region": [ - 2781 + 2829 ], "requested_by_steam_id": [ - 2781 + 2829 ], "responded_at": [ - 2781 + 2829 ], "to_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -96504,7 +97434,7 @@ export default { 38 ], "returning": [ - 4180 + 4228 ], "__typename": [ 78 @@ -96512,10 +97442,10 @@ export default { }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 4194 + 4242 ], "on_conflict": [ - 4201 + 4249 ], "__typename": [ 78 @@ -96523,13 +97453,13 @@ export default { }, "team_scrim_requests_on_conflict": { "constraint": [ - 4192 + 4240 ], "update_columns": [ - 4218 + 4266 ], "where": [ - 4191 + 4239 ], "__typename": [ 78 @@ -96537,82 +97467,82 @@ export default { }, "team_scrim_requests_order_by": { "auto_generated": [ - 2781 + 2829 ], "awaiting_team": [ - 4301 + 4351 ], "awaiting_team_id": [ - 2781 + 2829 ], "canceled_by_team_id": [ - 2781 + 2829 ], "canceled_late": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "expires_at": [ - 2781 + 2829 ], "from_team": [ - 4301 + 4351 ], "from_team_checked_in": [ - 2781 + 2829 ], "from_team_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_options": [ - 2489 + 2537 ], "match_options_id": [ - 2781 + 2829 ], "match_outcome": [ - 2781 + 2829 ], "proposals_aggregate": [ - 4144 + 4192 ], "proposed_scheduled_at": [ - 2781 + 2829 ], "region": [ - 2781 + 2829 ], "requested_by": [ - 3752 + 3800 ], "requested_by_steam_id": [ - 2781 + 2829 ], "responded_at": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "to_team": [ - 4301 + 4351 ], "to_team_checked_in": [ - 2781 + 2829 ], "to_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -96620,7 +97550,7 @@ export default { }, "team_scrim_requests_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -96634,40 +97564,40 @@ export default { 3 ], "awaiting_team_id": [ - 4762 + 4921 ], "canceled_by_team_id": [ - 4762 + 4921 ], "canceled_late": [ 3 ], "created_at": [ - 4324 + 4376 ], "expires_at": [ - 4324 + 4376 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4324 + 4376 ], "region": [ 78 @@ -96676,16 +97606,16 @@ export default { 180 ], "responded_at": [ - 4324 + 4376 ], "status": [ - 1002 + 1029 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -96701,7 +97631,7 @@ export default { }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -96717,7 +97647,7 @@ export default { }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -96733,7 +97663,7 @@ export default { }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -96741,7 +97671,7 @@ export default { }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 4215 + 4263 ], "ordering": [ 236 @@ -96755,40 +97685,40 @@ export default { 3 ], "awaiting_team_id": [ - 4762 + 4921 ], "canceled_by_team_id": [ - 4762 + 4921 ], "canceled_late": [ 3 ], "created_at": [ - 4324 + 4376 ], "expires_at": [ - 4324 + 4376 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4762 + 4921 ], "id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4324 + 4376 ], "region": [ 78 @@ -96797,16 +97727,16 @@ export default { 180 ], "responded_at": [ - 4324 + 4376 ], "status": [ - 1002 + 1029 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -96822,7 +97752,7 @@ export default { }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -96831,13 +97761,13 @@ export default { "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 4193 + 4241 ], "_set": [ - 4207 + 4255 ], "where": [ - 4191 + 4239 ], "__typename": [ 78 @@ -96853,7 +97783,7 @@ export default { }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -96869,7 +97799,7 @@ export default { }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -96885,7 +97815,7 @@ export default { }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -96896,7 +97826,7 @@ export default { 3 ], "created_at": [ - 4324 + 4376 ], "elo_max": [ 38 @@ -96908,10 +97838,10 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "map_ids": [ - 4762 + 4921 ], "notes": [ 78 @@ -96920,13 +97850,13 @@ export default { 78 ], "team": [ - 4281 + 4329 ], "team_id": [ - 4762 + 4921 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -96934,10 +97864,10 @@ export default { }, "team_scrim_settings_aggregate": { "aggregate": [ - 4228 + 4276 ], "nodes": [ - 4226 + 4274 ], "__typename": [ 78 @@ -96945,13 +97875,13 @@ export default { }, "team_scrim_settings_aggregate_fields": { "avg": [ - 4229 + 4277 ], "count": [ 38, { "columns": [ - 4241, + 4289, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -96960,31 +97890,31 @@ export default { } ], "max": [ - 4234 + 4282 ], "min": [ - 4235 + 4283 ], "stddev": [ - 4243 + 4291 ], "stddev_pop": [ - 4244 + 4292 ], "stddev_samp": [ - 4245 + 4293 ], "sum": [ - 4248 + 4296 ], "var_pop": [ - 4251 + 4299 ], "var_samp": [ - 4252 + 4300 ], "variance": [ - 4253 + 4301 ], "__typename": [ 78 @@ -97003,19 +97933,19 @@ export default { }, "team_scrim_settings_bool_exp": { "_and": [ - 4230 + 4278 ], "_not": [ - 4230 + 4278 ], "_or": [ - 4230 + 4278 ], "allow_outside_availability": [ 4 ], "created_at": [ - 4325 + 4377 ], "elo_max": [ 39 @@ -97027,10 +97957,10 @@ export default { 4 ], "id": [ - 4764 + 4923 ], "map_ids": [ - 4763 + 4922 ], "notes": [ 80 @@ -97039,13 +97969,13 @@ export default { 79 ], "team": [ - 4290 + 4340 ], "team_id": [ - 4764 + 4923 ], "updated_at": [ - 4325 + 4377 ], "__typename": [ 78 @@ -97068,7 +97998,7 @@ export default { 3 ], "created_at": [ - 4324 + 4376 ], "elo_max": [ 38 @@ -97080,10 +98010,10 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "map_ids": [ - 4762 + 4921 ], "notes": [ 78 @@ -97092,13 +98022,13 @@ export default { 78 ], "team": [ - 4299 + 4349 ], "team_id": [ - 4762 + 4921 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -97106,7 +98036,7 @@ export default { }, "team_scrim_settings_max_fields": { "created_at": [ - 4324 + 4376 ], "elo_max": [ 38 @@ -97115,10 +98045,10 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "map_ids": [ - 4762 + 4921 ], "notes": [ 78 @@ -97127,10 +98057,10 @@ export default { 78 ], "team_id": [ - 4762 + 4921 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -97138,7 +98068,7 @@ export default { }, "team_scrim_settings_min_fields": { "created_at": [ - 4324 + 4376 ], "elo_max": [ 38 @@ -97147,10 +98077,10 @@ export default { 38 ], "id": [ - 4762 + 4921 ], "map_ids": [ - 4762 + 4921 ], "notes": [ 78 @@ -97159,10 +98089,10 @@ export default { 78 ], "team_id": [ - 4762 + 4921 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -97173,7 +98103,7 @@ export default { 38 ], "returning": [ - 4226 + 4274 ], "__typename": [ 78 @@ -97181,10 +98111,10 @@ export default { }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 4233 + 4281 ], "on_conflict": [ - 4238 + 4286 ], "__typename": [ 78 @@ -97192,13 +98122,13 @@ export default { }, "team_scrim_settings_on_conflict": { "constraint": [ - 4231 + 4279 ], "update_columns": [ - 4249 + 4297 ], "where": [ - 4230 + 4278 ], "__typename": [ 78 @@ -97206,40 +98136,40 @@ export default { }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "elo_max": [ - 2781 + 2829 ], "elo_min": [ - 2781 + 2829 ], "enabled": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "map_ids": [ - 2781 + 2829 ], "notes": [ - 2781 + 2829 ], "regions": [ - 2781 + 2829 ], "team": [ - 4301 + 4351 ], "team_id": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "__typename": [ 78 @@ -97247,7 +98177,7 @@ export default { }, "team_scrim_settings_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -97259,7 +98189,7 @@ export default { 3 ], "created_at": [ - 4324 + 4376 ], "elo_max": [ 38 @@ -97271,10 +98201,10 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "map_ids": [ - 4762 + 4921 ], "notes": [ 78 @@ -97283,10 +98213,10 @@ export default { 78 ], "team_id": [ - 4762 + 4921 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -97327,7 +98257,7 @@ export default { }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 4247 + 4295 ], "ordering": [ 236 @@ -97341,7 +98271,7 @@ export default { 3 ], "created_at": [ - 4324 + 4376 ], "elo_max": [ 38 @@ -97353,10 +98283,10 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "map_ids": [ - 4762 + 4921 ], "notes": [ 78 @@ -97365,10 +98295,10 @@ export default { 78 ], "team_id": [ - 4762 + 4921 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -97388,13 +98318,13 @@ export default { "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 4232 + 4280 ], "_set": [ - 4242 + 4290 ], "where": [ - 4230 + 4278 ], "__typename": [ 78 @@ -97435,16 +98365,16 @@ export default { }, "team_suggestions": { "created_at": [ - 4324 + 4376 ], "group_hash": [ 78 ], "id": [ - 4762 + 4921 ], "last_notified_at": [ - 4324 + 4376 ], "member_steam_ids": [ 180 @@ -97461,10 +98391,10 @@ export default { }, "team_suggestions_aggregate": { "aggregate": [ - 4256 + 4304 ], "nodes": [ - 4254 + 4302 ], "__typename": [ 78 @@ -97472,13 +98402,13 @@ export default { }, "team_suggestions_aggregate_fields": { "avg": [ - 4257 + 4305 ], "count": [ 38, { "columns": [ - 4268, + 4316, "[team_suggestions_select_column!]" ], "distinct": [ @@ -97487,31 +98417,31 @@ export default { } ], "max": [ - 4262 + 4310 ], "min": [ - 4263 + 4311 ], "stddev": [ - 4270 + 4318 ], "stddev_pop": [ - 4271 + 4319 ], "stddev_samp": [ - 4272 + 4320 ], "sum": [ - 4275 + 4323 ], "var_pop": [ - 4278 + 4326 ], "var_samp": [ - 4279 + 4327 ], "variance": [ - 4280 + 4328 ], "__typename": [ 78 @@ -97527,25 +98457,25 @@ export default { }, "team_suggestions_bool_exp": { "_and": [ - 4258 + 4306 ], "_not": [ - 4258 + 4306 ], "_or": [ - 4258 + 4306 ], "created_at": [ - 4325 + 4377 ], "group_hash": [ 80 ], "id": [ - 4764 + 4923 ], "last_notified_at": [ - 4325 + 4377 ], "member_steam_ids": [ 181 @@ -97571,16 +98501,16 @@ export default { }, "team_suggestions_insert_input": { "created_at": [ - 4324 + 4376 ], "group_hash": [ 78 ], "id": [ - 4762 + 4921 ], "last_notified_at": [ - 4324 + 4376 ], "member_steam_ids": [ 180 @@ -97597,16 +98527,16 @@ export default { }, "team_suggestions_max_fields": { "created_at": [ - 4324 + 4376 ], "group_hash": [ 78 ], "id": [ - 4762 + 4921 ], "last_notified_at": [ - 4324 + 4376 ], "member_steam_ids": [ 180 @@ -97623,16 +98553,16 @@ export default { }, "team_suggestions_min_fields": { "created_at": [ - 4324 + 4376 ], "group_hash": [ 78 ], "id": [ - 4762 + 4921 ], "last_notified_at": [ - 4324 + 4376 ], "member_steam_ids": [ 180 @@ -97652,7 +98582,7 @@ export default { 38 ], "returning": [ - 4254 + 4302 ], "__typename": [ 78 @@ -97660,13 +98590,13 @@ export default { }, "team_suggestions_on_conflict": { "constraint": [ - 4259 + 4307 ], "update_columns": [ - 4276 + 4324 ], "where": [ - 4258 + 4306 ], "__typename": [ 78 @@ -97674,25 +98604,25 @@ export default { }, "team_suggestions_order_by": { "created_at": [ - 2781 + 2829 ], "group_hash": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "last_notified_at": [ - 2781 + 2829 ], "member_steam_ids": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "together_count": [ - 2781 + 2829 ], "__typename": [ 78 @@ -97700,7 +98630,7 @@ export default { }, "team_suggestions_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -97709,16 +98639,16 @@ export default { "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4324 + 4376 ], "group_hash": [ 78 ], "id": [ - 4762 + 4921 ], "last_notified_at": [ - 4324 + 4376 ], "member_steam_ids": [ 180 @@ -97759,7 +98689,7 @@ export default { }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 4274 + 4322 ], "ordering": [ 236 @@ -97770,16 +98700,16 @@ export default { }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "group_hash": [ 78 ], "id": [ - 4762 + 4921 ], "last_notified_at": [ - 4324 + 4376 ], "member_steam_ids": [ 180 @@ -97805,13 +98735,13 @@ export default { "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 4260 + 4308 ], "_set": [ - 4269 + 4317 ], "where": [ - 4258 + 4306 ], "__typename": [ 78 @@ -97858,19 +98788,19 @@ export default { 3 ], "captain": [ - 3739 + 3787 ], "captain_steam_id": [ 180 ], "id": [ - 4762 + 4921 ], "invites": [ - 3998, + 4046, { "distinct_on": [ - 4019, + 4067, "[team_invites_select_column!]" ], "limit": [ @@ -97880,19 +98810,19 @@ export default { 38 ], "order_by": [ - 4017, + 4065, "[team_invites_order_by!]" ], "where": [ - 4007 + 4055 ] } ], "invites_aggregate": [ - 3999, + 4047, { "distinct_on": [ - 4019, + 4067, "[team_invites_select_column!]" ], "limit": [ @@ -97902,19 +98832,22 @@ export default { 38 ], "order_by": [ - 4017, + 4065, "[team_invites_order_by!]" ], "where": [ - 4007 + 4055 ] } ], + "is_organization": [ + 3 + ], "match_lineups": [ - 2276, + 2324, { "distinct_on": [ - 2298, + 2346, "[match_lineups_select_column!]" ], "limit": [ @@ -97924,19 +98857,19 @@ export default { 38 ], "order_by": [ - 2296, + 2344, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2333 ] } ], "match_lineups_aggregate": [ - 2277, + 2325, { "distinct_on": [ - 2298, + 2346, "[match_lineups_select_column!]" ], "limit": [ @@ -97946,19 +98879,19 @@ export default { 38 ], "order_by": [ - 2296, + 2344, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2333 ] } ], "matches": [ - 2596, + 2644, { "distinct_on": [ - 2618, + 2666, "[matches_select_column!]" ], "limit": [ @@ -97968,11 +98901,11 @@ export default { 38 ], "order_by": [ - 2616, + 2664, "[matches_order_by!]" ], "where": [ - 2605 + 2653 ] } ], @@ -97980,25 +98913,25 @@ export default { 78 ], "owner": [ - 3739 + 3787 ], "owner_steam_id": [ 180 ], "ranks": [ - 5446 + 5605 ], "reputation": [ - 5466 + 5625 ], "role": [ 78 ], "roster": [ - 4039, + 4087, { "distinct_on": [ - 4062, + 4110, "[team_roster_select_column!]" ], "limit": [ @@ -98008,19 +98941,19 @@ export default { 38 ], "order_by": [ - 4060, + 4108, "[team_roster_order_by!]" ], "where": [ - 4050 + 4098 ] } ], "roster_aggregate": [ - 4040, + 4088, { "distinct_on": [ - 4062, + 4110, "[team_roster_select_column!]" ], "limit": [ @@ -98030,19 +98963,19 @@ export default { 38 ], "order_by": [ - 4060, + 4108, "[team_roster_order_by!]" ], "where": [ - 4050 + 4098 ] } ], "scrim_availability": [ - 4111, + 4159, { "distinct_on": [ - 4131, + 4179, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -98052,19 +98985,19 @@ export default { 38 ], "order_by": [ - 4129, + 4177, "[team_scrim_availability_order_by!]" ], "where": [ - 4120 + 4168 ] } ], "scrim_availability_aggregate": [ - 4112, + 4160, { "distinct_on": [ - 4131, + 4179, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -98074,25 +99007,25 @@ export default { 38 ], "order_by": [ - 4129, + 4177, "[team_scrim_availability_order_by!]" ], "where": [ - 4120 + 4168 ] } ], "scrim_settings": [ - 4226 + 4274 ], "short_name": [ 78 ], "tournament_teams": [ - 4587, + 4728, { "distinct_on": [ - 4609, + 4750, "[tournament_teams_select_column!]" ], "limit": [ @@ -98102,19 +99035,19 @@ export default { 38 ], "order_by": [ - 4607, + 4748, "[tournament_teams_order_by!]" ], "where": [ - 4596 + 4737 ] } ], "tournament_teams_aggregate": [ - 4588, + 4729, { "distinct_on": [ - 4609, + 4750, "[tournament_teams_select_column!]" ], "limit": [ @@ -98124,11 +99057,11 @@ export default { 38 ], "order_by": [ - 4607, + 4748, "[tournament_teams_order_by!]" ], "where": [ - 4596 + 4737 ] } ], @@ -98138,18 +99071,58 @@ export default { }, "teams_aggregate": { "aggregate": [ - 4285 + 4335 ], "nodes": [ - 4281 + 4329 ], "__typename": [ 78 ] }, "teams_aggregate_bool_exp": { + "bool_and": [ + 4332 + ], + "bool_or": [ + 4333 + ], "count": [ - 4284 + 4334 + ], + "__typename": [ + 78 + ] + }, + "teams_aggregate_bool_exp_bool_and": { + "arguments": [ + 4354 + ], + "distinct": [ + 3 + ], + "filter": [ + 4340 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "teams_aggregate_bool_exp_bool_or": { + "arguments": [ + 4355 + ], + "distinct": [ + 3 + ], + "filter": [ + 4340 + ], + "predicate": [ + 4 ], "__typename": [ 78 @@ -98157,13 +99130,13 @@ export default { }, "teams_aggregate_bool_exp_count": { "arguments": [ - 4303 + 4353 ], "distinct": [ 3 ], "filter": [ - 4290 + 4340 ], "predicate": [ 39 @@ -98174,13 +99147,13 @@ export default { }, "teams_aggregate_fields": { "avg": [ - 4288 + 4338 ], "count": [ 38, { "columns": [ - 4303, + 4353, "[teams_select_column!]" ], "distinct": [ @@ -98189,31 +99162,31 @@ export default { } ], "max": [ - 4294 + 4344 ], "min": [ - 4296 + 4346 ], "stddev": [ - 4305 + 4357 ], "stddev_pop": [ - 4307 + 4359 ], "stddev_samp": [ - 4309 + 4361 ], "sum": [ - 4313 + 4365 ], "var_pop": [ - 4317 + 4369 ], "var_samp": [ - 4319 + 4371 ], "variance": [ - 4321 + 4373 ], "__typename": [ 78 @@ -98221,37 +99194,37 @@ export default { }, "teams_aggregate_order_by": { "avg": [ - 4289 + 4339 ], "count": [ - 2781 + 2829 ], "max": [ - 4295 + 4345 ], "min": [ - 4297 + 4347 ], "stddev": [ - 4306 + 4358 ], "stddev_pop": [ - 4308 + 4360 ], "stddev_samp": [ - 4310 + 4362 ], "sum": [ - 4314 + 4366 ], "var_pop": [ - 4318 + 4370 ], "var_samp": [ - 4320 + 4372 ], "variance": [ - 4322 + 4374 ], "__typename": [ 78 @@ -98259,10 +99232,10 @@ export default { }, "teams_arr_rel_insert_input": { "data": [ - 4293 + 4343 ], "on_conflict": [ - 4300 + 4350 ], "__typename": [ 78 @@ -98281,10 +99254,10 @@ export default { }, "teams_avg_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -98292,13 +99265,13 @@ export default { }, "teams_bool_exp": { "_and": [ - 4290 + 4340 ], "_not": [ - 4290 + 4340 ], "_or": [ - 4290 + 4340 ], "avatar_url": [ 80 @@ -98316,70 +99289,73 @@ export default { 4 ], "captain": [ - 3743 + 3791 ], "captain_steam_id": [ 182 ], "id": [ - 4764 + 4923 ], "invites": [ - 4007 + 4055 ], "invites_aggregate": [ - 4000 + 4048 + ], + "is_organization": [ + 4 ], "match_lineups": [ - 2285 + 2333 ], "match_lineups_aggregate": [ - 2278 + 2326 ], "matches": [ - 2605 + 2653 ], "name": [ 80 ], "owner": [ - 3743 + 3791 ], "owner_steam_id": [ 182 ], "ranks": [ - 5450 + 5609 ], "reputation": [ - 5470 + 5629 ], "role": [ 80 ], "roster": [ - 4050 + 4098 ], "roster_aggregate": [ - 4041 + 4089 ], "scrim_availability": [ - 4120 + 4168 ], "scrim_availability_aggregate": [ - 4113 + 4161 ], "scrim_settings": [ - 4230 + 4278 ], "short_name": [ 80 ], "tournament_teams": [ - 4596 + 4737 ], "tournament_teams_aggregate": [ - 4589 + 4730 ], "__typename": [ 78 @@ -98402,49 +99378,52 @@ export default { 78 ], "captain": [ - 3750 + 3798 ], "captain_steam_id": [ 180 ], "id": [ - 4762 + 4921 ], "invites": [ - 4004 + 4052 + ], + "is_organization": [ + 3 ], "match_lineups": [ - 2282 + 2330 ], "name": [ 78 ], "owner": [ - 3750 + 3798 ], "owner_steam_id": [ 180 ], "ranks": [ - 5454 + 5613 ], "reputation": [ - 5474 + 5633 ], "roster": [ - 4047 + 4095 ], "scrim_availability": [ - 4119 + 4167 ], "scrim_settings": [ - 4237 + 4285 ], "short_name": [ 78 ], "tournament_teams": [ - 4593 + 4734 ], "__typename": [ 78 @@ -98458,7 +99437,7 @@ export default { 180 ], "id": [ - 4762 + 4921 ], "name": [ 78 @@ -98478,22 +99457,22 @@ export default { }, "teams_max_order_by": { "avatar_url": [ - 2781 + 2829 ], "captain_steam_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "short_name": [ - 2781 + 2829 ], "__typename": [ 78 @@ -98507,7 +99486,7 @@ export default { 180 ], "id": [ - 4762 + 4921 ], "name": [ 78 @@ -98527,22 +99506,22 @@ export default { }, "teams_min_order_by": { "avatar_url": [ - 2781 + 2829 ], "captain_steam_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "short_name": [ - 2781 + 2829 ], "__typename": [ 78 @@ -98553,7 +99532,7 @@ export default { 38 ], "returning": [ - 4281 + 4329 ], "__typename": [ 78 @@ -98561,10 +99540,10 @@ export default { }, "teams_obj_rel_insert_input": { "data": [ - 4293 + 4343 ], "on_conflict": [ - 4300 + 4350 ], "__typename": [ 78 @@ -98572,13 +99551,13 @@ export default { }, "teams_on_conflict": { "constraint": [ - 4291 + 4341 ], "update_columns": [ - 4315 + 4367 ], "where": [ - 4290 + 4340 ], "__typename": [ 78 @@ -98586,70 +99565,73 @@ export default { }, "teams_order_by": { "avatar_url": [ - 2781 + 2829 ], "can_change_role": [ - 2781 + 2829 ], "can_invite": [ - 2781 + 2829 ], "can_manage_scrims": [ - 2781 + 2829 ], "can_remove": [ - 2781 + 2829 ], "captain": [ - 3752 + 3800 ], "captain_steam_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "invites_aggregate": [ - 4003 + 4051 + ], + "is_organization": [ + 2829 ], "match_lineups_aggregate": [ - 2281 + 2329 ], "matches_aggregate": [ - 2601 + 2649 ], "name": [ - 2781 + 2829 ], "owner": [ - 3752 + 3800 ], "owner_steam_id": [ - 2781 + 2829 ], "ranks": [ - 5455 + 5614 ], "reputation": [ - 5475 + 5634 ], "role": [ - 2781 + 2829 ], "roster_aggregate": [ - 4046 + 4094 ], "scrim_availability_aggregate": [ - 4118 + 4166 ], "scrim_settings": [ - 4239 + 4287 ], "short_name": [ - 2781 + 2829 ], "tournament_teams_aggregate": [ - 4592 + 4733 ], "__typename": [ 78 @@ -98657,13 +99639,15 @@ export default { }, "teams_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 ] }, "teams_select_column": {}, + "teams_select_column_teams_aggregate_bool_exp_bool_and_arguments_columns": {}, + "teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns": {}, "teams_set_input": { "avatar_url": [ 78 @@ -98672,7 +99656,10 @@ export default { 180 ], "id": [ - 4762 + 4921 + ], + "is_organization": [ + 3 ], "name": [ 78 @@ -98700,10 +99687,10 @@ export default { }, "teams_stddev_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -98722,10 +99709,10 @@ export default { }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -98744,10 +99731,10 @@ export default { }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -98755,7 +99742,7 @@ export default { }, "teams_stream_cursor_input": { "initial_value": [ - 4312 + 4364 ], "ordering": [ 236 @@ -98772,7 +99759,10 @@ export default { 180 ], "id": [ - 4762 + 4921 + ], + "is_organization": [ + 3 ], "name": [ 78 @@ -98800,10 +99790,10 @@ export default { }, "teams_sum_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -98812,13 +99802,13 @@ export default { "teams_update_column": {}, "teams_updates": { "_inc": [ - 4292 + 4342 ], "_set": [ - 4304 + 4356 ], "where": [ - 4290 + 4340 ], "__typename": [ 78 @@ -98837,10 +99827,10 @@ export default { }, "teams_var_pop_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -98859,10 +99849,10 @@ export default { }, "teams_var_samp_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -98881,10 +99871,10 @@ export default { }, "teams_variance_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -98894,31 +99884,31 @@ export default { "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4324 + 4376 ], "_gt": [ - 4324 + 4376 ], "_gte": [ - 4324 + 4376 ], "_in": [ - 4324 + 4376 ], "_is_null": [ 3 ], "_lt": [ - 4324 + 4376 ], "_lte": [ - 4324 + 4376 ], "_neq": [ - 4324 + 4376 ], "_nin": [ - 4324 + 4376 ], "__typename": [ 78 @@ -98929,13 +99919,13 @@ export default { 3 ], "created_at": [ - 4324 + 4376 ], "feeding_brackets": [ - 4326, + 4378, { "distinct_on": [ - 4350, + 4402, "[tournament_brackets_select_column!]" ], "limit": [ @@ -98945,11 +99935,11 @@ export default { 38 ], "order_by": [ - 4348, + 4400, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4389 ] } ], @@ -98957,37 +99947,37 @@ export default { 3 ], "group": [ - 2779 + 2827 ], "id": [ - 4762 + 4921 ], "loser_bracket": [ - 4326 + 4378 ], "loser_parent_bracket_id": [ - 4762 + 4921 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_number": [ 38 ], "match_options_id": [ - 4762 + 4921 ], "options": [ - 2476 + 2524 ], "parent_bracket": [ - 4326 + 4378 ], "parent_bracket_id": [ - 4762 + 4921 ], "path": [ 78 @@ -98996,16 +99986,16 @@ export default { 38 ], "scheduled_at": [ - 4324 + 4376 ], "scheduled_eta": [ - 4324 + 4376 ], "scheduling_proposals": [ - 1789, + 1837, { "distinct_on": [ - 1810, + 1858, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -99015,19 +100005,19 @@ export default { 38 ], "order_by": [ - 1808, + 1856, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1798 + 1846 ] } ], "scheduling_proposals_aggregate": [ - 1790, + 1838, { "distinct_on": [ - 1810, + 1858, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -99037,37 +100027,37 @@ export default { 38 ], "order_by": [ - 1808, + 1856, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1798 + 1846 ] } ], "stage": [ - 4454 + 4595 ], "team_1": [ - 4587 + 4728 ], "team_1_seed": [ 38 ], "team_2": [ - 4587 + 4728 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "tournament_team_id_1": [ - 4762 + 4921 ], "tournament_team_id_2": [ - 4762 + 4921 ], "__typename": [ 78 @@ -99075,10 +100065,10 @@ export default { }, "tournament_brackets_aggregate": { "aggregate": [ - 4332 + 4384 ], "nodes": [ - 4326 + 4378 ], "__typename": [ 78 @@ -99086,13 +100076,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4329 + 4381 ], "bool_or": [ - 4330 + 4382 ], "count": [ - 4331 + 4383 ], "__typename": [ 78 @@ -99100,13 +100090,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4351 + 4403 ], "distinct": [ 3 ], "filter": [ - 4337 + 4389 ], "predicate": [ 4 @@ -99117,13 +100107,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4352 + 4404 ], "distinct": [ 3 ], "filter": [ - 4337 + 4389 ], "predicate": [ 4 @@ -99134,13 +100124,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4350 + 4402 ], "distinct": [ 3 ], "filter": [ - 4337 + 4389 ], "predicate": [ 39 @@ -99151,13 +100141,13 @@ export default { }, "tournament_brackets_aggregate_fields": { "avg": [ - 4335 + 4387 ], "count": [ 38, { "columns": [ - 4350, + 4402, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -99166,31 +100156,31 @@ export default { } ], "max": [ - 4341 + 4393 ], "min": [ - 4343 + 4395 ], "stddev": [ - 4354 + 4406 ], "stddev_pop": [ - 4356 + 4408 ], "stddev_samp": [ - 4358 + 4410 ], "sum": [ - 4362 + 4414 ], "var_pop": [ - 4366 + 4418 ], "var_samp": [ - 4368 + 4420 ], "variance": [ - 4370 + 4422 ], "__typename": [ 78 @@ -99198,37 +100188,37 @@ export default { }, "tournament_brackets_aggregate_order_by": { "avg": [ - 4336 + 4388 ], "count": [ - 2781 + 2829 ], "max": [ - 4342 + 4394 ], "min": [ - 4344 + 4396 ], "stddev": [ - 4355 + 4407 ], "stddev_pop": [ - 4357 + 4409 ], "stddev_samp": [ - 4359 + 4411 ], "sum": [ - 4363 + 4415 ], "var_pop": [ - 4367 + 4419 ], "var_samp": [ - 4369 + 4421 ], "variance": [ - 4371 + 4423 ], "__typename": [ 78 @@ -99236,10 +100226,10 @@ export default { }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4340 + 4392 ], "on_conflict": [ - 4347 + 4399 ], "__typename": [ 78 @@ -99267,19 +100257,19 @@ export default { }, "tournament_brackets_avg_order_by": { "group": [ - 2781 + 2829 ], "match_number": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "team_1_seed": [ - 2781 + 2829 ], "team_2_seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -99287,58 +100277,58 @@ export default { }, "tournament_brackets_bool_exp": { "_and": [ - 4337 + 4389 ], "_not": [ - 4337 + 4389 ], "_or": [ - 4337 + 4389 ], "bye": [ 4 ], "created_at": [ - 4325 + 4377 ], "feeding_brackets": [ - 4337 + 4389 ], "finished": [ 4 ], "group": [ - 2780 + 2828 ], "id": [ - 4764 + 4923 ], "loser_bracket": [ - 4337 + 4389 ], "loser_parent_bracket_id": [ - 4764 + 4923 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_number": [ 39 ], "match_options_id": [ - 4764 + 4923 ], "options": [ - 2480 + 2528 ], "parent_bracket": [ - 4337 + 4389 ], "parent_bracket_id": [ - 4764 + 4923 ], "path": [ 80 @@ -99347,40 +100337,40 @@ export default { 39 ], "scheduled_at": [ - 4325 + 4377 ], "scheduled_eta": [ - 4325 + 4377 ], "scheduling_proposals": [ - 1798 + 1846 ], "scheduling_proposals_aggregate": [ - 1791 + 1839 ], "stage": [ - 4466 + 4607 ], "team_1": [ - 4596 + 4737 ], "team_1_seed": [ 39 ], "team_2": [ - 4596 + 4737 ], "team_2_seed": [ 39 ], "tournament_stage_id": [ - 4764 + 4923 ], "tournament_team_id_1": [ - 4764 + 4923 ], "tournament_team_id_2": [ - 4764 + 4923 ], "__typename": [ 78 @@ -99389,7 +100379,7 @@ export default { "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 2779 + 2827 ], "match_number": [ 38 @@ -99412,43 +100402,43 @@ export default { 3 ], "created_at": [ - 4324 + 4376 ], "finished": [ 3 ], "group": [ - 2779 + 2827 ], "id": [ - 4762 + 4921 ], "loser_bracket": [ - 4346 + 4398 ], "loser_parent_bracket_id": [ - 4762 + 4921 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_number": [ 38 ], "match_options_id": [ - 4762 + 4921 ], "options": [ - 2487 + 2535 ], "parent_bracket": [ - 4346 + 4398 ], "parent_bracket_id": [ - 4762 + 4921 ], "path": [ 78 @@ -99457,37 +100447,37 @@ export default { 38 ], "scheduled_at": [ - 4324 + 4376 ], "scheduled_eta": [ - 4324 + 4376 ], "scheduling_proposals": [ - 1795 + 1843 ], "stage": [ - 4478 + 4619 ], "team_1": [ - 4605 + 4746 ], "team_1_seed": [ 38 ], "team_2": [ - 4605 + 4746 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "tournament_team_id_1": [ - 4762 + 4921 ], "tournament_team_id_2": [ - 4762 + 4921 ], "__typename": [ 78 @@ -99495,28 +100485,28 @@ export default { }, "tournament_brackets_max_fields": { "created_at": [ - 4324 + 4376 ], "group": [ - 2779 + 2827 ], "id": [ - 4762 + 4921 ], "loser_parent_bracket_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_number": [ 38 ], "match_options_id": [ - 4762 + 4921 ], "parent_bracket_id": [ - 4762 + 4921 ], "path": [ 78 @@ -99525,10 +100515,10 @@ export default { 38 ], "scheduled_at": [ - 4324 + 4376 ], "scheduled_eta": [ - 4324 + 4376 ], "team_1_seed": [ 38 @@ -99537,13 +100527,13 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "tournament_team_id_1": [ - 4762 + 4921 ], "tournament_team_id_2": [ - 4762 + 4921 ], "__typename": [ 78 @@ -99551,55 +100541,55 @@ export default { }, "tournament_brackets_max_order_by": { "created_at": [ - 2781 + 2829 ], "group": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "loser_parent_bracket_id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_number": [ - 2781 + 2829 ], "match_options_id": [ - 2781 + 2829 ], "parent_bracket_id": [ - 2781 + 2829 ], "path": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "scheduled_at": [ - 2781 + 2829 ], "scheduled_eta": [ - 2781 + 2829 ], "team_1_seed": [ - 2781 + 2829 ], "team_2_seed": [ - 2781 + 2829 ], "tournament_stage_id": [ - 2781 + 2829 ], "tournament_team_id_1": [ - 2781 + 2829 ], "tournament_team_id_2": [ - 2781 + 2829 ], "__typename": [ 78 @@ -99607,28 +100597,28 @@ export default { }, "tournament_brackets_min_fields": { "created_at": [ - 4324 + 4376 ], "group": [ - 2779 + 2827 ], "id": [ - 4762 + 4921 ], "loser_parent_bracket_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_number": [ 38 ], "match_options_id": [ - 4762 + 4921 ], "parent_bracket_id": [ - 4762 + 4921 ], "path": [ 78 @@ -99637,10 +100627,10 @@ export default { 38 ], "scheduled_at": [ - 4324 + 4376 ], "scheduled_eta": [ - 4324 + 4376 ], "team_1_seed": [ 38 @@ -99649,13 +100639,13 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "tournament_team_id_1": [ - 4762 + 4921 ], "tournament_team_id_2": [ - 4762 + 4921 ], "__typename": [ 78 @@ -99663,55 +100653,55 @@ export default { }, "tournament_brackets_min_order_by": { "created_at": [ - 2781 + 2829 ], "group": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "loser_parent_bracket_id": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_number": [ - 2781 + 2829 ], "match_options_id": [ - 2781 + 2829 ], "parent_bracket_id": [ - 2781 + 2829 ], "path": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "scheduled_at": [ - 2781 + 2829 ], "scheduled_eta": [ - 2781 + 2829 ], "team_1_seed": [ - 2781 + 2829 ], "team_2_seed": [ - 2781 + 2829 ], "tournament_stage_id": [ - 2781 + 2829 ], "tournament_team_id_1": [ - 2781 + 2829 ], "tournament_team_id_2": [ - 2781 + 2829 ], "__typename": [ 78 @@ -99722,7 +100712,7 @@ export default { 38 ], "returning": [ - 4326 + 4378 ], "__typename": [ 78 @@ -99730,10 +100720,10 @@ export default { }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4340 + 4392 ], "on_conflict": [ - 4347 + 4399 ], "__typename": [ 78 @@ -99741,13 +100731,13 @@ export default { }, "tournament_brackets_on_conflict": { "constraint": [ - 4338 + 4390 ], "update_columns": [ - 4364 + 4416 ], "where": [ - 4337 + 4389 ], "__typename": [ 78 @@ -99755,88 +100745,88 @@ export default { }, "tournament_brackets_order_by": { "bye": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "feeding_brackets_aggregate": [ - 4333 + 4385 ], "finished": [ - 2781 + 2829 ], "group": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "loser_bracket": [ - 4348 + 4400 ], "loser_parent_bracket_id": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_number": [ - 2781 + 2829 ], "match_options_id": [ - 2781 + 2829 ], "options": [ - 2489 + 2537 ], "parent_bracket": [ - 4348 + 4400 ], "parent_bracket_id": [ - 2781 + 2829 ], "path": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "scheduled_at": [ - 2781 + 2829 ], "scheduled_eta": [ - 2781 + 2829 ], "scheduling_proposals_aggregate": [ - 1794 + 1842 ], "stage": [ - 4480 + 4621 ], "team_1": [ - 4607 + 4748 ], "team_1_seed": [ - 2781 + 2829 ], "team_2": [ - 4607 + 4748 ], "team_2_seed": [ - 2781 + 2829 ], "tournament_stage_id": [ - 2781 + 2829 ], "tournament_team_id_1": [ - 2781 + 2829 ], "tournament_team_id_2": [ - 2781 + 2829 ], "__typename": [ 78 @@ -99844,7 +100834,7 @@ export default { }, "tournament_brackets_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -99858,31 +100848,31 @@ export default { 3 ], "created_at": [ - 4324 + 4376 ], "finished": [ 3 ], "group": [ - 2779 + 2827 ], "id": [ - 4762 + 4921 ], "loser_parent_bracket_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_number": [ 38 ], "match_options_id": [ - 4762 + 4921 ], "parent_bracket_id": [ - 4762 + 4921 ], "path": [ 78 @@ -99891,10 +100881,10 @@ export default { 38 ], "scheduled_at": [ - 4324 + 4376 ], "scheduled_eta": [ - 4324 + 4376 ], "team_1_seed": [ 38 @@ -99903,13 +100893,13 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "tournament_team_id_1": [ - 4762 + 4921 ], "tournament_team_id_2": [ - 4762 + 4921 ], "__typename": [ 78 @@ -99937,19 +100927,19 @@ export default { }, "tournament_brackets_stddev_order_by": { "group": [ - 2781 + 2829 ], "match_number": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "team_1_seed": [ - 2781 + 2829 ], "team_2_seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -99977,19 +100967,19 @@ export default { }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 2781 + 2829 ], "match_number": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "team_1_seed": [ - 2781 + 2829 ], "team_2_seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -100017,19 +101007,19 @@ export default { }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 2781 + 2829 ], "match_number": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "team_1_seed": [ - 2781 + 2829 ], "team_2_seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -100037,7 +101027,7 @@ export default { }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4361 + 4413 ], "ordering": [ 236 @@ -100051,31 +101041,31 @@ export default { 3 ], "created_at": [ - 4324 + 4376 ], "finished": [ 3 ], "group": [ - 2779 + 2827 ], "id": [ - 4762 + 4921 ], "loser_parent_bracket_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_number": [ 38 ], "match_options_id": [ - 4762 + 4921 ], "parent_bracket_id": [ - 4762 + 4921 ], "path": [ 78 @@ -100084,10 +101074,10 @@ export default { 38 ], "scheduled_at": [ - 4324 + 4376 ], "scheduled_eta": [ - 4324 + 4376 ], "team_1_seed": [ 38 @@ -100096,13 +101086,13 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "tournament_team_id_1": [ - 4762 + 4921 ], "tournament_team_id_2": [ - 4762 + 4921 ], "__typename": [ 78 @@ -100110,7 +101100,7 @@ export default { }, "tournament_brackets_sum_fields": { "group": [ - 2779 + 2827 ], "match_number": [ 38 @@ -100130,19 +101120,19 @@ export default { }, "tournament_brackets_sum_order_by": { "group": [ - 2781 + 2829 ], "match_number": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "team_1_seed": [ - 2781 + 2829 ], "team_2_seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -100151,13 +101141,13 @@ export default { "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4339 + 4391 ], "_set": [ - 4353 + 4405 ], "where": [ - 4337 + 4389 ], "__typename": [ 78 @@ -100185,19 +101175,19 @@ export default { }, "tournament_brackets_var_pop_order_by": { "group": [ - 2781 + 2829 ], "match_number": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "team_1_seed": [ - 2781 + 2829 ], "team_2_seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -100225,19 +101215,19 @@ export default { }, "tournament_brackets_var_samp_order_by": { "group": [ - 2781 + 2829 ], "match_number": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "team_1_seed": [ - 2781 + 2829 ], "team_2_seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -100265,36 +101255,636 @@ export default { }, "tournament_brackets_variance_order_by": { "group": [ - 2781 + 2829 ], "match_number": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "team_1_seed": [ - 2781 + 2829 ], "team_2_seed": [ - 2781 + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories": { + "category": [ + 1170 + ], + "e_tournament_category": [ + 1165 + ], + "tournament": [ + 4857 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_aggregate": { + "aggregate": [ + 4428 + ], + "nodes": [ + 4424 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_aggregate_bool_exp": { + "count": [ + 4427 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_aggregate_bool_exp_count": { + "arguments": [ + 4442 + ], + "distinct": [ + 3 + ], + "filter": [ + 4431 + ], + "predicate": [ + 39 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_aggregate_fields": { + "count": [ + 38, + { + "columns": [ + 4442, + "[tournament_categories_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 4434 + ], + "min": [ + 4436 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_aggregate_order_by": { + "count": [ + 2829 + ], + "max": [ + 4435 + ], + "min": [ + 4437 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_arr_rel_insert_input": { + "data": [ + 4433 + ], + "on_conflict": [ + 4439 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_bool_exp": { + "_and": [ + 4431 + ], + "_not": [ + 4431 + ], + "_or": [ + 4431 + ], + "category": [ + 1171 + ], + "e_tournament_category": [ + 1168 + ], + "tournament": [ + 4878 + ], + "tournament_id": [ + 4923 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_constraint": {}, + "tournament_categories_insert_input": { + "category": [ + 1170 + ], + "e_tournament_category": [ + 1176 + ], + "tournament": [ + 4887 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_max_fields": { + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_max_order_by": { + "tournament_id": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_min_fields": { + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_min_order_by": { + "tournament_id": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 4424 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_on_conflict": { + "constraint": [ + 4432 + ], + "update_columns": [ + 4446 + ], + "where": [ + 4431 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_order_by": { + "category": [ + 2829 + ], + "e_tournament_category": [ + 1178 + ], + "tournament": [ + 4889 + ], + "tournament_id": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_pk_columns_input": { + "category": [ + 1170 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_select_column": {}, + "tournament_categories_set_input": { + "category": [ + 1170 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_stream_cursor_input": { + "initial_value": [ + 4445 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_stream_cursor_value_input": { + "category": [ + 1170 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_categories_update_column": {}, + "tournament_categories_updates": { + "_set": [ + 4443 + ], + "where": [ + 4431 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams": { + "created_at": [ + 4376 + ], + "team": [ + 4329 + ], + "team_id": [ + 4921 + ], + "tournament": [ + 4857 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_aggregate": { + "aggregate": [ + 4452 + ], + "nodes": [ + 4448 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_aggregate_bool_exp": { + "count": [ + 4451 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_aggregate_bool_exp_count": { + "arguments": [ + 4466 + ], + "distinct": [ + 3 + ], + "filter": [ + 4455 + ], + "predicate": [ + 39 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_aggregate_fields": { + "count": [ + 38, + { + "columns": [ + 4466, + "[tournament_organizer_teams_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 4458 + ], + "min": [ + 4460 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_aggregate_order_by": { + "count": [ + 2829 + ], + "max": [ + 4459 + ], + "min": [ + 4461 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_arr_rel_insert_input": { + "data": [ + 4457 + ], + "on_conflict": [ + 4463 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_bool_exp": { + "_and": [ + 4455 + ], + "_not": [ + 4455 + ], + "_or": [ + 4455 + ], + "created_at": [ + 4377 + ], + "team": [ + 4340 + ], + "team_id": [ + 4923 + ], + "tournament": [ + 4878 + ], + "tournament_id": [ + 4923 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_constraint": {}, + "tournament_organizer_teams_insert_input": { + "created_at": [ + 4376 + ], + "team": [ + 4349 + ], + "team_id": [ + 4921 + ], + "tournament": [ + 4887 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_max_fields": { + "created_at": [ + 4376 + ], + "team_id": [ + 4921 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_max_order_by": { + "created_at": [ + 2829 + ], + "team_id": [ + 2829 + ], + "tournament_id": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_min_fields": { + "created_at": [ + 4376 + ], + "team_id": [ + 4921 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_min_order_by": { + "created_at": [ + 2829 + ], + "team_id": [ + 2829 + ], + "tournament_id": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 4448 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_on_conflict": { + "constraint": [ + 4456 + ], + "update_columns": [ + 4470 + ], + "where": [ + 4455 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_order_by": { + "created_at": [ + 2829 + ], + "team": [ + 4351 + ], + "team_id": [ + 2829 + ], + "tournament": [ + 4889 + ], + "tournament_id": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_pk_columns_input": { + "team_id": [ + 4921 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_select_column": {}, + "tournament_organizer_teams_set_input": { + "created_at": [ + 4376 + ], + "team_id": [ + 4921 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_stream_cursor_input": { + "initial_value": [ + 4469 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_stream_cursor_value_input": { + "created_at": [ + 4376 + ], + "team_id": [ + 4921 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_update_column": {}, + "tournament_organizer_teams_updates": { + "_set": [ + 4467 + ], + "where": [ + 4455 ], "__typename": [ 78 ] }, "tournament_organizers": { + "organization_team": [ + 4329 + ], + "organization_team_id": [ + 4921 + ], "organizer": [ - 3739 + 3787 ], "steam_id": [ 180 ], "tournament": [ - 4716 + 4857 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -100302,10 +101892,10 @@ export default { }, "tournament_organizers_aggregate": { "aggregate": [ - 4376 + 4476 ], "nodes": [ - 4372 + 4472 ], "__typename": [ 78 @@ -100313,7 +101903,7 @@ export default { }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4375 + 4475 ], "__typename": [ 78 @@ -100321,13 +101911,13 @@ export default { }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4393 + 4493 ], "distinct": [ 3 ], "filter": [ - 4381 + 4481 ], "predicate": [ 39 @@ -100338,13 +101928,13 @@ export default { }, "tournament_organizers_aggregate_fields": { "avg": [ - 4379 + 4479 ], "count": [ 38, { "columns": [ - 4393, + 4493, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -100353,31 +101943,31 @@ export default { } ], "max": [ - 4385 + 4485 ], "min": [ - 4387 + 4487 ], "stddev": [ - 4395 + 4495 ], "stddev_pop": [ - 4397 + 4497 ], "stddev_samp": [ - 4399 + 4499 ], "sum": [ - 4403 + 4503 ], "var_pop": [ - 4407 + 4507 ], "var_samp": [ - 4409 + 4509 ], "variance": [ - 4411 + 4511 ], "__typename": [ 78 @@ -100385,37 +101975,37 @@ export default { }, "tournament_organizers_aggregate_order_by": { "avg": [ - 4380 + 4480 ], "count": [ - 2781 + 2829 ], "max": [ - 4386 + 4486 ], "min": [ - 4388 + 4488 ], "stddev": [ - 4396 + 4496 ], "stddev_pop": [ - 4398 + 4498 ], "stddev_samp": [ - 4400 + 4500 ], "sum": [ - 4404 + 4504 ], "var_pop": [ - 4408 + 4508 ], "var_samp": [ - 4410 + 4510 ], "variance": [ - 4412 + 4512 ], "__typename": [ 78 @@ -100423,10 +102013,10 @@ export default { }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4384 + 4484 ], "on_conflict": [ - 4390 + 4490 ], "__typename": [ 78 @@ -100442,7 +102032,7 @@ export default { }, "tournament_organizers_avg_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -100450,25 +102040,31 @@ export default { }, "tournament_organizers_bool_exp": { "_and": [ - 4381 + 4481 ], "_not": [ - 4381 + 4481 ], "_or": [ - 4381 + 4481 + ], + "organization_team": [ + 4340 + ], + "organization_team_id": [ + 4923 ], "organizer": [ - 3743 + 3791 ], "steam_id": [ 182 ], "tournament": [ - 4727 + 4878 ], "tournament_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -100484,61 +102080,79 @@ export default { ] }, "tournament_organizers_insert_input": { + "organization_team": [ + 4349 + ], + "organization_team_id": [ + 4921 + ], "organizer": [ - 3750 + 3798 ], "steam_id": [ 180 ], "tournament": [ - 4736 + 4887 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 ] }, "tournament_organizers_max_fields": { + "organization_team_id": [ + 4921 + ], "steam_id": [ 180 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 ] }, "tournament_organizers_max_order_by": { + "organization_team_id": [ + 2829 + ], "steam_id": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 ] }, "tournament_organizers_min_fields": { + "organization_team_id": [ + 4921 + ], "steam_id": [ 180 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 ] }, "tournament_organizers_min_order_by": { + "organization_team_id": [ + 2829 + ], "steam_id": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -100549,7 +102163,7 @@ export default { 38 ], "returning": [ - 4372 + 4472 ], "__typename": [ 78 @@ -100557,30 +102171,36 @@ export default { }, "tournament_organizers_on_conflict": { "constraint": [ - 4382 + 4482 ], "update_columns": [ - 4405 + 4505 ], "where": [ - 4381 + 4481 ], "__typename": [ 78 ] }, "tournament_organizers_order_by": { + "organization_team": [ + 4351 + ], + "organization_team_id": [ + 2829 + ], "organizer": [ - 3752 + 3800 ], "steam_id": [ - 2781 + 2829 ], "tournament": [ - 4738 + 4889 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -100591,7 +102211,7 @@ export default { 180 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -100599,11 +102219,14 @@ export default { }, "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { + "organization_team_id": [ + 4921 + ], "steam_id": [ 180 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -100619,7 +102242,7 @@ export default { }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -100635,7 +102258,7 @@ export default { }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -100651,7 +102274,7 @@ export default { }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -100659,7 +102282,7 @@ export default { }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4402 + 4502 ], "ordering": [ 236 @@ -100669,11 +102292,14 @@ export default { ] }, "tournament_organizers_stream_cursor_value_input": { + "organization_team_id": [ + 4921 + ], "steam_id": [ 180 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -100689,7 +102315,7 @@ export default { }, "tournament_organizers_sum_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -100698,13 +102324,13 @@ export default { "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4383 + 4483 ], "_set": [ - 4394 + 4494 ], "where": [ - 4381 + 4481 ], "__typename": [ 78 @@ -100720,7 +102346,7 @@ export default { }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -100736,7 +102362,7 @@ export default { }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -100752,7 +102378,587 @@ export default { }, "tournament_organizers_variance_order_by": { "steam_id": [ - 2781 + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes": { + "created_at": [ + 4376 + ], + "id": [ + 4921 + ], + "order": [ + 38 + ], + "place": [ + 78 + ], + "prize": [ + 78 + ], + "tournament": [ + 4857 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_aggregate": { + "aggregate": [ + 4517 + ], + "nodes": [ + 4513 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_aggregate_bool_exp": { + "count": [ + 4516 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_aggregate_bool_exp_count": { + "arguments": [ + 4534 + ], + "distinct": [ + 3 + ], + "filter": [ + 4522 + ], + "predicate": [ + 39 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_aggregate_fields": { + "avg": [ + 4520 + ], + "count": [ + 38, + { + "columns": [ + 4534, + "[tournament_prizes_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 4526 + ], + "min": [ + 4528 + ], + "stddev": [ + 4536 + ], + "stddev_pop": [ + 4538 + ], + "stddev_samp": [ + 4540 + ], + "sum": [ + 4544 + ], + "var_pop": [ + 4548 + ], + "var_samp": [ + 4550 + ], + "variance": [ + 4552 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_aggregate_order_by": { + "avg": [ + 4521 + ], + "count": [ + 2829 + ], + "max": [ + 4527 + ], + "min": [ + 4529 + ], + "stddev": [ + 4537 + ], + "stddev_pop": [ + 4539 + ], + "stddev_samp": [ + 4541 + ], + "sum": [ + 4545 + ], + "var_pop": [ + 4549 + ], + "var_samp": [ + 4551 + ], + "variance": [ + 4553 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_arr_rel_insert_input": { + "data": [ + 4525 + ], + "on_conflict": [ + 4531 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_avg_fields": { + "order": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_avg_order_by": { + "order": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_bool_exp": { + "_and": [ + 4522 + ], + "_not": [ + 4522 + ], + "_or": [ + 4522 + ], + "created_at": [ + 4377 + ], + "id": [ + 4923 + ], + "order": [ + 39 + ], + "place": [ + 80 + ], + "prize": [ + 80 + ], + "tournament": [ + 4878 + ], + "tournament_id": [ + 4923 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_constraint": {}, + "tournament_prizes_inc_input": { + "order": [ + 38 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_insert_input": { + "created_at": [ + 4376 + ], + "id": [ + 4921 + ], + "order": [ + 38 + ], + "place": [ + 78 + ], + "prize": [ + 78 + ], + "tournament": [ + 4887 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_max_fields": { + "created_at": [ + 4376 + ], + "id": [ + 4921 + ], + "order": [ + 38 + ], + "place": [ + 78 + ], + "prize": [ + 78 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_max_order_by": { + "created_at": [ + 2829 + ], + "id": [ + 2829 + ], + "order": [ + 2829 + ], + "place": [ + 2829 + ], + "prize": [ + 2829 + ], + "tournament_id": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_min_fields": { + "created_at": [ + 4376 + ], + "id": [ + 4921 + ], + "order": [ + 38 + ], + "place": [ + 78 + ], + "prize": [ + 78 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_min_order_by": { + "created_at": [ + 2829 + ], + "id": [ + 2829 + ], + "order": [ + 2829 + ], + "place": [ + 2829 + ], + "prize": [ + 2829 + ], + "tournament_id": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 4513 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_on_conflict": { + "constraint": [ + 4523 + ], + "update_columns": [ + 4546 + ], + "where": [ + 4522 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_order_by": { + "created_at": [ + 2829 + ], + "id": [ + 2829 + ], + "order": [ + 2829 + ], + "place": [ + 2829 + ], + "prize": [ + 2829 + ], + "tournament": [ + 4889 + ], + "tournament_id": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_pk_columns_input": { + "id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_select_column": {}, + "tournament_prizes_set_input": { + "created_at": [ + 4376 + ], + "id": [ + 4921 + ], + "order": [ + 38 + ], + "place": [ + 78 + ], + "prize": [ + 78 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_stddev_fields": { + "order": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_stddev_order_by": { + "order": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_stddev_pop_fields": { + "order": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_stddev_pop_order_by": { + "order": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_stddev_samp_fields": { + "order": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_stddev_samp_order_by": { + "order": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_stream_cursor_input": { + "initial_value": [ + 4543 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_stream_cursor_value_input": { + "created_at": [ + 4376 + ], + "id": [ + 4921 + ], + "order": [ + 38 + ], + "place": [ + 78 + ], + "prize": [ + 78 + ], + "tournament_id": [ + 4921 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_sum_fields": { + "order": [ + 38 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_sum_order_by": { + "order": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_update_column": {}, + "tournament_prizes_updates": { + "_inc": [ + 4524 + ], + "_set": [ + 4535 + ], + "where": [ + 4522 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_var_pop_fields": { + "order": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_var_pop_order_by": { + "order": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_var_samp_fields": { + "order": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_var_samp_order_by": { + "order": [ + 2829 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_variance_fields": { + "order": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournament_prizes_variance_order_by": { + "order": [ + 2829 ], "__typename": [ 78 @@ -100760,28 +102966,28 @@ export default { }, "tournament_stage_windows": { "closes_at": [ - 4324 + 4376 ], "created_at": [ - 4324 + 4376 ], "default_match_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "opens_at": [ - 4324 + 4376 ], "round": [ 38 ], "stage": [ - 4454 + 4595 ], "tournament_stage_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -100789,10 +102995,10 @@ export default { }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4417 + 4558 ], "nodes": [ - 4413 + 4554 ], "__typename": [ 78 @@ -100800,7 +103006,7 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4416 + 4557 ], "__typename": [ 78 @@ -100808,13 +103014,13 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4434 + 4575 ], "distinct": [ 3 ], "filter": [ - 4422 + 4563 ], "predicate": [ 39 @@ -100825,13 +103031,13 @@ export default { }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4420 + 4561 ], "count": [ 38, { "columns": [ - 4434, + 4575, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -100840,31 +103046,31 @@ export default { } ], "max": [ - 4426 + 4567 ], "min": [ - 4428 + 4569 ], "stddev": [ - 4436 + 4577 ], "stddev_pop": [ - 4438 + 4579 ], "stddev_samp": [ - 4440 + 4581 ], "sum": [ - 4444 + 4585 ], "var_pop": [ - 4448 + 4589 ], "var_samp": [ - 4450 + 4591 ], "variance": [ - 4452 + 4593 ], "__typename": [ 78 @@ -100872,37 +103078,37 @@ export default { }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4421 + 4562 ], "count": [ - 2781 + 2829 ], "max": [ - 4427 + 4568 ], "min": [ - 4429 + 4570 ], "stddev": [ - 4437 + 4578 ], "stddev_pop": [ - 4439 + 4580 ], "stddev_samp": [ - 4441 + 4582 ], "sum": [ - 4445 + 4586 ], "var_pop": [ - 4449 + 4590 ], "var_samp": [ - 4451 + 4592 ], "variance": [ - 4453 + 4594 ], "__typename": [ 78 @@ -100910,10 +103116,10 @@ export default { }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4425 + 4566 ], "on_conflict": [ - 4431 + 4572 ], "__typename": [ 78 @@ -100929,7 +103135,7 @@ export default { }, "tournament_stage_windows_avg_order_by": { "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -100937,37 +103143,37 @@ export default { }, "tournament_stage_windows_bool_exp": { "_and": [ - 4422 + 4563 ], "_not": [ - 4422 + 4563 ], "_or": [ - 4422 + 4563 ], "closes_at": [ - 4325 + 4377 ], "created_at": [ - 4325 + 4377 ], "default_match_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "opens_at": [ - 4325 + 4377 ], "round": [ 39 ], "stage": [ - 4466 + 4607 ], "tournament_stage_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -100984,28 +103190,28 @@ export default { }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4324 + 4376 ], "created_at": [ - 4324 + 4376 ], "default_match_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "opens_at": [ - 4324 + 4376 ], "round": [ 38 ], "stage": [ - 4478 + 4619 ], "tournament_stage_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -101013,25 +103219,25 @@ export default { }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4324 + 4376 ], "created_at": [ - 4324 + 4376 ], "default_match_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "opens_at": [ - 4324 + 4376 ], "round": [ 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -101039,25 +103245,25 @@ export default { }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "default_match_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "opens_at": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "tournament_stage_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -101065,25 +103271,25 @@ export default { }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4324 + 4376 ], "created_at": [ - 4324 + 4376 ], "default_match_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "opens_at": [ - 4324 + 4376 ], "round": [ 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -101091,25 +103297,25 @@ export default { }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "default_match_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "opens_at": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "tournament_stage_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -101120,7 +103326,7 @@ export default { 38 ], "returning": [ - 4413 + 4554 ], "__typename": [ 78 @@ -101128,13 +103334,13 @@ export default { }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4423 + 4564 ], "update_columns": [ - 4446 + 4587 ], "where": [ - 4422 + 4563 ], "__typename": [ 78 @@ -101142,28 +103348,28 @@ export default { }, "tournament_stage_windows_order_by": { "closes_at": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "default_match_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "opens_at": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "stage": [ - 4480 + 4621 ], "tournament_stage_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -101171,7 +103377,7 @@ export default { }, "tournament_stage_windows_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -101180,25 +103386,25 @@ export default { "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4324 + 4376 ], "created_at": [ - 4324 + 4376 ], "default_match_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "opens_at": [ - 4324 + 4376 ], "round": [ 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -101214,7 +103420,7 @@ export default { }, "tournament_stage_windows_stddev_order_by": { "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -101230,7 +103436,7 @@ export default { }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -101246,7 +103452,7 @@ export default { }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -101254,7 +103460,7 @@ export default { }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4443 + 4584 ], "ordering": [ 236 @@ -101265,25 +103471,25 @@ export default { }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4324 + 4376 ], "created_at": [ - 4324 + 4376 ], "default_match_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "opens_at": [ - 4324 + 4376 ], "round": [ 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -101299,7 +103505,7 @@ export default { }, "tournament_stage_windows_sum_order_by": { "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -101308,13 +103514,13 @@ export default { "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4424 + 4565 ], "_set": [ - 4435 + 4576 ], "where": [ - 4422 + 4563 ], "__typename": [ 78 @@ -101330,7 +103536,7 @@ export default { }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -101346,7 +103552,7 @@ export default { }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -101362,7 +103568,7 @@ export default { }, "tournament_stage_windows_variance_order_by": { "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -101370,10 +103576,10 @@ export default { }, "tournament_stages": { "brackets": [ - 4326, + 4378, { "distinct_on": [ - 4350, + 4402, "[tournament_brackets_select_column!]" ], "limit": [ @@ -101383,19 +103589,19 @@ export default { 38 ], "order_by": [ - 4348, + 4400, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4389 ] } ], "brackets_aggregate": [ - 4327, + 4379, { "distinct_on": [ - 4350, + 4402, "[tournament_brackets_select_column!]" ], "limit": [ @@ -101405,11 +103611,11 @@ export default { 38 ], "order_by": [ - 4348, + 4400, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4389 ] } ], @@ -101420,16 +103626,19 @@ export default { 38 ], "e_tournament_stage_type": [ - 1138 + 1186 + ], + "final_map_advantage": [ + 38 ], "groups": [ 38 ], "id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "max_rounds": [ 38 @@ -101441,16 +103650,16 @@ export default { 38 ], "options": [ - 2476 + 2524 ], "order": [ 38 ], "results": [ - 5486, + 5645, { "distinct_on": [ - 5518, + 5677, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -101460,19 +103669,19 @@ export default { 38 ], "order_by": [ - 5516, + 5675, "[v_team_stage_results_order_by!]" ], "where": [ - 5505 + 5664 ] } ], "results_aggregate": [ - 5487, + 5646, { "distinct_on": [ - 5518, + 5677, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -101482,16 +103691,16 @@ export default { 38 ], "order_by": [ - 5516, + 5675, "[v_team_stage_results_order_by!]" ], "where": [ - 5505 + 5664 ] } ], "settings": [ - 1652, + 1700, { "path": [ 78 @@ -101505,19 +103714,19 @@ export default { 3 ], "tournament": [ - 4716 + 4857 ], "tournament_id": [ - 4762 + 4921 ], "type": [ - 1143 + 1191 ], "windows": [ - 4413, + 4554, { "distinct_on": [ - 4434, + 4575, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -101527,19 +103736,19 @@ export default { 38 ], "order_by": [ - 4432, + 4573, "[tournament_stage_windows_order_by!]" ], "where": [ - 4422 + 4563 ] } ], "windows_aggregate": [ - 4414, + 4555, { "distinct_on": [ - 4434, + 4575, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -101549,11 +103758,11 @@ export default { 38 ], "order_by": [ - 4432, + 4573, "[tournament_stage_windows_order_by!]" ], "where": [ - 4422 + 4563 ] } ], @@ -101563,10 +103772,10 @@ export default { }, "tournament_stages_aggregate": { "aggregate": [ - 4460 + 4601 ], "nodes": [ - 4454 + 4595 ], "__typename": [ 78 @@ -101574,13 +103783,13 @@ export default { }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4457 + 4598 ], "bool_or": [ - 4458 + 4599 ], "count": [ - 4459 + 4600 ], "__typename": [ 78 @@ -101588,13 +103797,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4484 + 4625 ], "distinct": [ 3 ], "filter": [ - 4466 + 4607 ], "predicate": [ 4 @@ -101605,13 +103814,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4485 + 4626 ], "distinct": [ 3 ], "filter": [ - 4466 + 4607 ], "predicate": [ 4 @@ -101622,13 +103831,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4483 + 4624 ], "distinct": [ 3 ], "filter": [ - 4466 + 4607 ], "predicate": [ 39 @@ -101639,13 +103848,13 @@ export default { }, "tournament_stages_aggregate_fields": { "avg": [ - 4464 + 4605 ], "count": [ 38, { "columns": [ - 4483, + 4624, "[tournament_stages_select_column!]" ], "distinct": [ @@ -101654,31 +103863,31 @@ export default { } ], "max": [ - 4473 + 4614 ], "min": [ - 4475 + 4616 ], "stddev": [ - 4487 + 4628 ], "stddev_pop": [ - 4489 + 4630 ], "stddev_samp": [ - 4491 + 4632 ], "sum": [ - 4495 + 4636 ], "var_pop": [ - 4499 + 4640 ], "var_samp": [ - 4501 + 4642 ], "variance": [ - 4503 + 4644 ], "__typename": [ 78 @@ -101686,37 +103895,37 @@ export default { }, "tournament_stages_aggregate_order_by": { "avg": [ - 4465 + 4606 ], "count": [ - 2781 + 2829 ], "max": [ - 4474 + 4615 ], "min": [ - 4476 + 4617 ], "stddev": [ - 4488 + 4629 ], "stddev_pop": [ - 4490 + 4631 ], "stddev_samp": [ - 4492 + 4633 ], "sum": [ - 4496 + 4637 ], "var_pop": [ - 4500 + 4641 ], "var_samp": [ - 4502 + 4643 ], "variance": [ - 4504 + 4645 ], "__typename": [ 78 @@ -101724,7 +103933,7 @@ export default { }, "tournament_stages_append_input": { "settings": [ - 1652 + 1700 ], "__typename": [ 78 @@ -101732,10 +103941,10 @@ export default { }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4472 + 4613 ], "on_conflict": [ - 4479 + 4620 ], "__typename": [ 78 @@ -101748,6 +103957,9 @@ export default { "default_best_of": [ 29 ], + "final_map_advantage": [ + 29 + ], "groups": [ 29 ], @@ -101769,25 +103981,28 @@ export default { }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 2781 + 2829 ], "default_best_of": [ - 2781 + 2829 + ], + "final_map_advantage": [ + 2829 ], "groups": [ - 2781 + 2829 ], "max_rounds": [ - 2781 + 2829 ], "max_teams": [ - 2781 + 2829 ], "min_teams": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "__typename": [ 78 @@ -101795,19 +104010,19 @@ export default { }, "tournament_stages_bool_exp": { "_and": [ - 4466 + 4607 ], "_not": [ - 4466 + 4607 ], "_or": [ - 4466 + 4607 ], "brackets": [ - 4337 + 4389 ], "brackets_aggregate": [ - 4328 + 4380 ], "decider_best_of": [ 39 @@ -101816,16 +104031,19 @@ export default { 39 ], "e_tournament_stage_type": [ - 1141 + 1189 + ], + "final_map_advantage": [ + 39 ], "groups": [ 39 ], "id": [ - 4764 + 4923 ], "match_options_id": [ - 4764 + 4923 ], "max_rounds": [ 39 @@ -101837,19 +104055,19 @@ export default { 39 ], "options": [ - 2480 + 2528 ], "order": [ 39 ], "results": [ - 5505 + 5664 ], "results_aggregate": [ - 5488 + 5647 ], "settings": [ - 1654 + 1702 ], "swiss_no_elimination": [ 4 @@ -101858,19 +104076,19 @@ export default { 4 ], "tournament": [ - 4727 + 4878 ], "tournament_id": [ - 4764 + 4923 ], "type": [ - 1144 + 1192 ], "windows": [ - 4422 + 4563 ], "windows_aggregate": [ - 4415 + 4556 ], "__typename": [ 78 @@ -101908,6 +104126,9 @@ export default { "default_best_of": [ 38 ], + "final_map_advantage": [ + 38 + ], "groups": [ 38 ], @@ -101929,7 +104150,7 @@ export default { }, "tournament_stages_insert_input": { "brackets": [ - 4334 + 4386 ], "decider_best_of": [ 38 @@ -101938,16 +104159,19 @@ export default { 38 ], "e_tournament_stage_type": [ - 1149 + 1197 + ], + "final_map_advantage": [ + 38 ], "groups": [ 38 ], "id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "max_rounds": [ 38 @@ -101959,16 +104183,16 @@ export default { 38 ], "options": [ - 2487 + 2535 ], "order": [ 38 ], "results": [ - 5502 + 5661 ], "settings": [ - 1652 + 1700 ], "swiss_no_elimination": [ 3 @@ -101977,16 +104201,16 @@ export default { 3 ], "tournament": [ - 4736 + 4887 ], "tournament_id": [ - 4762 + 4921 ], "type": [ - 1143 + 1191 ], "windows": [ - 4419 + 4560 ], "__typename": [ 78 @@ -101999,14 +104223,17 @@ export default { "default_best_of": [ 38 ], + "final_map_advantage": [ + 38 + ], "groups": [ 38 ], "id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "max_rounds": [ 38 @@ -102021,7 +104248,7 @@ export default { 38 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -102029,34 +104256,37 @@ export default { }, "tournament_stages_max_order_by": { "decider_best_of": [ - 2781 + 2829 ], "default_best_of": [ - 2781 + 2829 + ], + "final_map_advantage": [ + 2829 ], "groups": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match_options_id": [ - 2781 + 2829 ], "max_rounds": [ - 2781 + 2829 ], "max_teams": [ - 2781 + 2829 ], "min_teams": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -102069,14 +104299,17 @@ export default { "default_best_of": [ 38 ], + "final_map_advantage": [ + 38 + ], "groups": [ 38 ], "id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "max_rounds": [ 38 @@ -102091,7 +104324,7 @@ export default { 38 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -102099,34 +104332,37 @@ export default { }, "tournament_stages_min_order_by": { "decider_best_of": [ - 2781 + 2829 ], "default_best_of": [ - 2781 + 2829 + ], + "final_map_advantage": [ + 2829 ], "groups": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match_options_id": [ - 2781 + 2829 ], "max_rounds": [ - 2781 + 2829 ], "max_teams": [ - 2781 + 2829 ], "min_teams": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -102137,7 +104373,7 @@ export default { 38 ], "returning": [ - 4454 + 4595 ], "__typename": [ 78 @@ -102145,10 +104381,10 @@ export default { }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4472 + 4613 ], "on_conflict": [ - 4479 + 4620 ], "__typename": [ 78 @@ -102156,13 +104392,13 @@ export default { }, "tournament_stages_on_conflict": { "constraint": [ - 4467 + 4608 ], "update_columns": [ - 4497 + 4638 ], "where": [ - 4466 + 4607 ], "__typename": [ 78 @@ -102170,64 +104406,67 @@ export default { }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4333 + 4385 ], "decider_best_of": [ - 2781 + 2829 ], "default_best_of": [ - 2781 + 2829 ], "e_tournament_stage_type": [ - 1151 + 1199 + ], + "final_map_advantage": [ + 2829 ], "groups": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "match_options_id": [ - 2781 + 2829 ], "max_rounds": [ - 2781 + 2829 ], "max_teams": [ - 2781 + 2829 ], "min_teams": [ - 2781 + 2829 ], "options": [ - 2489 + 2537 ], "order": [ - 2781 + 2829 ], "results_aggregate": [ - 5501 + 5660 ], "settings": [ - 2781 + 2829 ], "swiss_no_elimination": [ - 2781 + 2829 ], "third_place_match": [ - 2781 + 2829 ], "tournament": [ - 4738 + 4889 ], "tournament_id": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "windows_aggregate": [ - 4418 + 4559 ], "__typename": [ 78 @@ -102235,7 +104474,7 @@ export default { }, "tournament_stages_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -102243,7 +104482,7 @@ export default { }, "tournament_stages_prepend_input": { "settings": [ - 1652 + 1700 ], "__typename": [ 78 @@ -102259,14 +104498,17 @@ export default { "default_best_of": [ 38 ], + "final_map_advantage": [ + 38 + ], "groups": [ 38 ], "id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "max_rounds": [ 38 @@ -102281,7 +104523,7 @@ export default { 38 ], "settings": [ - 1652 + 1700 ], "swiss_no_elimination": [ 3 @@ -102290,10 +104532,10 @@ export default { 3 ], "tournament_id": [ - 4762 + 4921 ], "type": [ - 1143 + 1191 ], "__typename": [ 78 @@ -102306,6 +104548,9 @@ export default { "default_best_of": [ 29 ], + "final_map_advantage": [ + 29 + ], "groups": [ 29 ], @@ -102327,25 +104572,28 @@ export default { }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 2781 + 2829 ], "default_best_of": [ - 2781 + 2829 + ], + "final_map_advantage": [ + 2829 ], "groups": [ - 2781 + 2829 ], "max_rounds": [ - 2781 + 2829 ], "max_teams": [ - 2781 + 2829 ], "min_teams": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "__typename": [ 78 @@ -102358,6 +104606,9 @@ export default { "default_best_of": [ 29 ], + "final_map_advantage": [ + 29 + ], "groups": [ 29 ], @@ -102379,25 +104630,28 @@ export default { }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 2781 + 2829 ], "default_best_of": [ - 2781 + 2829 + ], + "final_map_advantage": [ + 2829 ], "groups": [ - 2781 + 2829 ], "max_rounds": [ - 2781 + 2829 ], "max_teams": [ - 2781 + 2829 ], "min_teams": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "__typename": [ 78 @@ -102410,6 +104664,9 @@ export default { "default_best_of": [ 29 ], + "final_map_advantage": [ + 29 + ], "groups": [ 29 ], @@ -102431,25 +104688,28 @@ export default { }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 2781 + 2829 ], "default_best_of": [ - 2781 + 2829 + ], + "final_map_advantage": [ + 2829 ], "groups": [ - 2781 + 2829 ], "max_rounds": [ - 2781 + 2829 ], "max_teams": [ - 2781 + 2829 ], "min_teams": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "__typename": [ 78 @@ -102457,7 +104717,7 @@ export default { }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4494 + 4635 ], "ordering": [ 236 @@ -102473,14 +104733,17 @@ export default { "default_best_of": [ 38 ], + "final_map_advantage": [ + 38 + ], "groups": [ 38 ], "id": [ - 4762 + 4921 ], "match_options_id": [ - 4762 + 4921 ], "max_rounds": [ 38 @@ -102495,7 +104758,7 @@ export default { 38 ], "settings": [ - 1652 + 1700 ], "swiss_no_elimination": [ 3 @@ -102504,10 +104767,10 @@ export default { 3 ], "tournament_id": [ - 4762 + 4921 ], "type": [ - 1143 + 1191 ], "__typename": [ 78 @@ -102520,6 +104783,9 @@ export default { "default_best_of": [ 38 ], + "final_map_advantage": [ + 38 + ], "groups": [ 38 ], @@ -102541,25 +104807,28 @@ export default { }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 2781 + 2829 ], "default_best_of": [ - 2781 + 2829 + ], + "final_map_advantage": [ + 2829 ], "groups": [ - 2781 + 2829 ], "max_rounds": [ - 2781 + 2829 ], "max_teams": [ - 2781 + 2829 ], "min_teams": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "__typename": [ 78 @@ -102568,28 +104837,28 @@ export default { "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4462 + 4603 ], "_delete_at_path": [ - 4468 + 4609 ], "_delete_elem": [ - 4469 + 4610 ], "_delete_key": [ - 4470 + 4611 ], "_inc": [ - 4471 + 4612 ], "_prepend": [ - 4482 + 4623 ], "_set": [ - 4486 + 4627 ], "where": [ - 4466 + 4607 ], "__typename": [ 78 @@ -102602,6 +104871,9 @@ export default { "default_best_of": [ 29 ], + "final_map_advantage": [ + 29 + ], "groups": [ 29 ], @@ -102623,25 +104895,28 @@ export default { }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 2781 + 2829 ], "default_best_of": [ - 2781 + 2829 + ], + "final_map_advantage": [ + 2829 ], "groups": [ - 2781 + 2829 ], "max_rounds": [ - 2781 + 2829 ], "max_teams": [ - 2781 + 2829 ], "min_teams": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "__typename": [ 78 @@ -102654,6 +104929,9 @@ export default { "default_best_of": [ 29 ], + "final_map_advantage": [ + 29 + ], "groups": [ 29 ], @@ -102675,25 +104953,28 @@ export default { }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 2781 + 2829 ], "default_best_of": [ - 2781 + 2829 + ], + "final_map_advantage": [ + 2829 ], "groups": [ - 2781 + 2829 ], "max_rounds": [ - 2781 + 2829 ], "max_teams": [ - 2781 + 2829 ], "min_teams": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "__typename": [ 78 @@ -102706,6 +104987,9 @@ export default { "default_best_of": [ 29 ], + "final_map_advantage": [ + 29 + ], "groups": [ 29 ], @@ -102727,25 +105011,28 @@ export default { }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 2781 + 2829 ], "default_best_of": [ - 2781 + 2829 + ], + "final_map_advantage": [ + 2829 ], "groups": [ - 2781 + 2829 ], "max_rounds": [ - 2781 + 2829 ], "max_teams": [ - 2781 + 2829 ], "min_teams": [ - 2781 + 2829 ], "order": [ - 2781 + 2829 ], "__typename": [ 78 @@ -102753,28 +105040,28 @@ export default { }, "tournament_team_invites": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "invited_by": [ - 3739 + 3787 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3739 + 3787 ], "steam_id": [ 180 ], "team": [ - 4587 + 4728 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -102782,10 +105069,10 @@ export default { }, "tournament_team_invites_aggregate": { "aggregate": [ - 4509 + 4650 ], "nodes": [ - 4505 + 4646 ], "__typename": [ 78 @@ -102793,7 +105080,7 @@ export default { }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4508 + 4649 ], "__typename": [ 78 @@ -102801,13 +105088,13 @@ export default { }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 4526 + 4667 ], "distinct": [ 3 ], "filter": [ - 4514 + 4655 ], "predicate": [ 39 @@ -102818,13 +105105,13 @@ export default { }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4512 + 4653 ], "count": [ 38, { "columns": [ - 4526, + 4667, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -102833,31 +105120,31 @@ export default { } ], "max": [ - 4518 + 4659 ], "min": [ - 4520 + 4661 ], "stddev": [ - 4528 + 4669 ], "stddev_pop": [ - 4530 + 4671 ], "stddev_samp": [ - 4532 + 4673 ], "sum": [ - 4536 + 4677 ], "var_pop": [ - 4540 + 4681 ], "var_samp": [ - 4542 + 4683 ], "variance": [ - 4544 + 4685 ], "__typename": [ 78 @@ -102865,37 +105152,37 @@ export default { }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4513 + 4654 ], "count": [ - 2781 + 2829 ], "max": [ - 4519 + 4660 ], "min": [ - 4521 + 4662 ], "stddev": [ - 4529 + 4670 ], "stddev_pop": [ - 4531 + 4672 ], "stddev_samp": [ - 4533 + 4674 ], "sum": [ - 4537 + 4678 ], "var_pop": [ - 4541 + 4682 ], "var_samp": [ - 4543 + 4684 ], "variance": [ - 4545 + 4686 ], "__typename": [ 78 @@ -102903,10 +105190,10 @@ export default { }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4517 + 4658 ], "on_conflict": [ - 4523 + 4664 ], "__typename": [ 78 @@ -102925,10 +105212,10 @@ export default { }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -102936,37 +105223,37 @@ export default { }, "tournament_team_invites_bool_exp": { "_and": [ - 4514 + 4655 ], "_not": [ - 4514 + 4655 ], "_or": [ - 4514 + 4655 ], "created_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "invited_by": [ - 3743 + 3791 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3743 + 3791 ], "steam_id": [ 182 ], "team": [ - 4596 + 4737 ], "tournament_team_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -102986,28 +105273,28 @@ export default { }, "tournament_team_invites_insert_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "invited_by": [ - 3750 + 3798 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3750 + 3798 ], "steam_id": [ 180 ], "team": [ - 4605 + 4746 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -103015,10 +105302,10 @@ export default { }, "tournament_team_invites_max_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "invited_by_player_steam_id": [ 180 @@ -103027,7 +105314,7 @@ export default { 180 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -103035,19 +105322,19 @@ export default { }, "tournament_team_invites_max_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103055,10 +105342,10 @@ export default { }, "tournament_team_invites_min_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "invited_by_player_steam_id": [ 180 @@ -103067,7 +105354,7 @@ export default { 180 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -103075,19 +105362,19 @@ export default { }, "tournament_team_invites_min_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103098,7 +105385,7 @@ export default { 38 ], "returning": [ - 4505 + 4646 ], "__typename": [ 78 @@ -103106,13 +105393,13 @@ export default { }, "tournament_team_invites_on_conflict": { "constraint": [ - 4515 + 4656 ], "update_columns": [ - 4538 + 4679 ], "where": [ - 4514 + 4655 ], "__typename": [ 78 @@ -103120,28 +105407,28 @@ export default { }, "tournament_team_invites_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "invited_by": [ - 3752 + 3800 ], "invited_by_player_steam_id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "steam_id": [ - 2781 + 2829 ], "team": [ - 4607 + 4748 ], "tournament_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103149,7 +105436,7 @@ export default { }, "tournament_team_invites_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -103158,10 +105445,10 @@ export default { "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "invited_by_player_steam_id": [ 180 @@ -103170,7 +105457,7 @@ export default { 180 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -103189,10 +105476,10 @@ export default { }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103211,10 +105498,10 @@ export default { }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103233,10 +105520,10 @@ export default { }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103244,7 +105531,7 @@ export default { }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 4535 + 4676 ], "ordering": [ 236 @@ -103255,10 +105542,10 @@ export default { }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "invited_by_player_steam_id": [ 180 @@ -103267,7 +105554,7 @@ export default { 180 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -103286,10 +105573,10 @@ export default { }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103298,13 +105585,13 @@ export default { "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4516 + 4657 ], "_set": [ - 4527 + 4668 ], "where": [ - 4514 + 4655 ], "__typename": [ 78 @@ -103323,10 +105610,10 @@ export default { }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103345,10 +105632,10 @@ export default { }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103367,10 +105654,10 @@ export default { }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103378,28 +105665,28 @@ export default { }, "tournament_team_roster": { "e_team_role": [ - 1077 + 1104 ], "player": [ - 3739 + 3787 ], "player_steam_id": [ 180 ], "role": [ - 1082 + 1109 ], "tournament": [ - 4716 + 4857 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team": [ - 4587 + 4728 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -103407,10 +105694,10 @@ export default { }, "tournament_team_roster_aggregate": { "aggregate": [ - 4550 + 4691 ], "nodes": [ - 4546 + 4687 ], "__typename": [ 78 @@ -103418,7 +105705,7 @@ export default { }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 4549 + 4690 ], "__typename": [ 78 @@ -103426,13 +105713,13 @@ export default { }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 4567 + 4708 ], "distinct": [ 3 ], "filter": [ - 4555 + 4696 ], "predicate": [ 39 @@ -103443,13 +105730,13 @@ export default { }, "tournament_team_roster_aggregate_fields": { "avg": [ - 4553 + 4694 ], "count": [ 38, { "columns": [ - 4567, + 4708, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -103458,31 +105745,31 @@ export default { } ], "max": [ - 4559 + 4700 ], "min": [ - 4561 + 4702 ], "stddev": [ - 4569 + 4710 ], "stddev_pop": [ - 4571 + 4712 ], "stddev_samp": [ - 4573 + 4714 ], "sum": [ - 4577 + 4718 ], "var_pop": [ - 4581 + 4722 ], "var_samp": [ - 4583 + 4724 ], "variance": [ - 4585 + 4726 ], "__typename": [ 78 @@ -103490,37 +105777,37 @@ export default { }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 4554 + 4695 ], "count": [ - 2781 + 2829 ], "max": [ - 4560 + 4701 ], "min": [ - 4562 + 4703 ], "stddev": [ - 4570 + 4711 ], "stddev_pop": [ - 4572 + 4713 ], "stddev_samp": [ - 4574 + 4715 ], "sum": [ - 4578 + 4719 ], "var_pop": [ - 4582 + 4723 ], "var_samp": [ - 4584 + 4725 ], "variance": [ - 4586 + 4727 ], "__typename": [ 78 @@ -103528,10 +105815,10 @@ export default { }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 4558 + 4699 ], "on_conflict": [ - 4564 + 4705 ], "__typename": [ 78 @@ -103547,7 +105834,7 @@ export default { }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103555,37 +105842,37 @@ export default { }, "tournament_team_roster_bool_exp": { "_and": [ - 4555 + 4696 ], "_not": [ - 4555 + 4696 ], "_or": [ - 4555 + 4696 ], "e_team_role": [ - 1080 + 1107 ], "player": [ - 3743 + 3791 ], "player_steam_id": [ 182 ], "role": [ - 1083 + 1110 ], "tournament": [ - 4727 + 4878 ], "tournament_id": [ - 4764 + 4923 ], "tournament_team": [ - 4596 + 4737 ], "tournament_team_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -103602,28 +105889,28 @@ export default { }, "tournament_team_roster_insert_input": { "e_team_role": [ - 1088 + 1115 ], "player": [ - 3750 + 3798 ], "player_steam_id": [ 180 ], "role": [ - 1082 + 1109 ], "tournament": [ - 4736 + 4887 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team": [ - 4605 + 4746 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -103634,10 +105921,10 @@ export default { 180 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -103645,13 +105932,13 @@ export default { }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103662,10 +105949,10 @@ export default { 180 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -103673,13 +105960,13 @@ export default { }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103690,7 +105977,7 @@ export default { 38 ], "returning": [ - 4546 + 4687 ], "__typename": [ 78 @@ -103698,13 +105985,13 @@ export default { }, "tournament_team_roster_on_conflict": { "constraint": [ - 4556 + 4697 ], "update_columns": [ - 4579 + 4720 ], "where": [ - 4555 + 4696 ], "__typename": [ 78 @@ -103712,28 +105999,28 @@ export default { }, "tournament_team_roster_order_by": { "e_team_role": [ - 1090 + 1117 ], "player": [ - 3752 + 3800 ], "player_steam_id": [ - 2781 + 2829 ], "role": [ - 2781 + 2829 ], "tournament": [ - 4738 + 4889 ], "tournament_id": [ - 2781 + 2829 ], "tournament_team": [ - 4607 + 4748 ], "tournament_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103744,7 +106031,7 @@ export default { 180 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -103756,13 +106043,13 @@ export default { 180 ], "role": [ - 1082 + 1109 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -103778,7 +106065,7 @@ export default { }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103794,7 +106081,7 @@ export default { }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103810,7 +106097,7 @@ export default { }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103818,7 +106105,7 @@ export default { }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 4576 + 4717 ], "ordering": [ 236 @@ -103832,13 +106119,13 @@ export default { 180 ], "role": [ - 1082 + 1109 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -103854,7 +106141,7 @@ export default { }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103863,13 +106150,13 @@ export default { "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 4557 + 4698 ], "_set": [ - 4568 + 4709 ], "where": [ - 4555 + 4696 ], "__typename": [ 78 @@ -103885,7 +106172,7 @@ export default { }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103901,7 +106188,7 @@ export default { }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103917,7 +106204,7 @@ export default { }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -103928,28 +106215,28 @@ export default { 3 ], "captain": [ - 3739 + 3787 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4376 ], "creator": [ - 3739 + 3787 ], "eligible_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "invites": [ - 4505, + 4646, { "distinct_on": [ - 4526, + 4667, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -103959,19 +106246,19 @@ export default { 38 ], "order_by": [ - 4524, + 4665, "[tournament_team_invites_order_by!]" ], "where": [ - 4514 + 4655 ] } ], "invites_aggregate": [ - 4506, + 4647, { "distinct_on": [ - 4526, + 4667, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -103981,11 +106268,11 @@ export default { 38 ], "order_by": [ - 4524, + 4665, "[tournament_team_invites_order_by!]" ], "where": [ - 4514 + 4655 ] } ], @@ -103996,13 +106283,13 @@ export default { 180 ], "results": [ - 5486 + 5645 ], "roster": [ - 4546, + 4687, { "distinct_on": [ - 4567, + 4708, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -104012,19 +106299,19 @@ export default { 38 ], "order_by": [ - 4565, + 4706, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4696 ] } ], "roster_aggregate": [ - 4547, + 4688, { "distinct_on": [ - 4567, + 4708, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -104034,11 +106321,11 @@ export default { 38 ], "order_by": [ - 4565, + 4706, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4696 ] } ], @@ -104049,16 +106336,16 @@ export default { 78 ], "team": [ - 4281 + 4329 ], "team_id": [ - 4762 + 4921 ], "tournament": [ - 4716 + 4857 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -104066,10 +106353,10 @@ export default { }, "tournament_teams_aggregate": { "aggregate": [ - 4591 + 4732 ], "nodes": [ - 4587 + 4728 ], "__typename": [ 78 @@ -104077,7 +106364,7 @@ export default { }, "tournament_teams_aggregate_bool_exp": { "count": [ - 4590 + 4731 ], "__typename": [ 78 @@ -104085,13 +106372,13 @@ export default { }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 4609 + 4750 ], "distinct": [ 3 ], "filter": [ - 4596 + 4737 ], "predicate": [ 39 @@ -104102,13 +106389,13 @@ export default { }, "tournament_teams_aggregate_fields": { "avg": [ - 4594 + 4735 ], "count": [ 38, { "columns": [ - 4609, + 4750, "[tournament_teams_select_column!]" ], "distinct": [ @@ -104117,31 +106404,31 @@ export default { } ], "max": [ - 4600 + 4741 ], "min": [ - 4602 + 4743 ], "stddev": [ - 4611 + 4752 ], "stddev_pop": [ - 4613 + 4754 ], "stddev_samp": [ - 4615 + 4756 ], "sum": [ - 4619 + 4760 ], "var_pop": [ - 4623 + 4764 ], "var_samp": [ - 4625 + 4766 ], "variance": [ - 4627 + 4768 ], "__typename": [ 78 @@ -104149,37 +106436,37 @@ export default { }, "tournament_teams_aggregate_order_by": { "avg": [ - 4595 + 4736 ], "count": [ - 2781 + 2829 ], "max": [ - 4601 + 4742 ], "min": [ - 4603 + 4744 ], "stddev": [ - 4612 + 4753 ], "stddev_pop": [ - 4614 + 4755 ], "stddev_samp": [ - 4616 + 4757 ], "sum": [ - 4620 + 4761 ], "var_pop": [ - 4624 + 4765 ], "var_samp": [ - 4626 + 4767 ], "variance": [ - 4628 + 4769 ], "__typename": [ 78 @@ -104187,10 +106474,10 @@ export default { }, "tournament_teams_arr_rel_insert_input": { "data": [ - 4599 + 4740 ], "on_conflict": [ - 4606 + 4747 ], "__typename": [ 78 @@ -104212,13 +106499,13 @@ export default { }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -104226,40 +106513,40 @@ export default { }, "tournament_teams_bool_exp": { "_and": [ - 4596 + 4737 ], "_not": [ - 4596 + 4737 ], "_or": [ - 4596 + 4737 ], "can_manage": [ 4 ], "captain": [ - 3743 + 3791 ], "captain_steam_id": [ 182 ], "created_at": [ - 4325 + 4377 ], "creator": [ - 3743 + 3791 ], "eligible_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "invites": [ - 4514 + 4655 ], "invites_aggregate": [ - 4507 + 4648 ], "name": [ 80 @@ -104268,13 +106555,13 @@ export default { 182 ], "results": [ - 5505 + 5664 ], "roster": [ - 4555 + 4696 ], "roster_aggregate": [ - 4548 + 4689 ], "seed": [ 39 @@ -104283,16 +106570,16 @@ export default { 80 ], "team": [ - 4290 + 4340 ], "team_id": [ - 4764 + 4923 ], "tournament": [ - 4727 + 4878 ], "tournament_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -104315,25 +106602,25 @@ export default { }, "tournament_teams_insert_input": { "captain": [ - 3750 + 3798 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4376 ], "creator": [ - 3750 + 3798 ], "eligible_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "invites": [ - 4511 + 4652 ], "name": [ 78 @@ -104342,10 +106629,10 @@ export default { 180 ], "results": [ - 5514 + 5673 ], "roster": [ - 4552 + 4693 ], "seed": [ 38 @@ -104354,16 +106641,16 @@ export default { 78 ], "team": [ - 4299 + 4349 ], "team_id": [ - 4762 + 4921 ], "tournament": [ - 4736 + 4887 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -104374,13 +106661,13 @@ export default { 180 ], "created_at": [ - 4324 + 4376 ], "eligible_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 @@ -104395,10 +106682,10 @@ export default { 78 ], "team_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -104406,34 +106693,34 @@ export default { }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "eligible_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "short_name": [ - 2781 + 2829 ], "team_id": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -104444,13 +106731,13 @@ export default { 180 ], "created_at": [ - 4324 + 4376 ], "eligible_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 @@ -104465,10 +106752,10 @@ export default { 78 ], "team_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -104476,34 +106763,34 @@ export default { }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "eligible_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "short_name": [ - 2781 + 2829 ], "team_id": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -104514,7 +106801,7 @@ export default { 38 ], "returning": [ - 4587 + 4728 ], "__typename": [ 78 @@ -104522,10 +106809,10 @@ export default { }, "tournament_teams_obj_rel_insert_input": { "data": [ - 4599 + 4740 ], "on_conflict": [ - 4606 + 4747 ], "__typename": [ 78 @@ -104533,13 +106820,13 @@ export default { }, "tournament_teams_on_conflict": { "constraint": [ - 4597 + 4738 ], "update_columns": [ - 4621 + 4762 ], "where": [ - 4596 + 4737 ], "__typename": [ 78 @@ -104547,58 +106834,58 @@ export default { }, "tournament_teams_order_by": { "can_manage": [ - 2781 + 2829 ], "captain": [ - 3752 + 3800 ], "captain_steam_id": [ - 2781 + 2829 ], "created_at": [ - 2781 + 2829 ], "creator": [ - 3752 + 3800 ], "eligible_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "invites_aggregate": [ - 4510 + 4651 ], "name": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "results": [ - 5516 + 5675 ], "roster_aggregate": [ - 4551 + 4692 ], "seed": [ - 2781 + 2829 ], "short_name": [ - 2781 + 2829 ], "team": [ - 4301 + 4351 ], "team_id": [ - 2781 + 2829 ], "tournament": [ - 4738 + 4889 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -104606,7 +106893,7 @@ export default { }, "tournament_teams_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -104618,13 +106905,13 @@ export default { 180 ], "created_at": [ - 4324 + 4376 ], "eligible_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 @@ -104639,10 +106926,10 @@ export default { 78 ], "team_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -104664,13 +106951,13 @@ export default { }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -104692,13 +106979,13 @@ export default { }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -104720,13 +107007,13 @@ export default { }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -104734,7 +107021,7 @@ export default { }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 4618 + 4759 ], "ordering": [ 236 @@ -104748,13 +107035,13 @@ export default { 180 ], "created_at": [ - 4324 + 4376 ], "eligible_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "name": [ 78 @@ -104769,10 +107056,10 @@ export default { 78 ], "team_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -104794,13 +107081,13 @@ export default { }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -104809,13 +107096,13 @@ export default { "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 4598 + 4739 ], "_set": [ - 4610 + 4751 ], "where": [ - 4596 + 4737 ], "__typename": [ 78 @@ -104837,13 +107124,13 @@ export default { }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -104865,13 +107152,13 @@ export default { }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -104893,13 +107180,13 @@ export default { }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 2781 + 2829 ], "owner_steam_id": [ - 2781 + 2829 ], "seed": [ - 2781 + 2829 ], "__typename": [ 78 @@ -104907,10 +107194,10 @@ export default { }, "tournament_trophies": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "manual": [ 3 @@ -104922,31 +107209,31 @@ export default { 78 ], "player": [ - 3739 + 3787 ], "player_steam_id": [ 180 ], "team": [ - 4281 + 4329 ], "team_id": [ - 4762 + 4921 ], "tournament": [ - 4716 + 4857 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team": [ - 4587 + 4728 ], "tournament_team_id": [ - 4762 + 4921 ], "trophy_config": [ - 4674 + 4815 ], "__typename": [ 78 @@ -104954,10 +107241,10 @@ export default { }, "tournament_trophies_aggregate": { "aggregate": [ - 4635 + 4776 ], "nodes": [ - 4629 + 4770 ], "__typename": [ 78 @@ -104965,13 +107252,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp": { "bool_and": [ - 4632 + 4773 ], "bool_or": [ - 4633 + 4774 ], "count": [ - 4634 + 4775 ], "__typename": [ 78 @@ -104979,13 +107266,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_and": { "arguments": [ - 4653 + 4794 ], "distinct": [ 3 ], "filter": [ - 4640 + 4781 ], "predicate": [ 4 @@ -104996,13 +107283,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_or": { "arguments": [ - 4654 + 4795 ], "distinct": [ 3 ], "filter": [ - 4640 + 4781 ], "predicate": [ 4 @@ -105013,13 +107300,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_count": { "arguments": [ - 4652 + 4793 ], "distinct": [ 3 ], "filter": [ - 4640 + 4781 ], "predicate": [ 39 @@ -105030,13 +107317,13 @@ export default { }, "tournament_trophies_aggregate_fields": { "avg": [ - 4638 + 4779 ], "count": [ 38, { "columns": [ - 4652, + 4793, "[tournament_trophies_select_column!]" ], "distinct": [ @@ -105045,31 +107332,31 @@ export default { } ], "max": [ - 4644 + 4785 ], "min": [ - 4646 + 4787 ], "stddev": [ - 4656 + 4797 ], "stddev_pop": [ - 4658 + 4799 ], "stddev_samp": [ - 4660 + 4801 ], "sum": [ - 4664 + 4805 ], "var_pop": [ - 4668 + 4809 ], "var_samp": [ - 4670 + 4811 ], "variance": [ - 4672 + 4813 ], "__typename": [ 78 @@ -105077,37 +107364,37 @@ export default { }, "tournament_trophies_aggregate_order_by": { "avg": [ - 4639 + 4780 ], "count": [ - 2781 + 2829 ], "max": [ - 4645 + 4786 ], "min": [ - 4647 + 4788 ], "stddev": [ - 4657 + 4798 ], "stddev_pop": [ - 4659 + 4800 ], "stddev_samp": [ - 4661 + 4802 ], "sum": [ - 4665 + 4806 ], "var_pop": [ - 4669 + 4810 ], "var_samp": [ - 4671 + 4812 ], "variance": [ - 4673 + 4814 ], "__typename": [ 78 @@ -105115,10 +107402,10 @@ export default { }, "tournament_trophies_arr_rel_insert_input": { "data": [ - 4643 + 4784 ], "on_conflict": [ - 4649 + 4790 ], "__typename": [ 78 @@ -105137,10 +107424,10 @@ export default { }, "tournament_trophies_avg_order_by": { "placement": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -105148,19 +107435,19 @@ export default { }, "tournament_trophies_bool_exp": { "_and": [ - 4640 + 4781 ], "_not": [ - 4640 + 4781 ], "_or": [ - 4640 + 4781 ], "created_at": [ - 4325 + 4377 ], "id": [ - 4764 + 4923 ], "manual": [ 4 @@ -105172,31 +107459,31 @@ export default { 80 ], "player": [ - 3743 + 3791 ], "player_steam_id": [ 182 ], "team": [ - 4290 + 4340 ], "team_id": [ - 4764 + 4923 ], "tournament": [ - 4727 + 4878 ], "tournament_id": [ - 4764 + 4923 ], "tournament_team": [ - 4596 + 4737 ], "tournament_team_id": [ - 4764 + 4923 ], "trophy_config": [ - 4683 + 4824 ], "__typename": [ 78 @@ -105216,10 +107503,10 @@ export default { }, "tournament_trophies_insert_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "manual": [ 3 @@ -105228,31 +107515,31 @@ export default { 38 ], "player": [ - 3750 + 3798 ], "player_steam_id": [ 180 ], "team": [ - 4299 + 4349 ], "team_id": [ - 4762 + 4921 ], "tournament": [ - 4736 + 4887 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team": [ - 4605 + 4746 ], "tournament_team_id": [ - 4762 + 4921 ], "trophy_config": [ - 4692 + 4833 ], "__typename": [ 78 @@ -105260,10 +107547,10 @@ export default { }, "tournament_trophies_max_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "placement": [ 38 @@ -105275,13 +107562,13 @@ export default { 180 ], "team_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -105289,28 +107576,28 @@ export default { }, "tournament_trophies_max_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "placement_tier": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "team_id": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -105318,10 +107605,10 @@ export default { }, "tournament_trophies_min_fields": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "placement": [ 38 @@ -105333,13 +107620,13 @@ export default { 180 ], "team_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -105347,28 +107634,28 @@ export default { }, "tournament_trophies_min_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "placement_tier": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "team_id": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -105379,7 +107666,7 @@ export default { 38 ], "returning": [ - 4629 + 4770 ], "__typename": [ 78 @@ -105387,13 +107674,13 @@ export default { }, "tournament_trophies_on_conflict": { "constraint": [ - 4641 + 4782 ], "update_columns": [ - 4666 + 4807 ], "where": [ - 4640 + 4781 ], "__typename": [ 78 @@ -105401,46 +107688,46 @@ export default { }, "tournament_trophies_order_by": { "created_at": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "manual": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "placement_tier": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "player_steam_id": [ - 2781 + 2829 ], "team": [ - 4301 + 4351 ], "team_id": [ - 2781 + 2829 ], "tournament": [ - 4738 + 4889 ], "tournament_id": [ - 2781 + 2829 ], "tournament_team": [ - 4607 + 4748 ], "tournament_team_id": [ - 2781 + 2829 ], "trophy_config": [ - 4694 + 4835 ], "__typename": [ 78 @@ -105448,7 +107735,7 @@ export default { }, "tournament_trophies_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -105459,10 +107746,10 @@ export default { "tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_trophies_set_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "manual": [ 3 @@ -105474,13 +107761,13 @@ export default { 180 ], "team_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -105499,10 +107786,10 @@ export default { }, "tournament_trophies_stddev_order_by": { "placement": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -105521,10 +107808,10 @@ export default { }, "tournament_trophies_stddev_pop_order_by": { "placement": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -105543,10 +107830,10 @@ export default { }, "tournament_trophies_stddev_samp_order_by": { "placement": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -105554,7 +107841,7 @@ export default { }, "tournament_trophies_stream_cursor_input": { "initial_value": [ - 4663 + 4804 ], "ordering": [ 236 @@ -105565,10 +107852,10 @@ export default { }, "tournament_trophies_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "id": [ - 4762 + 4921 ], "manual": [ 3 @@ -105583,13 +107870,13 @@ export default { 180 ], "team_id": [ - 4762 + 4921 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -105608,10 +107895,10 @@ export default { }, "tournament_trophies_sum_order_by": { "placement": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -105620,13 +107907,13 @@ export default { "tournament_trophies_update_column": {}, "tournament_trophies_updates": { "_inc": [ - 4642 + 4783 ], "_set": [ - 4655 + 4796 ], "where": [ - 4640 + 4781 ], "__typename": [ 78 @@ -105645,10 +107932,10 @@ export default { }, "tournament_trophies_var_pop_order_by": { "placement": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -105667,10 +107954,10 @@ export default { }, "tournament_trophies_var_samp_order_by": { "placement": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -105689,10 +107976,10 @@ export default { }, "tournament_trophies_variance_order_by": { "placement": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -105700,13 +107987,13 @@ export default { }, "tournament_trophy_configs": { "created_at": [ - 4324 + 4376 ], "custom_name": [ 78 ], "id": [ - 4762 + 4921 ], "image_url": [ 78 @@ -105718,13 +108005,13 @@ export default { 38 ], "tournament": [ - 4716 + 4857 ], "tournament_id": [ - 4762 + 4921 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -105732,10 +108019,10 @@ export default { }, "tournament_trophy_configs_aggregate": { "aggregate": [ - 4678 + 4819 ], "nodes": [ - 4674 + 4815 ], "__typename": [ 78 @@ -105743,7 +108030,7 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp": { "count": [ - 4677 + 4818 ], "__typename": [ 78 @@ -105751,13 +108038,13 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp_count": { "arguments": [ - 4696 + 4837 ], "distinct": [ 3 ], "filter": [ - 4683 + 4824 ], "predicate": [ 39 @@ -105768,13 +108055,13 @@ export default { }, "tournament_trophy_configs_aggregate_fields": { "avg": [ - 4681 + 4822 ], "count": [ 38, { "columns": [ - 4696, + 4837, "[tournament_trophy_configs_select_column!]" ], "distinct": [ @@ -105783,31 +108070,31 @@ export default { } ], "max": [ - 4687 + 4828 ], "min": [ - 4689 + 4830 ], "stddev": [ - 4698 + 4839 ], "stddev_pop": [ - 4700 + 4841 ], "stddev_samp": [ - 4702 + 4843 ], "sum": [ - 4706 + 4847 ], "var_pop": [ - 4710 + 4851 ], "var_samp": [ - 4712 + 4853 ], "variance": [ - 4714 + 4855 ], "__typename": [ 78 @@ -105815,37 +108102,37 @@ export default { }, "tournament_trophy_configs_aggregate_order_by": { "avg": [ - 4682 + 4823 ], "count": [ - 2781 + 2829 ], "max": [ - 4688 + 4829 ], "min": [ - 4690 + 4831 ], "stddev": [ - 4699 + 4840 ], "stddev_pop": [ - 4701 + 4842 ], "stddev_samp": [ - 4703 + 4844 ], "sum": [ - 4707 + 4848 ], "var_pop": [ - 4711 + 4852 ], "var_samp": [ - 4713 + 4854 ], "variance": [ - 4715 + 4856 ], "__typename": [ 78 @@ -105853,10 +108140,10 @@ export default { }, "tournament_trophy_configs_arr_rel_insert_input": { "data": [ - 4686 + 4827 ], "on_conflict": [ - 4693 + 4834 ], "__typename": [ 78 @@ -105875,10 +108162,10 @@ export default { }, "tournament_trophy_configs_avg_order_by": { "placement": [ - 2781 + 2829 ], "silhouette": [ - 2781 + 2829 ], "__typename": [ 78 @@ -105886,22 +108173,22 @@ export default { }, "tournament_trophy_configs_bool_exp": { "_and": [ - 4683 + 4824 ], "_not": [ - 4683 + 4824 ], "_or": [ - 4683 + 4824 ], "created_at": [ - 4325 + 4377 ], "custom_name": [ 80 ], "id": [ - 4764 + 4923 ], "image_url": [ 80 @@ -105913,13 +108200,13 @@ export default { 39 ], "tournament": [ - 4727 + 4878 ], "tournament_id": [ - 4764 + 4923 ], "updated_at": [ - 4325 + 4377 ], "__typename": [ 78 @@ -105939,13 +108226,13 @@ export default { }, "tournament_trophy_configs_insert_input": { "created_at": [ - 4324 + 4376 ], "custom_name": [ 78 ], "id": [ - 4762 + 4921 ], "image_url": [ 78 @@ -105957,13 +108244,13 @@ export default { 38 ], "tournament": [ - 4736 + 4887 ], "tournament_id": [ - 4762 + 4921 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -105971,13 +108258,13 @@ export default { }, "tournament_trophy_configs_max_fields": { "created_at": [ - 4324 + 4376 ], "custom_name": [ 78 ], "id": [ - 4762 + 4921 ], "image_url": [ 78 @@ -105989,10 +108276,10 @@ export default { 38 ], "tournament_id": [ - 4762 + 4921 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -106000,28 +108287,28 @@ export default { }, "tournament_trophy_configs_max_order_by": { "created_at": [ - 2781 + 2829 ], "custom_name": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "image_url": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "silhouette": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "__typename": [ 78 @@ -106029,13 +108316,13 @@ export default { }, "tournament_trophy_configs_min_fields": { "created_at": [ - 4324 + 4376 ], "custom_name": [ 78 ], "id": [ - 4762 + 4921 ], "image_url": [ 78 @@ -106047,10 +108334,10 @@ export default { 38 ], "tournament_id": [ - 4762 + 4921 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -106058,28 +108345,28 @@ export default { }, "tournament_trophy_configs_min_order_by": { "created_at": [ - 2781 + 2829 ], "custom_name": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "image_url": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "silhouette": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "__typename": [ 78 @@ -106090,7 +108377,7 @@ export default { 38 ], "returning": [ - 4674 + 4815 ], "__typename": [ 78 @@ -106098,10 +108385,10 @@ export default { }, "tournament_trophy_configs_obj_rel_insert_input": { "data": [ - 4686 + 4827 ], "on_conflict": [ - 4693 + 4834 ], "__typename": [ 78 @@ -106109,13 +108396,13 @@ export default { }, "tournament_trophy_configs_on_conflict": { "constraint": [ - 4684 + 4825 ], "update_columns": [ - 4708 + 4849 ], "where": [ - 4683 + 4824 ], "__typename": [ 78 @@ -106123,31 +108410,31 @@ export default { }, "tournament_trophy_configs_order_by": { "created_at": [ - 2781 + 2829 ], "custom_name": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "image_url": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "silhouette": [ - 2781 + 2829 ], "tournament": [ - 4738 + 4889 ], "tournament_id": [ - 2781 + 2829 ], "updated_at": [ - 2781 + 2829 ], "__typename": [ 78 @@ -106155,7 +108442,7 @@ export default { }, "tournament_trophy_configs_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -106164,13 +108451,13 @@ export default { "tournament_trophy_configs_select_column": {}, "tournament_trophy_configs_set_input": { "created_at": [ - 4324 + 4376 ], "custom_name": [ 78 ], "id": [ - 4762 + 4921 ], "image_url": [ 78 @@ -106182,10 +108469,10 @@ export default { 38 ], "tournament_id": [ - 4762 + 4921 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -106204,10 +108491,10 @@ export default { }, "tournament_trophy_configs_stddev_order_by": { "placement": [ - 2781 + 2829 ], "silhouette": [ - 2781 + 2829 ], "__typename": [ 78 @@ -106226,10 +108513,10 @@ export default { }, "tournament_trophy_configs_stddev_pop_order_by": { "placement": [ - 2781 + 2829 ], "silhouette": [ - 2781 + 2829 ], "__typename": [ 78 @@ -106248,10 +108535,10 @@ export default { }, "tournament_trophy_configs_stddev_samp_order_by": { "placement": [ - 2781 + 2829 ], "silhouette": [ - 2781 + 2829 ], "__typename": [ 78 @@ -106259,7 +108546,7 @@ export default { }, "tournament_trophy_configs_stream_cursor_input": { "initial_value": [ - 4705 + 4846 ], "ordering": [ 236 @@ -106270,13 +108557,13 @@ export default { }, "tournament_trophy_configs_stream_cursor_value_input": { "created_at": [ - 4324 + 4376 ], "custom_name": [ 78 ], "id": [ - 4762 + 4921 ], "image_url": [ 78 @@ -106288,10 +108575,10 @@ export default { 38 ], "tournament_id": [ - 4762 + 4921 ], "updated_at": [ - 4324 + 4376 ], "__typename": [ 78 @@ -106310,10 +108597,10 @@ export default { }, "tournament_trophy_configs_sum_order_by": { "placement": [ - 2781 + 2829 ], "silhouette": [ - 2781 + 2829 ], "__typename": [ 78 @@ -106322,13 +108609,13 @@ export default { "tournament_trophy_configs_update_column": {}, "tournament_trophy_configs_updates": { "_inc": [ - 4685 + 4826 ], "_set": [ - 4697 + 4838 ], "where": [ - 4683 + 4824 ], "__typename": [ 78 @@ -106347,10 +108634,10 @@ export default { }, "tournament_trophy_configs_var_pop_order_by": { "placement": [ - 2781 + 2829 ], "silhouette": [ - 2781 + 2829 ], "__typename": [ 78 @@ -106369,10 +108656,10 @@ export default { }, "tournament_trophy_configs_var_samp_order_by": { "placement": [ - 2781 + 2829 ], "silhouette": [ - 2781 + 2829 ], "__typename": [ 78 @@ -106391,10 +108678,10 @@ export default { }, "tournament_trophy_configs_variance_order_by": { "placement": [ - 2781 + 2829 ], "silhouette": [ - 2781 + 2829 ], "__typename": [ 78 @@ -106402,11 +108689,14 @@ export default { }, "tournaments": { "admin": [ - 3739 + 3787 ], "auto_start": [ 3 ], + "banner": [ + 78 + ], "can_cancel": [ 3 ], @@ -106431,8 +108721,52 @@ export default { "can_start": [ 3 ], + "categories": [ + 4424, + { + "distinct_on": [ + 4442, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4440, + "[tournament_categories_order_by!]" + ], + "where": [ + 4431 + ] + } + ], + "categories_aggregate": [ + 4425, + { + "distinct_on": [ + 4442, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4440, + "[tournament_categories_order_by!]" + ], + "where": [ + 4431 + ] + } + ], "created_at": [ - 4324 + 4376 ], "description": [ 78 @@ -106489,13 +108823,16 @@ export default { 78 ], "e_tournament_status": [ - 1159 + 1207 ], "has_min_teams": [ 3 ], + "homepage": [ + 78 + ], "id": [ - 4762 + 4921 ], "is_league": [ 3 @@ -106506,11 +108843,23 @@ export default { "joined_tournament": [ 3 ], + "latitude": [ + 1547 + ], "league_season_division": [ - 1830 + 1878 + ], + "location": [ + 78 + ], + "logo": [ + 78 + ], + "longitude": [ + 1547 ], "match_options_id": [ - 4762 + 4921 ], "max_players_per_lineup": [ 38 @@ -106522,16 +108871,60 @@ export default { 78 ], "options": [ - 2476 + 2524 ], "organizer_steam_id": [ 180 ], + "organizer_teams": [ + 4448, + { + "distinct_on": [ + 4466, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4464, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 4455 + ] + } + ], + "organizer_teams_aggregate": [ + 4449, + { + "distinct_on": [ + 4466, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4464, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 4455 + ] + } + ], "organizers": [ - 4372, + 4472, { "distinct_on": [ - 4393, + 4493, "[tournament_organizers_select_column!]" ], "limit": [ @@ -106541,19 +108934,19 @@ export default { 38 ], "order_by": [ - 4391, + 4491, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4481 ] } ], "organizers_aggregate": [ - 4373, + 4473, { "distinct_on": [ - 4393, + 4493, "[tournament_organizers_select_column!]" ], "limit": [ @@ -106563,19 +108956,19 @@ export default { 38 ], "order_by": [ - 4391, + 4491, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4481 ] } ], "player_stats": [ - 5597, + 5756, { "distinct_on": [ - 5623, + 5782, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -106585,19 +108978,19 @@ export default { 38 ], "order_by": [ - 5622, + 5781, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5616 + 5775 ] } ], "player_stats_aggregate": [ - 5598, + 5757, { "distinct_on": [ - 5623, + 5782, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -106607,19 +109000,63 @@ export default { 38 ], "order_by": [ - 5622, + 5781, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5616 + 5775 + ] + } + ], + "prizes": [ + 4513, + { + "distinct_on": [ + 4534, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4532, + "[tournament_prizes_order_by!]" + ], + "where": [ + 4522 + ] + } + ], + "prizes_aggregate": [ + 4514, + { + "distinct_on": [ + 4534, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4532, + "[tournament_prizes_order_by!]" + ], + "where": [ + 4522 ] } ], "results": [ - 5546, + 5705, { "distinct_on": [ - 5572, + 5731, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -106629,19 +109066,19 @@ export default { 38 ], "order_by": [ - 5571, + 5730, "[v_team_tournament_results_order_by!]" ], "where": [ - 5565 + 5724 ] } ], "results_aggregate": [ - 5547, + 5706, { "distinct_on": [ - 5572, + 5731, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -106651,19 +109088,19 @@ export default { 38 ], "order_by": [ - 5571, + 5730, "[v_team_tournament_results_order_by!]" ], "where": [ - 5565 + 5724 ] } ], "rosters": [ - 4546, + 4687, { "distinct_on": [ - 4567, + 4708, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -106673,19 +109110,19 @@ export default { 38 ], "order_by": [ - 4565, + 4706, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4696 ] } ], "rosters_aggregate": [ - 4547, + 4688, { "distinct_on": [ - 4567, + 4708, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -106695,11 +109132,11 @@ export default { 38 ], "order_by": [ - 4565, + 4706, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4696 ] } ], @@ -106707,10 +109144,10 @@ export default { 78 ], "stages": [ - 4454, + 4595, { "distinct_on": [ - 4483, + 4624, "[tournament_stages_select_column!]" ], "limit": [ @@ -106720,19 +109157,19 @@ export default { 38 ], "order_by": [ - 4480, + 4621, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4607 ] } ], "stages_aggregate": [ - 4455, + 4596, { "distinct_on": [ - 4483, + 4624, "[tournament_stages_select_column!]" ], "limit": [ @@ -106742,25 +109179,25 @@ export default { 38 ], "order_by": [ - 4480, + 4621, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4607 ] } ], "start": [ - 4324 + 4376 ], "status": [ - 1164 + 1212 ], "teams": [ - 4587, + 4728, { "distinct_on": [ - 4609, + 4750, "[tournament_teams_select_column!]" ], "limit": [ @@ -106770,19 +109207,19 @@ export default { 38 ], "order_by": [ - 4607, + 4748, "[tournament_teams_order_by!]" ], "where": [ - 4596 + 4737 ] } ], "teams_aggregate": [ - 4588, + 4729, { "distinct_on": [ - 4609, + 4750, "[tournament_teams_select_column!]" ], "limit": [ @@ -106792,19 +109229,19 @@ export default { 38 ], "order_by": [ - 4607, + 4748, "[tournament_teams_order_by!]" ], "where": [ - 4596 + 4737 ] } ], "trophies": [ - 4629, + 4770, { "distinct_on": [ - 4652, + 4793, "[tournament_trophies_select_column!]" ], "limit": [ @@ -106814,19 +109251,19 @@ export default { 38 ], "order_by": [ - 4650, + 4791, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4781 ] } ], "trophies_aggregate": [ - 4630, + 4771, { "distinct_on": [ - 4652, + 4793, "[tournament_trophies_select_column!]" ], "limit": [ @@ -106836,11 +109273,11 @@ export default { 38 ], "order_by": [ - 4650, + 4791, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4781 ] } ], @@ -106848,10 +109285,10 @@ export default { 3 ], "trophy_configs": [ - 4674, + 4815, { "distinct_on": [ - 4696, + 4837, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -106861,19 +109298,19 @@ export default { 38 ], "order_by": [ - 4694, + 4835, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4683 + 4824 ] } ], "trophy_configs_aggregate": [ - 4675, + 4816, { "distinct_on": [ - 4696, + 4837, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -106883,11 +109320,11 @@ export default { 38 ], "order_by": [ - 4694, + 4835, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4683 + 4824 ] } ], @@ -106897,24 +109334,65 @@ export default { }, "tournaments_aggregate": { "aggregate": [ - 4722 + 4873 ], "nodes": [ - 4716 + 4857 ], "__typename": [ 78 ] }, "tournaments_aggregate_bool_exp": { + "avg": [ + 4860 + ], "bool_and": [ - 4719 + 4861 ], "bool_or": [ - 4720 + 4862 + ], + "corr": [ + 4863 ], "count": [ - 4721 + 4865 + ], + "covar_samp": [ + 4866 + ], + "max": [ + 4868 + ], + "min": [ + 4869 + ], + "stddev_samp": [ + 4870 + ], + "sum": [ + 4871 + ], + "var_samp": [ + 4872 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_avg": { + "arguments": [ + 4892 + ], + "distinct": [ + 3 + ], + "filter": [ + 4878 + ], + "predicate": [ + 1548 ], "__typename": [ 78 @@ -106922,13 +109400,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 4741 + 4893 ], "distinct": [ 3 ], "filter": [ - 4727 + 4878 ], "predicate": [ 4 @@ -106939,13 +109417,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 4742 + 4894 ], "distinct": [ 3 ], "filter": [ - 4727 + 4878 ], "predicate": [ 4 @@ -106954,15 +109432,43 @@ export default { 78 ] }, + "tournaments_aggregate_bool_exp_corr": { + "arguments": [ + 4864 + ], + "distinct": [ + 3 + ], + "filter": [ + 4878 + ], + "predicate": [ + 1548 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_corr_arguments": { + "X": [ + 4895 + ], + "Y": [ + 4895 + ], + "__typename": [ + 78 + ] + }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 4740 + 4891 ], "distinct": [ 3 ], "filter": [ - 4727 + 4878 ], "predicate": [ 39 @@ -106971,15 +109477,128 @@ export default { 78 ] }, + "tournaments_aggregate_bool_exp_covar_samp": { + "arguments": [ + 4867 + ], + "distinct": [ + 3 + ], + "filter": [ + 4878 + ], + "predicate": [ + 1548 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 4896 + ], + "Y": [ + 4896 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_max": { + "arguments": [ + 4897 + ], + "distinct": [ + 3 + ], + "filter": [ + 4878 + ], + "predicate": [ + 1548 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_min": { + "arguments": [ + 4898 + ], + "distinct": [ + 3 + ], + "filter": [ + 4878 + ], + "predicate": [ + 1548 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_stddev_samp": { + "arguments": [ + 4899 + ], + "distinct": [ + 3 + ], + "filter": [ + 4878 + ], + "predicate": [ + 1548 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_sum": { + "arguments": [ + 4900 + ], + "distinct": [ + 3 + ], + "filter": [ + 4878 + ], + "predicate": [ + 1548 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_var_samp": { + "arguments": [ + 4901 + ], + "distinct": [ + 3 + ], + "filter": [ + 4878 + ], + "predicate": [ + 1548 + ], + "__typename": [ + 78 + ] + }, "tournaments_aggregate_fields": { "avg": [ - 4725 + 4876 ], "count": [ 38, { "columns": [ - 4740, + 4891, "[tournaments_select_column!]" ], "distinct": [ @@ -106988,31 +109607,31 @@ export default { } ], "max": [ - 4731 + 4882 ], "min": [ - 4733 + 4884 ], "stddev": [ - 4744 + 4903 ], "stddev_pop": [ - 4746 + 4905 ], "stddev_samp": [ - 4748 + 4907 ], "sum": [ - 4752 + 4911 ], "var_pop": [ - 4756 + 4915 ], "var_samp": [ - 4758 + 4917 ], "variance": [ - 4760 + 4919 ], "__typename": [ 78 @@ -107020,37 +109639,37 @@ export default { }, "tournaments_aggregate_order_by": { "avg": [ - 4726 + 4877 ], "count": [ - 2781 + 2829 ], "max": [ - 4732 + 4883 ], "min": [ - 4734 + 4885 ], "stddev": [ - 4745 + 4904 ], "stddev_pop": [ - 4747 + 4906 ], "stddev_samp": [ - 4749 + 4908 ], "sum": [ - 4753 + 4912 ], "var_pop": [ - 4757 + 4916 ], "var_samp": [ - 4759 + 4918 ], "variance": [ - 4761 + 4920 ], "__typename": [ 78 @@ -107058,16 +109677,22 @@ export default { }, "tournaments_arr_rel_insert_input": { "data": [ - 4730 + 4881 ], "on_conflict": [ - 4737 + 4888 ], "__typename": [ 78 ] }, "tournaments_avg_fields": { + "latitude": [ + 29 + ], + "longitude": [ + 29 + ], "max_players_per_lineup": [ 38 ], @@ -107082,8 +109707,14 @@ export default { ] }, "tournaments_avg_order_by": { + "latitude": [ + 2829 + ], + "longitude": [ + 2829 + ], "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -107091,20 +109722,23 @@ export default { }, "tournaments_bool_exp": { "_and": [ - 4727 + 4878 ], "_not": [ - 4727 + 4878 ], "_or": [ - 4727 + 4878 ], "admin": [ - 3743 + 3791 ], "auto_start": [ 4 ], + "banner": [ + 80 + ], "can_cancel": [ 4 ], @@ -107129,8 +109763,14 @@ export default { "can_start": [ 4 ], + "categories": [ + 4431 + ], + "categories_aggregate": [ + 4426 + ], "created_at": [ - 4325 + 4377 ], "description": [ 80 @@ -107187,13 +109827,16 @@ export default { 80 ], "e_tournament_status": [ - 1162 + 1210 ], "has_min_teams": [ 4 ], + "homepage": [ + 80 + ], "id": [ - 4764 + 4923 ], "is_league": [ 4 @@ -107204,11 +109847,23 @@ export default { "joined_tournament": [ 4 ], + "latitude": [ + 1548 + ], "league_season_division": [ - 1837 + 1885 + ], + "location": [ + 80 + ], + "logo": [ + 80 + ], + "longitude": [ + 1548 ], "match_options_id": [ - 4764 + 4923 ], "max_players_per_lineup": [ 39 @@ -107220,70 +109875,82 @@ export default { 80 ], "options": [ - 2480 + 2528 ], "organizer_steam_id": [ 182 ], + "organizer_teams": [ + 4455 + ], + "organizer_teams_aggregate": [ + 4450 + ], "organizers": [ - 4381 + 4481 ], "organizers_aggregate": [ - 4374 + 4474 ], "player_stats": [ - 5616 + 5775 ], "player_stats_aggregate": [ - 5599 + 5758 + ], + "prizes": [ + 4522 + ], + "prizes_aggregate": [ + 4515 ], "results": [ - 5565 + 5724 ], "results_aggregate": [ - 5548 + 5707 ], "rosters": [ - 4555 + 4696 ], "rosters_aggregate": [ - 4548 + 4689 ], "scheduling_mode": [ 80 ], "stages": [ - 4466 + 4607 ], "stages_aggregate": [ - 4456 + 4597 ], "start": [ - 4325 + 4377 ], "status": [ - 1165 + 1213 ], "teams": [ - 4596 + 4737 ], "teams_aggregate": [ - 4589 + 4730 ], "trophies": [ - 4640 + 4781 ], "trophies_aggregate": [ - 4631 + 4772 ], "trophies_enabled": [ 4 ], "trophy_configs": [ - 4683 + 4824 ], "trophy_configs_aggregate": [ - 4676 + 4817 ], "__typename": [ 78 @@ -107291,6 +109958,12 @@ export default { }, "tournaments_constraint": {}, "tournaments_inc_input": { + "latitude": [ + 1547 + ], + "longitude": [ + 1547 + ], "organizer_steam_id": [ 180 ], @@ -107300,13 +109973,19 @@ export default { }, "tournaments_insert_input": { "admin": [ - 3750 + 3798 ], "auto_start": [ 3 ], + "banner": [ + 78 + ], + "categories": [ + 4430 + ], "created_at": [ - 4324 + 4376 ], "description": [ 78 @@ -107363,72 +110042,96 @@ export default { 78 ], "e_tournament_status": [ - 1170 + 1218 + ], + "homepage": [ + 78 ], "id": [ - 4762 + 4921 ], "is_league": [ 3 ], + "latitude": [ + 1547 + ], "league_season_division": [ - 1845 + 1893 + ], + "location": [ + 78 + ], + "logo": [ + 78 + ], + "longitude": [ + 1547 ], "match_options_id": [ - 4762 + 4921 ], "name": [ 78 ], "options": [ - 2487 + 2535 ], "organizer_steam_id": [ 180 ], + "organizer_teams": [ + 4454 + ], "organizers": [ - 4378 + 4478 ], "player_stats": [ - 5613 + 5772 + ], + "prizes": [ + 4519 ], "results": [ - 5562 + 5721 ], "rosters": [ - 4552 + 4693 ], "scheduling_mode": [ 78 ], "stages": [ - 4463 + 4604 ], "start": [ - 4324 + 4376 ], "status": [ - 1164 + 1212 ], "teams": [ - 4593 + 4734 ], "trophies": [ - 4637 + 4778 ], "trophies_enabled": [ 3 ], "trophy_configs": [ - 4680 + 4821 ], "__typename": [ 78 ] }, "tournaments_max_fields": { + "banner": [ + 78 + ], "created_at": [ - 4324 + 4376 ], "description": [ 78 @@ -107442,11 +110145,26 @@ export default { "discord_webhook": [ 78 ], + "homepage": [ + 78 + ], "id": [ - 4762 + 4921 + ], + "latitude": [ + 1547 + ], + "location": [ + 78 + ], + "logo": [ + 78 + ], + "longitude": [ + 1547 ], "match_options_id": [ - 4762 + 4921 ], "max_players_per_lineup": [ 38 @@ -107464,53 +110182,74 @@ export default { 78 ], "start": [ - 4324 + 4376 ], "__typename": [ 78 ] }, "tournaments_max_order_by": { + "banner": [ + 2829 + ], "created_at": [ - 2781 + 2829 ], "description": [ - 2781 + 2829 ], "discord_guild_id": [ - 2781 + 2829 ], "discord_role_id": [ - 2781 + 2829 ], "discord_webhook": [ - 2781 + 2829 + ], + "homepage": [ + 2829 ], "id": [ - 2781 + 2829 + ], + "latitude": [ + 2829 + ], + "location": [ + 2829 + ], + "logo": [ + 2829 + ], + "longitude": [ + 2829 ], "match_options_id": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "organizer_steam_id": [ - 2781 + 2829 ], "scheduling_mode": [ - 2781 + 2829 ], "start": [ - 2781 + 2829 ], "__typename": [ 78 ] }, "tournaments_min_fields": { + "banner": [ + 78 + ], "created_at": [ - 4324 + 4376 ], "description": [ 78 @@ -107524,11 +110263,26 @@ export default { "discord_webhook": [ 78 ], + "homepage": [ + 78 + ], "id": [ - 4762 + 4921 + ], + "latitude": [ + 1547 + ], + "location": [ + 78 + ], + "logo": [ + 78 + ], + "longitude": [ + 1547 ], "match_options_id": [ - 4762 + 4921 ], "max_players_per_lineup": [ 38 @@ -107546,45 +110300,63 @@ export default { 78 ], "start": [ - 4324 + 4376 ], "__typename": [ 78 ] }, "tournaments_min_order_by": { + "banner": [ + 2829 + ], "created_at": [ - 2781 + 2829 ], "description": [ - 2781 + 2829 ], "discord_guild_id": [ - 2781 + 2829 ], "discord_role_id": [ - 2781 + 2829 ], "discord_webhook": [ - 2781 + 2829 + ], + "homepage": [ + 2829 ], "id": [ - 2781 + 2829 + ], + "latitude": [ + 2829 + ], + "location": [ + 2829 + ], + "logo": [ + 2829 + ], + "longitude": [ + 2829 ], "match_options_id": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "organizer_steam_id": [ - 2781 + 2829 ], "scheduling_mode": [ - 2781 + 2829 ], "start": [ - 2781 + 2829 ], "__typename": [ 78 @@ -107595,7 +110367,7 @@ export default { 38 ], "returning": [ - 4716 + 4857 ], "__typename": [ 78 @@ -107603,10 +110375,10 @@ export default { }, "tournaments_obj_rel_insert_input": { "data": [ - 4730 + 4881 ], "on_conflict": [ - 4737 + 4888 ], "__typename": [ 78 @@ -107614,13 +110386,13 @@ export default { }, "tournaments_on_conflict": { "constraint": [ - 4728 + 4879 ], "update_columns": [ - 4754 + 4913 ], "where": [ - 4727 + 4878 ], "__typename": [ 78 @@ -107628,166 +110400,193 @@ export default { }, "tournaments_order_by": { "admin": [ - 3752 + 3800 ], "auto_start": [ - 2781 + 2829 + ], + "banner": [ + 2829 ], "can_cancel": [ - 2781 + 2829 ], "can_close_registration": [ - 2781 + 2829 ], "can_join": [ - 2781 + 2829 ], "can_open_registration": [ - 2781 + 2829 ], "can_pause": [ - 2781 + 2829 ], "can_resume": [ - 2781 + 2829 ], "can_setup": [ - 2781 + 2829 ], "can_start": [ - 2781 + 2829 + ], + "categories_aggregate": [ + 4429 ], "created_at": [ - 2781 + 2829 ], "description": [ - 2781 + 2829 ], "discord_guild_id": [ - 2781 + 2829 ], "discord_notifications_enabled": [ - 2781 + 2829 ], "discord_notify_Canceled": [ - 2781 + 2829 ], "discord_notify_Finished": [ - 2781 + 2829 ], "discord_notify_Forfeit": [ - 2781 + 2829 ], "discord_notify_Live": [ - 2781 + 2829 ], "discord_notify_MapPaused": [ - 2781 + 2829 ], "discord_notify_PickingPlayers": [ - 2781 + 2829 ], "discord_notify_Scheduled": [ - 2781 + 2829 ], "discord_notify_Surrendered": [ - 2781 + 2829 ], "discord_notify_Tie": [ - 2781 + 2829 ], "discord_notify_Veto": [ - 2781 + 2829 ], "discord_notify_WaitingForCheckIn": [ - 2781 + 2829 ], "discord_notify_WaitingForServer": [ - 2781 + 2829 ], "discord_role_id": [ - 2781 + 2829 ], "discord_voice_enabled": [ - 2781 + 2829 ], "discord_webhook": [ - 2781 + 2829 ], "e_tournament_status": [ - 1172 + 1220 ], "has_min_teams": [ - 2781 + 2829 + ], + "homepage": [ + 2829 ], "id": [ - 2781 + 2829 ], "is_league": [ - 2781 + 2829 ], "is_organizer": [ - 2781 + 2829 ], "joined_tournament": [ - 2781 + 2829 + ], + "latitude": [ + 2829 ], "league_season_division": [ - 1847 + 1895 + ], + "location": [ + 2829 + ], + "logo": [ + 2829 + ], + "longitude": [ + 2829 ], "match_options_id": [ - 2781 + 2829 ], "max_players_per_lineup": [ - 2781 + 2829 ], "min_players_per_lineup": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "options": [ - 2489 + 2537 ], "organizer_steam_id": [ - 2781 + 2829 + ], + "organizer_teams_aggregate": [ + 4453 ], "organizers_aggregate": [ - 4377 + 4477 ], "player_stats_aggregate": [ - 5612 + 5771 + ], + "prizes_aggregate": [ + 4518 ], "results_aggregate": [ - 5561 + 5720 ], "rosters_aggregate": [ - 4551 + 4692 ], "scheduling_mode": [ - 2781 + 2829 ], "stages_aggregate": [ - 4461 + 4602 ], "start": [ - 2781 + 2829 ], "status": [ - 2781 + 2829 ], "teams_aggregate": [ - 4592 + 4733 ], "trophies_aggregate": [ - 4636 + 4777 ], "trophies_enabled": [ - 2781 + 2829 ], "trophy_configs_aggregate": [ - 4679 + 4820 ], "__typename": [ 78 @@ -107795,21 +110594,32 @@ export default { }, "tournaments_pk_columns_input": { "id": [ - 4762 + 4921 ], "__typename": [ 78 ] }, "tournaments_select_column": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_avg_arguments_columns": {}, "tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns": {}, "tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_corr_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_covar_samp_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_max_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_min_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_stddev_samp_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_sum_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_var_samp_arguments_columns": {}, "tournaments_set_input": { "auto_start": [ 3 ], + "banner": [ + 78 + ], "created_at": [ - 4324 + 4376 ], "description": [ 78 @@ -107865,14 +110675,29 @@ export default { "discord_webhook": [ 78 ], + "homepage": [ + 78 + ], "id": [ - 4762 + 4921 ], "is_league": [ 3 ], + "latitude": [ + 1547 + ], + "location": [ + 78 + ], + "logo": [ + 78 + ], + "longitude": [ + 1547 + ], "match_options_id": [ - 4762 + 4921 ], "name": [ 78 @@ -107884,10 +110709,10 @@ export default { 78 ], "start": [ - 4324 + 4376 ], "status": [ - 1164 + 1212 ], "trophies_enabled": [ 3 @@ -107897,6 +110722,12 @@ export default { ] }, "tournaments_stddev_fields": { + "latitude": [ + 29 + ], + "longitude": [ + 29 + ], "max_players_per_lineup": [ 38 ], @@ -107911,14 +110742,26 @@ export default { ] }, "tournaments_stddev_order_by": { + "latitude": [ + 2829 + ], + "longitude": [ + 2829 + ], "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 ] }, "tournaments_stddev_pop_fields": { + "latitude": [ + 29 + ], + "longitude": [ + 29 + ], "max_players_per_lineup": [ 38 ], @@ -107933,14 +110776,26 @@ export default { ] }, "tournaments_stddev_pop_order_by": { + "latitude": [ + 2829 + ], + "longitude": [ + 2829 + ], "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 ] }, "tournaments_stddev_samp_fields": { + "latitude": [ + 29 + ], + "longitude": [ + 29 + ], "max_players_per_lineup": [ 38 ], @@ -107955,8 +110810,14 @@ export default { ] }, "tournaments_stddev_samp_order_by": { + "latitude": [ + 2829 + ], + "longitude": [ + 2829 + ], "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -107964,7 +110825,7 @@ export default { }, "tournaments_stream_cursor_input": { "initial_value": [ - 4751 + 4910 ], "ordering": [ 236 @@ -107977,8 +110838,11 @@ export default { "auto_start": [ 3 ], + "banner": [ + 78 + ], "created_at": [ - 4324 + 4376 ], "description": [ 78 @@ -108034,14 +110898,29 @@ export default { "discord_webhook": [ 78 ], + "homepage": [ + 78 + ], "id": [ - 4762 + 4921 ], "is_league": [ 3 ], + "latitude": [ + 1547 + ], + "location": [ + 78 + ], + "logo": [ + 78 + ], + "longitude": [ + 1547 + ], "match_options_id": [ - 4762 + 4921 ], "name": [ 78 @@ -108053,10 +110932,10 @@ export default { 78 ], "start": [ - 4324 + 4376 ], "status": [ - 1164 + 1212 ], "trophies_enabled": [ 3 @@ -108066,6 +110945,12 @@ export default { ] }, "tournaments_sum_fields": { + "latitude": [ + 1547 + ], + "longitude": [ + 1547 + ], "max_players_per_lineup": [ 38 ], @@ -108080,8 +110965,14 @@ export default { ] }, "tournaments_sum_order_by": { + "latitude": [ + 2829 + ], + "longitude": [ + 2829 + ], "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -108090,19 +110981,25 @@ export default { "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 4729 + 4880 ], "_set": [ - 4743 + 4902 ], "where": [ - 4727 + 4878 ], "__typename": [ 78 ] }, "tournaments_var_pop_fields": { + "latitude": [ + 29 + ], + "longitude": [ + 29 + ], "max_players_per_lineup": [ 38 ], @@ -108117,14 +111014,26 @@ export default { ] }, "tournaments_var_pop_order_by": { + "latitude": [ + 2829 + ], + "longitude": [ + 2829 + ], "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 ] }, "tournaments_var_samp_fields": { + "latitude": [ + 29 + ], + "longitude": [ + 29 + ], "max_players_per_lineup": [ 38 ], @@ -108139,14 +111048,26 @@ export default { ] }, "tournaments_var_samp_order_by": { + "latitude": [ + 2829 + ], + "longitude": [ + 2829 + ], "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 ] }, "tournaments_variance_fields": { + "latitude": [ + 29 + ], + "longitude": [ + 29 + ], "max_players_per_lineup": [ 38 ], @@ -108161,8 +111082,14 @@ export default { ] }, "tournaments_variance_order_by": { + "latitude": [ + 2829 + ], + "longitude": [ + 2829 + ], "organizer_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -108171,37 +111098,37 @@ export default { "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 4762 + 4921 ], "_contains": [ - 4762 + 4921 ], "_eq": [ - 4762 + 4921 ], "_gt": [ - 4762 + 4921 ], "_gte": [ - 4762 + 4921 ], "_in": [ - 4762 + 4921 ], "_is_null": [ 3 ], "_lt": [ - 4762 + 4921 ], "_lte": [ - 4762 + 4921 ], "_neq": [ - 4762 + 4921 ], "_nin": [ - 4762 + 4921 ], "__typename": [ 78 @@ -108209,31 +111136,31 @@ export default { }, "uuid_comparison_exp": { "_eq": [ - 4762 + 4921 ], "_gt": [ - 4762 + 4921 ], "_gte": [ - 4762 + 4921 ], "_in": [ - 4762 + 4921 ], "_is_null": [ 3 ], "_lt": [ - 4762 + 4921 ], "_lte": [ - 4762 + 4921 ], "_neq": [ - 4762 + 4921 ], "_nin": [ - 4762 + 4921 ], "__typename": [ 78 @@ -108247,19 +111174,19 @@ export default { 38 ], "event": [ - 1471 + 1519 ], "event_id": [ - 4762 + 4921 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 @@ -108268,7 +111195,7 @@ export default { 38 ], "player": [ - 3739 + 3787 ], "player_steam_id": [ 180 @@ -108279,10 +111206,10 @@ export default { }, "v_event_player_stats_aggregate": { "aggregate": [ - 4779 + 4938 ], "nodes": [ - 4765 + 4924 ], "__typename": [ 78 @@ -108290,31 +111217,31 @@ export default { }, "v_event_player_stats_aggregate_bool_exp": { "avg": [ - 4768 + 4927 ], "corr": [ - 4769 + 4928 ], "count": [ - 4771 + 4930 ], "covar_samp": [ - 4772 + 4931 ], "max": [ - 4774 + 4933 ], "min": [ - 4775 + 4934 ], "stddev_samp": [ - 4776 + 4935 ], "sum": [ - 4777 + 4936 ], "var_samp": [ - 4778 + 4937 ], "__typename": [ 78 @@ -108322,16 +111249,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4792 + 4951 ], "distinct": [ 3 ], "filter": [ - 4784 + 4943 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -108339,16 +111266,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 4770 + 4929 ], "distinct": [ 3 ], "filter": [ - 4784 + 4943 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -108356,10 +111283,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4793 + 4952 ], "Y": [ - 4793 + 4952 ], "__typename": [ 78 @@ -108367,13 +111294,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4791 + 4950 ], "distinct": [ 3 ], "filter": [ - 4784 + 4943 ], "predicate": [ 39 @@ -108384,16 +111311,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4773 + 4932 ], "distinct": [ 3 ], "filter": [ - 4784 + 4943 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -108401,10 +111328,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4794 + 4953 ], "Y": [ - 4794 + 4953 ], "__typename": [ 78 @@ -108412,16 +111339,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4795 + 4954 ], "distinct": [ 3 ], "filter": [ - 4784 + 4943 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -108429,16 +111356,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4796 + 4955 ], "distinct": [ 3 ], "filter": [ - 4784 + 4943 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -108446,16 +111373,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4797 + 4956 ], "distinct": [ 3 ], "filter": [ - 4784 + 4943 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -108463,16 +111390,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4798 + 4957 ], "distinct": [ 3 ], "filter": [ - 4784 + 4943 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -108480,16 +111407,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4799 + 4958 ], "distinct": [ 3 ], "filter": [ - 4784 + 4943 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -108497,13 +111424,13 @@ export default { }, "v_event_player_stats_aggregate_fields": { "avg": [ - 4782 + 4941 ], "count": [ 38, { "columns": [ - 4791, + 4950, "[v_event_player_stats_select_column!]" ], "distinct": [ @@ -108512,31 +111439,31 @@ export default { } ], "max": [ - 4786 + 4945 ], "min": [ - 4788 + 4947 ], "stddev": [ - 4800 + 4959 ], "stddev_pop": [ - 4802 + 4961 ], "stddev_samp": [ - 4804 + 4963 ], "sum": [ - 4808 + 4967 ], "var_pop": [ - 4810 + 4969 ], "var_samp": [ - 4812 + 4971 ], "variance": [ - 4814 + 4973 ], "__typename": [ 78 @@ -108544,37 +111471,37 @@ export default { }, "v_event_player_stats_aggregate_order_by": { "avg": [ - 4783 + 4942 ], "count": [ - 2781 + 2829 ], "max": [ - 4787 + 4946 ], "min": [ - 4789 + 4948 ], "stddev": [ - 4801 + 4960 ], "stddev_pop": [ - 4803 + 4962 ], "stddev_samp": [ - 4805 + 4964 ], "sum": [ - 4809 + 4968 ], "var_pop": [ - 4811 + 4970 ], "var_samp": [ - 4813 + 4972 ], "variance": [ - 4815 + 4974 ], "__typename": [ 78 @@ -108582,7 +111509,7 @@ export default { }, "v_event_player_stats_arr_rel_insert_input": { "data": [ - 4785 + 4944 ], "__typename": [ 78 @@ -108619,28 +111546,28 @@ export default { }, "v_event_player_stats_avg_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -108648,13 +111575,13 @@ export default { }, "v_event_player_stats_bool_exp": { "_and": [ - 4784 + 4943 ], "_not": [ - 4784 + 4943 ], "_or": [ - 4784 + 4943 ], "assists": [ 39 @@ -108663,19 +111590,19 @@ export default { 39 ], "event": [ - 1475 + 1523 ], "event_id": [ - 4764 + 4923 ], "headshot_percentage": [ - 1500 + 1548 ], "headshots": [ 39 ], "kdr": [ - 1500 + 1548 ], "kills": [ 39 @@ -108684,7 +111611,7 @@ export default { 39 ], "player": [ - 3743 + 3791 ], "player_steam_id": [ 182 @@ -108701,19 +111628,19 @@ export default { 38 ], "event": [ - 1482 + 1530 ], "event_id": [ - 4762 + 4921 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 @@ -108722,7 +111649,7 @@ export default { 38 ], "player": [ - 3750 + 3798 ], "player_steam_id": [ 180 @@ -108739,16 +111666,16 @@ export default { 38 ], "event_id": [ - 4762 + 4921 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 @@ -108765,31 +111692,31 @@ export default { }, "v_event_player_stats_max_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "event_id": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -108803,16 +111730,16 @@ export default { 38 ], "event_id": [ - 4762 + 4921 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 @@ -108829,31 +111756,31 @@ export default { }, "v_event_player_stats_min_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "event_id": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -108861,37 +111788,37 @@ export default { }, "v_event_player_stats_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "event": [ - 1484 + 1532 ], "event_id": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -108937,28 +111864,28 @@ export default { }, "v_event_player_stats_stddev_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -108995,28 +111922,28 @@ export default { }, "v_event_player_stats_stddev_pop_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -109053,28 +111980,28 @@ export default { }, "v_event_player_stats_stddev_samp_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -109082,7 +112009,7 @@ export default { }, "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 4807 + 4966 ], "ordering": [ 236 @@ -109099,16 +112026,16 @@ export default { 38 ], "event_id": [ - 4762 + 4921 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 @@ -109131,13 +112058,13 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 @@ -109154,28 +112081,28 @@ export default { }, "v_event_player_stats_sum_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -109212,28 +112139,28 @@ export default { }, "v_event_player_stats_var_pop_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -109270,28 +112197,28 @@ export default { }, "v_event_player_stats_var_samp_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -109328,28 +112255,28 @@ export default { }, "v_event_player_stats_variance_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -109404,10 +112331,10 @@ export default { }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 4818 + 4977 ], "nodes": [ - 4816 + 4975 ], "__typename": [ 78 @@ -109415,13 +112342,13 @@ export default { }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 4819 + 4978 ], "count": [ 38, { "columns": [ - 4824, + 4983, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -109430,31 +112357,31 @@ export default { } ], "max": [ - 4821 + 4980 ], "min": [ - 4822 + 4981 ], "stddev": [ - 4825 + 4984 ], "stddev_pop": [ - 4826 + 4985 ], "stddev_samp": [ - 4827 + 4986 ], "sum": [ - 4830 + 4989 ], "var_pop": [ - 4831 + 4990 ], "var_samp": [ - 4832 + 4991 ], "variance": [ - 4833 + 4992 ], "__typename": [ 78 @@ -109497,13 +112424,13 @@ export default { }, "v_gpu_pool_status_bool_exp": { "_and": [ - 4820 + 4979 ], "_not": [ - 4820 + 4979 ], "_or": [ - 4820 + 4979 ], "demo_free_gpu_nodes": [ 39 @@ -109623,46 +112550,46 @@ export default { }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 2781 + 2829 ], "demo_in_progress": [ - 2781 + 2829 ], "demo_total_gpu_nodes": [ - 2781 + 2829 ], "free_gpu_nodes": [ - 2781 + 2829 ], "free_gpu_nodes_for_batch": [ - 2781 + 2829 ], "highlights_in_progress": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "live_in_progress": [ - 2781 + 2829 ], "registered_gpu_nodes": [ - 2781 + 2829 ], "rendering_total_gpu_nodes": [ - 2781 + 2829 ], "renders_paused_for_active_match": [ - 2781 + 2829 ], "streaming_free_gpu_nodes": [ - 2781 + 2829 ], "streaming_total_gpu_nodes": [ - 2781 + 2829 ], "total_gpu_nodes": [ - 2781 + 2829 ], "__typename": [ 78 @@ -109776,7 +112703,7 @@ export default { }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 4829 + 4988 ], "ordering": [ 236 @@ -109980,22 +112907,22 @@ export default { 38 ], "league_division_id": [ - 4762 + 4921 ], "league_season_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team": [ - 2012 + 2060 ], "league_team_id": [ - 4762 + 4921 ], "league_team_season_id": [ - 4762 + 4921 ], "losses": [ 38 @@ -110025,13 +112952,13 @@ export default { 38 ], "season_division": [ - 1830 + 1878 ], "team_season": [ - 1970 + 2018 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -110042,10 +112969,10 @@ export default { }, "v_league_division_standings_aggregate": { "aggregate": [ - 4838 + 4997 ], "nodes": [ - 4834 + 4993 ], "__typename": [ 78 @@ -110053,7 +112980,7 @@ export default { }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 4837 + 4996 ], "__typename": [ 78 @@ -110061,13 +112988,13 @@ export default { }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 4850 + 5009 ], "distinct": [ 3 ], "filter": [ - 4843 + 5002 ], "predicate": [ 39 @@ -110078,13 +113005,13 @@ export default { }, "v_league_division_standings_aggregate_fields": { "avg": [ - 4841 + 5000 ], "count": [ 38, { "columns": [ - 4850, + 5009, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -110093,31 +113020,31 @@ export default { } ], "max": [ - 4845 + 5004 ], "min": [ - 4847 + 5006 ], "stddev": [ - 4851 + 5010 ], "stddev_pop": [ - 4853 + 5012 ], "stddev_samp": [ - 4855 + 5014 ], "sum": [ - 4859 + 5018 ], "var_pop": [ - 4861 + 5020 ], "var_samp": [ - 4863 + 5022 ], "variance": [ - 4865 + 5024 ], "__typename": [ 78 @@ -110125,37 +113052,37 @@ export default { }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 4842 + 5001 ], "count": [ - 2781 + 2829 ], "max": [ - 4846 + 5005 ], "min": [ - 4848 + 5007 ], "stddev": [ - 4852 + 5011 ], "stddev_pop": [ - 4854 + 5013 ], "stddev_samp": [ - 4856 + 5015 ], "sum": [ - 4860 + 5019 ], "var_pop": [ - 4862 + 5021 ], "var_samp": [ - 4864 + 5023 ], "variance": [ - 4866 + 5025 ], "__typename": [ 78 @@ -110163,7 +113090,7 @@ export default { }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 4844 + 5003 ], "__typename": [ 78 @@ -110212,40 +113139,40 @@ export default { }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "round_diff": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -110253,13 +113180,13 @@ export default { }, "v_league_division_standings_bool_exp": { "_and": [ - 4843 + 5002 ], "_not": [ - 4843 + 5002 ], "_or": [ - 4843 + 5002 ], "head_to_head_match_wins": [ 39 @@ -110268,22 +113195,22 @@ export default { 39 ], "league_division_id": [ - 4764 + 4923 ], "league_season_division_id": [ - 4764 + 4923 ], "league_season_id": [ - 4764 + 4923 ], "league_team": [ - 2015 + 2063 ], "league_team_id": [ - 4764 + 4923 ], "league_team_season_id": [ - 4764 + 4923 ], "losses": [ 39 @@ -110313,13 +113240,13 @@ export default { 39 ], "season_division": [ - 1837 + 1885 ], "team_season": [ - 1979 + 2027 ], "tournament_team_id": [ - 4764 + 4923 ], "wins": [ 39 @@ -110336,22 +113263,22 @@ export default { 38 ], "league_division_id": [ - 4762 + 4921 ], "league_season_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team": [ - 2021 + 2069 ], "league_team_id": [ - 4762 + 4921 ], "league_team_season_id": [ - 4762 + 4921 ], "losses": [ 38 @@ -110381,13 +113308,13 @@ export default { 38 ], "season_division": [ - 1845 + 1893 ], "team_season": [ - 1988 + 2036 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -110404,19 +113331,19 @@ export default { 38 ], "league_division_id": [ - 4762 + 4921 ], "league_season_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team_id": [ - 4762 + 4921 ], "league_team_season_id": [ - 4762 + 4921 ], "losses": [ 38 @@ -110446,7 +113373,7 @@ export default { 38 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -110457,58 +113384,58 @@ export default { }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "league_division_id": [ - 2781 + 2829 ], "league_season_division_id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "league_team_id": [ - 2781 + 2829 ], "league_team_season_id": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "round_diff": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -110522,19 +113449,19 @@ export default { 38 ], "league_division_id": [ - 4762 + 4921 ], "league_season_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team_id": [ - 4762 + 4921 ], "league_team_season_id": [ - 4762 + 4921 ], "losses": [ 38 @@ -110564,7 +113491,7 @@ export default { 38 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -110575,58 +113502,58 @@ export default { }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "league_division_id": [ - 2781 + 2829 ], "league_season_division_id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "league_team_id": [ - 2781 + 2829 ], "league_team_season_id": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "round_diff": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -110634,67 +113561,67 @@ export default { }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "league_division_id": [ - 2781 + 2829 ], "league_season_division_id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "league_team": [ - 2023 + 2071 ], "league_team_id": [ - 2781 + 2829 ], "league_team_season_id": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "round_diff": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "season_division": [ - 1847 + 1895 ], "team_season": [ - 1990 + 2038 ], "tournament_team_id": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -110744,40 +113671,40 @@ export default { }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "round_diff": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -110826,40 +113753,40 @@ export default { }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "round_diff": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -110908,40 +113835,40 @@ export default { }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "round_diff": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -110949,7 +113876,7 @@ export default { }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 4858 + 5017 ], "ordering": [ 236 @@ -110966,19 +113893,19 @@ export default { 38 ], "league_division_id": [ - 4762 + 4921 ], "league_season_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team_id": [ - 4762 + 4921 ], "league_team_season_id": [ - 4762 + 4921 ], "losses": [ 38 @@ -111008,7 +113935,7 @@ export default { 38 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -111060,40 +113987,40 @@ export default { }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "round_diff": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -111142,40 +114069,40 @@ export default { }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "round_diff": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -111224,40 +114151,40 @@ export default { }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "round_diff": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -111306,40 +114233,40 @@ export default { }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "round_diff": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -111353,40 +114280,40 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 ], "league_division_id": [ - 4762 + 4921 ], "league_season_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team": [ - 2012 + 2060 ], "league_team_id": [ - 4762 + 4921 ], "league_team_season_id": [ - 4762 + 4921 ], "matches_played": [ 38 ], "player": [ - 3739 + 3787 ], "player_steam_id": [ 180 @@ -111397,10 +114324,10 @@ export default { }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 4881 + 5040 ], "nodes": [ - 4867 + 5026 ], "__typename": [ 78 @@ -111408,31 +114335,31 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 4870 + 5029 ], "corr": [ - 4871 + 5030 ], "count": [ - 4873 + 5032 ], "covar_samp": [ - 4874 + 5033 ], "max": [ - 4876 + 5035 ], "min": [ - 4877 + 5036 ], "stddev_samp": [ - 4878 + 5037 ], "sum": [ - 4879 + 5038 ], "var_samp": [ - 4880 + 5039 ], "__typename": [ 78 @@ -111440,16 +114367,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4894 + 5053 ], "distinct": [ 3 ], "filter": [ - 4886 + 5045 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -111457,16 +114384,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 4872 + 5031 ], "distinct": [ 3 ], "filter": [ - 4886 + 5045 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -111474,10 +114401,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4895 + 5054 ], "Y": [ - 4895 + 5054 ], "__typename": [ 78 @@ -111485,13 +114412,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4893 + 5052 ], "distinct": [ 3 ], "filter": [ - 4886 + 5045 ], "predicate": [ 39 @@ -111502,16 +114429,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4875 + 5034 ], "distinct": [ 3 ], "filter": [ - 4886 + 5045 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -111519,10 +114446,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4896 + 5055 ], "Y": [ - 4896 + 5055 ], "__typename": [ 78 @@ -111530,16 +114457,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4897 + 5056 ], "distinct": [ 3 ], "filter": [ - 4886 + 5045 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -111547,16 +114474,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4898 + 5057 ], "distinct": [ 3 ], "filter": [ - 4886 + 5045 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -111564,16 +114491,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4899 + 5058 ], "distinct": [ 3 ], "filter": [ - 4886 + 5045 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -111581,16 +114508,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4900 + 5059 ], "distinct": [ 3 ], "filter": [ - 4886 + 5045 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -111598,16 +114525,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4901 + 5060 ], "distinct": [ 3 ], "filter": [ - 4886 + 5045 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -111615,13 +114542,13 @@ export default { }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 4884 + 5043 ], "count": [ 38, { "columns": [ - 4893, + 5052, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -111630,31 +114557,31 @@ export default { } ], "max": [ - 4888 + 5047 ], "min": [ - 4890 + 5049 ], "stddev": [ - 4902 + 5061 ], "stddev_pop": [ - 4904 + 5063 ], "stddev_samp": [ - 4906 + 5065 ], "sum": [ - 4910 + 5069 ], "var_pop": [ - 4912 + 5071 ], "var_samp": [ - 4914 + 5073 ], "variance": [ - 4916 + 5075 ], "__typename": [ 78 @@ -111662,37 +114589,37 @@ export default { }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 4885 + 5044 ], "count": [ - 2781 + 2829 ], "max": [ - 4889 + 5048 ], "min": [ - 4891 + 5050 ], "stddev": [ - 4903 + 5062 ], "stddev_pop": [ - 4905 + 5064 ], "stddev_samp": [ - 4907 + 5066 ], "sum": [ - 4911 + 5070 ], "var_pop": [ - 4913 + 5072 ], "var_samp": [ - 4915 + 5074 ], "variance": [ - 4917 + 5076 ], "__typename": [ 78 @@ -111700,7 +114627,7 @@ export default { }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 4887 + 5046 ], "__typename": [ 78 @@ -111737,28 +114664,28 @@ export default { }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -111766,13 +114693,13 @@ export default { }, "v_league_season_player_stats_bool_exp": { "_and": [ - 4886 + 5045 ], "_not": [ - 4886 + 5045 ], "_or": [ - 4886 + 5045 ], "assists": [ 39 @@ -111781,40 +114708,40 @@ export default { 39 ], "headshot_percentage": [ - 1500 + 1548 ], "headshots": [ 39 ], "kdr": [ - 1500 + 1548 ], "kills": [ 39 ], "league_division_id": [ - 4764 + 4923 ], "league_season_division_id": [ - 4764 + 4923 ], "league_season_id": [ - 4764 + 4923 ], "league_team": [ - 2015 + 2063 ], "league_team_id": [ - 4764 + 4923 ], "league_team_season_id": [ - 4764 + 4923 ], "matches_played": [ 39 ], "player": [ - 3743 + 3791 ], "player_steam_id": [ 182 @@ -111831,40 +114758,40 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 ], "league_division_id": [ - 4762 + 4921 ], "league_season_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team": [ - 2021 + 2069 ], "league_team_id": [ - 4762 + 4921 ], "league_team_season_id": [ - 4762 + 4921 ], "matches_played": [ 38 ], "player": [ - 3750 + 3798 ], "player_steam_id": [ 180 @@ -111881,31 +114808,31 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 ], "league_division_id": [ - 4762 + 4921 ], "league_season_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team_id": [ - 4762 + 4921 ], "league_team_season_id": [ - 4762 + 4921 ], "matches_played": [ 38 @@ -111919,43 +114846,43 @@ export default { }, "v_league_season_player_stats_max_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "league_division_id": [ - 2781 + 2829 ], "league_season_division_id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "league_team_id": [ - 2781 + 2829 ], "league_team_season_id": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -111969,31 +114896,31 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 ], "league_division_id": [ - 4762 + 4921 ], "league_season_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team_id": [ - 4762 + 4921 ], "league_team_season_id": [ - 4762 + 4921 ], "matches_played": [ 38 @@ -112007,43 +114934,43 @@ export default { }, "v_league_season_player_stats_min_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "league_division_id": [ - 2781 + 2829 ], "league_season_division_id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "league_team_id": [ - 2781 + 2829 ], "league_team_season_id": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -112051,49 +114978,49 @@ export default { }, "v_league_season_player_stats_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "league_division_id": [ - 2781 + 2829 ], "league_season_division_id": [ - 2781 + 2829 ], "league_season_id": [ - 2781 + 2829 ], "league_team": [ - 2023 + 2071 ], "league_team_id": [ - 2781 + 2829 ], "league_team_season_id": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -112139,28 +115066,28 @@ export default { }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -112197,28 +115124,28 @@ export default { }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -112255,28 +115182,28 @@ export default { }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -112284,7 +115211,7 @@ export default { }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 4909 + 5068 ], "ordering": [ 236 @@ -112301,31 +115228,31 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 ], "league_division_id": [ - 4762 + 4921 ], "league_season_division_id": [ - 4762 + 4921 ], "league_season_id": [ - 4762 + 4921 ], "league_team_id": [ - 4762 + 4921 ], "league_team_season_id": [ - 4762 + 4921 ], "matches_played": [ 38 @@ -112345,13 +115272,13 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 @@ -112368,28 +115295,28 @@ export default { }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -112426,28 +115353,28 @@ export default { }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -112484,28 +115411,28 @@ export default { }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -112542,28 +115469,28 @@ export default { }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -112577,19 +115504,19 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "lineup": [ - 2276 + 2324 ], "match_lineup_id": [ - 4762 + 4921 ], "placeholder_name": [ 78 ], "player": [ - 3739 + 3787 ], "steam_id": [ 180 @@ -112600,10 +115527,10 @@ export default { }, "v_match_captains_aggregate": { "aggregate": [ - 4920 + 5079 ], "nodes": [ - 4918 + 5077 ], "__typename": [ 78 @@ -112611,13 +115538,13 @@ export default { }, "v_match_captains_aggregate_fields": { "avg": [ - 4921 + 5080 ], "count": [ 38, { "columns": [ - 4930, + 5089, "[v_match_captains_select_column!]" ], "distinct": [ @@ -112626,31 +115553,31 @@ export default { } ], "max": [ - 4925 + 5084 ], "min": [ - 4926 + 5085 ], "stddev": [ - 4932 + 5091 ], "stddev_pop": [ - 4933 + 5092 ], "stddev_samp": [ - 4934 + 5093 ], "sum": [ - 4937 + 5096 ], "var_pop": [ - 4939 + 5098 ], "var_samp": [ - 4940 + 5099 ], "variance": [ - 4941 + 5100 ], "__typename": [ 78 @@ -112666,13 +115593,13 @@ export default { }, "v_match_captains_bool_exp": { "_and": [ - 4922 + 5081 ], "_not": [ - 4922 + 5081 ], "_or": [ - 4922 + 5081 ], "captain": [ 4 @@ -112681,19 +115608,19 @@ export default { 80 ], "id": [ - 4764 + 4923 ], "lineup": [ - 2285 + 2333 ], "match_lineup_id": [ - 4764 + 4923 ], "placeholder_name": [ 80 ], "player": [ - 3743 + 3791 ], "steam_id": [ 182 @@ -112718,19 +115645,19 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "lineup": [ - 2294 + 2342 ], "match_lineup_id": [ - 4762 + 4921 ], "placeholder_name": [ 78 ], "player": [ - 3750 + 3798 ], "steam_id": [ 180 @@ -112744,10 +115671,10 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "placeholder_name": [ 78 @@ -112764,10 +115691,10 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "placeholder_name": [ 78 @@ -112784,7 +115711,7 @@ export default { 38 ], "returning": [ - 4918 + 5077 ], "__typename": [ 78 @@ -112792,7 +115719,7 @@ export default { }, "v_match_captains_obj_rel_insert_input": { "data": [ - 4924 + 5083 ], "__typename": [ 78 @@ -112800,28 +115727,28 @@ export default { }, "v_match_captains_order_by": { "captain": [ - 2781 + 2829 ], "discord_id": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "lineup": [ - 2296 + 2344 ], "match_lineup_id": [ - 2781 + 2829 ], "placeholder_name": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -112836,10 +115763,10 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "placeholder_name": [ 78 @@ -112877,7 +115804,7 @@ export default { }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 4936 + 5095 ], "ordering": [ 236 @@ -112894,10 +115821,10 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "placeholder_name": [ 78 @@ -112919,13 +115846,13 @@ export default { }, "v_match_captains_updates": { "_inc": [ - 4923 + 5082 ], "_set": [ - 4931 + 5090 ], "where": [ - 4922 + 5081 ], "__typename": [ 78 @@ -112960,7 +115887,7 @@ export default { 38 ], "clutcher": [ - 3739 + 3787 ], "clutcher_steam_id": [ 180 @@ -112969,22 +115896,22 @@ export default { 38 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_lineup": [ - 2276 + 2324 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "outcome": [ 78 @@ -113001,10 +115928,10 @@ export default { }, "v_match_clutches_aggregate": { "aggregate": [ - 4946 + 5105 ], "nodes": [ - 4942 + 5101 ], "__typename": [ 78 @@ -113012,7 +115939,7 @@ export default { }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 4945 + 5104 ], "__typename": [ 78 @@ -113020,13 +115947,13 @@ export default { }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 4958 + 5117 ], "distinct": [ 3 ], "filter": [ - 4951 + 5110 ], "predicate": [ 39 @@ -113037,13 +115964,13 @@ export default { }, "v_match_clutches_aggregate_fields": { "avg": [ - 4949 + 5108 ], "count": [ 38, { "columns": [ - 4958, + 5117, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -113052,31 +115979,31 @@ export default { } ], "max": [ - 4953 + 5112 ], "min": [ - 4955 + 5114 ], "stddev": [ - 4959 + 5118 ], "stddev_pop": [ - 4961 + 5120 ], "stddev_samp": [ - 4963 + 5122 ], "sum": [ - 4967 + 5126 ], "var_pop": [ - 4969 + 5128 ], "var_samp": [ - 4971 + 5130 ], "variance": [ - 4973 + 5132 ], "__typename": [ 78 @@ -113084,37 +116011,37 @@ export default { }, "v_match_clutches_aggregate_order_by": { "avg": [ - 4950 + 5109 ], "count": [ - 2781 + 2829 ], "max": [ - 4954 + 5113 ], "min": [ - 4956 + 5115 ], "stddev": [ - 4960 + 5119 ], "stddev_pop": [ - 4962 + 5121 ], "stddev_samp": [ - 4964 + 5123 ], "sum": [ - 4968 + 5127 ], "var_pop": [ - 4970 + 5129 ], "var_samp": [ - 4972 + 5131 ], "variance": [ - 4974 + 5133 ], "__typename": [ 78 @@ -113122,7 +116049,7 @@ export default { }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 4952 + 5111 ], "__typename": [ 78 @@ -113147,16 +116074,16 @@ export default { }, "v_match_clutches_avg_order_by": { "against_count": [ - 2781 + 2829 ], "clutcher_steam_id": [ - 2781 + 2829 ], "kills_in_clutch": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -113164,19 +116091,19 @@ export default { }, "v_match_clutches_bool_exp": { "_and": [ - 4951 + 5110 ], "_not": [ - 4951 + 5110 ], "_or": [ - 4951 + 5110 ], "against_count": [ 39 ], "clutcher": [ - 3743 + 3791 ], "clutcher_steam_id": [ 182 @@ -113185,22 +116112,22 @@ export default { 39 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_lineup": [ - 2285 + 2333 ], "match_lineup_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "outcome": [ 80 @@ -113220,7 +116147,7 @@ export default { 38 ], "clutcher": [ - 3750 + 3798 ], "clutcher_steam_id": [ 180 @@ -113229,22 +116156,22 @@ export default { 38 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_lineup": [ - 2294 + 2342 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map": [ - 2452 + 2500 ], "match_map_id": [ - 4762 + 4921 ], "outcome": [ 78 @@ -113270,13 +116197,13 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "outcome": [ 78 @@ -113293,31 +116220,31 @@ export default { }, "v_match_clutches_max_order_by": { "against_count": [ - 2781 + 2829 ], "clutcher_steam_id": [ - 2781 + 2829 ], "kills_in_clutch": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_lineup_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "outcome": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "side": [ - 2781 + 2829 ], "__typename": [ 78 @@ -113334,13 +116261,13 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "outcome": [ 78 @@ -113357,31 +116284,31 @@ export default { }, "v_match_clutches_min_order_by": { "against_count": [ - 2781 + 2829 ], "clutcher_steam_id": [ - 2781 + 2829 ], "kills_in_clutch": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_lineup_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "outcome": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "side": [ - 2781 + 2829 ], "__typename": [ 78 @@ -113389,43 +116316,43 @@ export default { }, "v_match_clutches_order_by": { "against_count": [ - 2781 + 2829 ], "clutcher": [ - 3752 + 3800 ], "clutcher_steam_id": [ - 2781 + 2829 ], "kills_in_clutch": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_lineup": [ - 2296 + 2344 ], "match_lineup_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "outcome": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "side": [ - 2781 + 2829 ], "__typename": [ 78 @@ -113451,16 +116378,16 @@ export default { }, "v_match_clutches_stddev_order_by": { "against_count": [ - 2781 + 2829 ], "clutcher_steam_id": [ - 2781 + 2829 ], "kills_in_clutch": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -113485,16 +116412,16 @@ export default { }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 2781 + 2829 ], "clutcher_steam_id": [ - 2781 + 2829 ], "kills_in_clutch": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -113519,16 +116446,16 @@ export default { }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 2781 + 2829 ], "clutcher_steam_id": [ - 2781 + 2829 ], "kills_in_clutch": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -113536,7 +116463,7 @@ export default { }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 4966 + 5125 ], "ordering": [ 236 @@ -113556,13 +116483,13 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "outcome": [ 78 @@ -113596,16 +116523,16 @@ export default { }, "v_match_clutches_sum_order_by": { "against_count": [ - 2781 + 2829 ], "clutcher_steam_id": [ - 2781 + 2829 ], "kills_in_clutch": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -113630,16 +116557,16 @@ export default { }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 2781 + 2829 ], "clutcher_steam_id": [ - 2781 + 2829 ], "kills_in_clutch": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -113664,16 +116591,16 @@ export default { }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 2781 + 2829 ], "clutcher_steam_id": [ - 2781 + 2829 ], "kills_in_clutch": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -113698,16 +116625,16 @@ export default { }, "v_match_clutches_variance_order_by": { "against_count": [ - 2781 + 2829 ], "clutcher_steam_id": [ - 2781 + 2829 ], "kills_in_clutch": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -113724,16 +116651,16 @@ export default { 38 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "victim_side": [ 78 @@ -113750,10 +116677,10 @@ export default { }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 4977 + 5136 ], "nodes": [ - 4975 + 5134 ], "__typename": [ 78 @@ -113761,13 +116688,13 @@ export default { }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 4978 + 5137 ], "count": [ 38, { "columns": [ - 4983, + 5142, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -113776,31 +116703,31 @@ export default { } ], "max": [ - 4980 + 5139 ], "min": [ - 4981 + 5140 ], "stddev": [ - 4984 + 5143 ], "stddev_pop": [ - 4985 + 5144 ], "stddev_samp": [ - 4986 + 5145 ], "sum": [ - 4989 + 5148 ], "var_pop": [ - 4990 + 5149 ], "var_samp": [ - 4991 + 5150 ], "variance": [ - 4992 + 5151 ], "__typename": [ 78 @@ -113822,13 +116749,13 @@ export default { }, "v_match_kill_pairs_bool_exp": { "_and": [ - 4979 + 5138 ], "_not": [ - 4979 + 5138 ], "_or": [ - 4979 + 5138 ], "killer_side": [ 80 @@ -113840,16 +116767,16 @@ export default { 39 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "victim_side": [ 80 @@ -113875,10 +116802,10 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "victim_side": [ 78 @@ -113904,10 +116831,10 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "victim_side": [ 78 @@ -113924,34 +116851,34 @@ export default { }, "v_match_kill_pairs_order_by": { "killer_side": [ - 2781 + 2829 ], "killer_steam_id": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "victim_side": [ - 2781 + 2829 ], "victim_steam_id": [ - 2781 + 2829 ], "weapon": [ - 2781 + 2829 ], "__typename": [ 78 @@ -114002,7 +116929,7 @@ export default { }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 4988 + 5147 ], "ordering": [ 236 @@ -114022,10 +116949,10 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "victim_side": [ 78 @@ -114098,22 +117025,22 @@ export default { }, "v_match_lineup_buy_types": { "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_lineup": [ - 2276 + 2324 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "matchup": [ 78 @@ -114133,10 +117060,10 @@ export default { }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 4995 + 5154 ], "nodes": [ - 4993 + 5152 ], "__typename": [ 78 @@ -114144,13 +117071,13 @@ export default { }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 4996 + 5155 ], "count": [ 38, { "columns": [ - 5001, + 5160, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -114159,31 +117086,31 @@ export default { } ], "max": [ - 4998 + 5157 ], "min": [ - 4999 + 5158 ], "stddev": [ - 5002 + 5161 ], "stddev_pop": [ - 5003 + 5162 ], "stddev_samp": [ - 5004 + 5163 ], "sum": [ - 5007 + 5166 ], "var_pop": [ - 5008 + 5167 ], "var_samp": [ - 5009 + 5168 ], "variance": [ - 5010 + 5169 ], "__typename": [ 78 @@ -114202,31 +117129,31 @@ export default { }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 4997 + 5156 ], "_not": [ - 4997 + 5156 ], "_or": [ - 4997 + 5156 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_lineup": [ - 2285 + 2333 ], "match_lineup_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "matchup": [ 80 @@ -114246,13 +117173,13 @@ export default { }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "matchup": [ 78 @@ -114272,13 +117199,13 @@ export default { }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "matchup": [ 78 @@ -114298,34 +117225,34 @@ export default { }, "v_match_lineup_buy_types_order_by": { "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_lineup": [ - 2296 + 2344 ], "match_lineup_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "matchup": [ - 2781 + 2829 ], "rounds": [ - 2781 + 2829 ], "side": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -114367,7 +117294,7 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 5006 + 5165 ], "ordering": [ 236 @@ -114378,13 +117305,13 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "matchup": [ 78 @@ -114460,22 +117387,22 @@ export default { 38 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_lineup": [ - 2276 + 2324 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "opening_attempts": [ 38 @@ -114516,10 +117443,10 @@ export default { }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 5013 + 5172 ], "nodes": [ - 5011 + 5170 ], "__typename": [ 78 @@ -114527,13 +117454,13 @@ export default { }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 5014 + 5173 ], "count": [ 38, { "columns": [ - 5019, + 5178, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -114542,31 +117469,31 @@ export default { } ], "max": [ - 5016 + 5175 ], "min": [ - 5017 + 5176 ], "stddev": [ - 5020 + 5179 ], "stddev_pop": [ - 5021 + 5180 ], "stddev_samp": [ - 5022 + 5181 ], "sum": [ - 5025 + 5184 ], "var_pop": [ - 5026 + 5185 ], "var_samp": [ - 5027 + 5186 ], "variance": [ - 5028 + 5187 ], "__typename": [ 78 @@ -114621,13 +117548,13 @@ export default { }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 5015 + 5174 ], "_not": [ - 5015 + 5174 ], "_or": [ - 5015 + 5174 ], "man_adv_rounds": [ 39 @@ -114642,22 +117569,22 @@ export default { 39 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_lineup": [ - 2285 + 2333 ], "match_lineup_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "opening_attempts": [ 39 @@ -114710,13 +117637,13 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "opening_attempts": [ 38 @@ -114769,13 +117696,13 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "opening_attempts": [ 38 @@ -114816,67 +117743,67 @@ export default { }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 2781 + 2829 ], "man_adv_wins": [ - 2781 + 2829 ], "man_dis_rounds": [ - 2781 + 2829 ], "man_dis_wins": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_lineup": [ - 2296 + 2344 ], "match_lineup_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "opening_attempts": [ - 2781 + 2829 ], "opening_wins": [ - 2781 + 2829 ], "pistol_rounds": [ - 2781 + 2829 ], "pistol_wins": [ - 2781 + 2829 ], "round_wins": [ - 2781 + 2829 ], "rounds": [ - 2781 + 2829 ], "side": [ - 2781 + 2829 ], "won_buy_eco": [ - 2781 + 2829 ], "won_buy_force": [ - 2781 + 2829 ], "won_buy_full": [ - 2781 + 2829 ], "won_buy_pistol": [ - 2781 + 2829 ], "__typename": [ 78 @@ -115026,7 +117953,7 @@ export default { }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 5024 + 5183 ], "ordering": [ 236 @@ -115049,13 +117976,13 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "opening_attempts": [ 38 @@ -115287,7 +118214,7 @@ export default { 3 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 @@ -115298,10 +118225,10 @@ export default { }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 5031 + 5190 ], "nodes": [ - 5029 + 5188 ], "__typename": [ 78 @@ -115309,13 +118236,13 @@ export default { }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 5032 + 5191 ], "count": [ 38, { "columns": [ - 5040, + 5199, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -115324,31 +118251,31 @@ export default { } ], "max": [ - 5036 + 5195 ], "min": [ - 5037 + 5196 ], "stddev": [ - 5042 + 5201 ], "stddev_pop": [ - 5043 + 5202 ], "stddev_samp": [ - 5044 + 5203 ], "sum": [ - 5047 + 5206 ], "var_pop": [ - 5049 + 5208 ], "var_samp": [ - 5050 + 5209 ], "variance": [ - 5051 + 5210 ], "__typename": [ 78 @@ -115364,19 +118291,19 @@ export default { }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 5033 + 5192 ], "_not": [ - 5033 + 5192 ], "_or": [ - 5033 + 5192 ], "has_backup_file": [ 4 ], "match_map_id": [ - 4764 + 4923 ], "round": [ 39 @@ -115398,7 +118325,7 @@ export default { 3 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 @@ -115409,7 +118336,7 @@ export default { }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 4762 + 4921 ], "round": [ 38 @@ -115420,7 +118347,7 @@ export default { }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 4762 + 4921 ], "round": [ 38 @@ -115434,7 +118361,7 @@ export default { 38 ], "returning": [ - 5029 + 5188 ], "__typename": [ 78 @@ -115442,13 +118369,13 @@ export default { }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -115460,7 +118387,7 @@ export default { 3 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 @@ -115495,7 +118422,7 @@ export default { }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 5046 + 5205 ], "ordering": [ 236 @@ -115509,7 +118436,7 @@ export default { 3 ], "match_map_id": [ - 4762 + 4921 ], "round": [ 38 @@ -115528,13 +118455,13 @@ export default { }, "v_match_map_backup_rounds_updates": { "_inc": [ - 5034 + 5193 ], "_set": [ - 5041 + 5200 ], "where": [ - 5033 + 5192 ], "__typename": [ 78 @@ -115572,28 +118499,28 @@ export default { 38 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_lineup": [ - 2276 + 2324 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "matchup": [ 78 ], "player": [ - 3739 + 3787 ], "rounds": [ 38 @@ -115610,10 +118537,10 @@ export default { }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 5054 + 5213 ], "nodes": [ - 5052 + 5211 ], "__typename": [ 78 @@ -115621,13 +118548,13 @@ export default { }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 5055 + 5214 ], "count": [ 38, { "columns": [ - 5060, + 5219, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -115636,31 +118563,31 @@ export default { } ], "max": [ - 5057 + 5216 ], "min": [ - 5058 + 5217 ], "stddev": [ - 5061 + 5220 ], "stddev_pop": [ - 5062 + 5221 ], "stddev_samp": [ - 5063 + 5222 ], "sum": [ - 5066 + 5225 ], "var_pop": [ - 5067 + 5226 ], "var_samp": [ - 5068 + 5227 ], "variance": [ - 5069 + 5228 ], "__typename": [ 78 @@ -115685,13 +118612,13 @@ export default { }, "v_match_player_buy_types_bool_exp": { "_and": [ - 5056 + 5215 ], "_not": [ - 5056 + 5215 ], "_or": [ - 5056 + 5215 ], "deaths": [ 39 @@ -115700,28 +118627,28 @@ export default { 39 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_lineup": [ - 2285 + 2333 ], "match_lineup_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "matchup": [ 80 ], "player": [ - 3743 + 3791 ], "rounds": [ 39 @@ -115744,13 +118671,13 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "matchup": [ 78 @@ -115776,13 +118703,13 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "matchup": [ 78 @@ -115802,43 +118729,43 @@ export default { }, "v_match_player_buy_types_order_by": { "deaths": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_lineup": [ - 2296 + 2344 ], "match_lineup_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "matchup": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "rounds": [ - 2781 + 2829 ], "side": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -115898,7 +118825,7 @@ export default { }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 5065 + 5224 ], "ordering": [ 236 @@ -115915,13 +118842,13 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "matchup": [ 78 @@ -116015,25 +118942,25 @@ export default { 38 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_lineup": [ - 2276 + 2324 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3739 + 3787 ], "side": [ 78 @@ -116053,10 +118980,10 @@ export default { }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 5074 + 5233 ], "nodes": [ - 5070 + 5229 ], "__typename": [ 78 @@ -116064,7 +118991,7 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 5073 + 5232 ], "__typename": [ 78 @@ -116072,13 +118999,13 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 5086 + 5245 ], "distinct": [ 3 ], "filter": [ - 5079 + 5238 ], "predicate": [ 39 @@ -116089,13 +119016,13 @@ export default { }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 5077 + 5236 ], "count": [ 38, { "columns": [ - 5086, + 5245, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -116104,31 +119031,31 @@ export default { } ], "max": [ - 5081 + 5240 ], "min": [ - 5083 + 5242 ], "stddev": [ - 5087 + 5246 ], "stddev_pop": [ - 5089 + 5248 ], "stddev_samp": [ - 5091 + 5250 ], "sum": [ - 5095 + 5254 ], "var_pop": [ - 5097 + 5256 ], "var_samp": [ - 5099 + 5258 ], "variance": [ - 5101 + 5260 ], "__typename": [ 78 @@ -116136,37 +119063,37 @@ export default { }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 5078 + 5237 ], "count": [ - 2781 + 2829 ], "max": [ - 5082 + 5241 ], "min": [ - 5084 + 5243 ], "stddev": [ - 5088 + 5247 ], "stddev_pop": [ - 5090 + 5249 ], "stddev_samp": [ - 5092 + 5251 ], "sum": [ - 5096 + 5255 ], "var_pop": [ - 5098 + 5257 ], "var_samp": [ - 5100 + 5259 ], "variance": [ - 5102 + 5261 ], "__typename": [ 78 @@ -116174,7 +119101,7 @@ export default { }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 5080 + 5239 ], "__typename": [ 78 @@ -116202,19 +119129,19 @@ export default { }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "traded_deaths": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -116222,13 +119149,13 @@ export default { }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 5079 + 5238 ], "_not": [ - 5079 + 5238 ], "_or": [ - 5079 + 5238 ], "attempts": [ 39 @@ -116237,25 +119164,25 @@ export default { 39 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_lineup": [ - 2285 + 2333 ], "match_lineup_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "player": [ - 3743 + 3791 ], "side": [ 80 @@ -116281,25 +119208,25 @@ export default { 38 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_lineup": [ - 2294 + 2342 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map": [ - 2452 + 2500 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3750 + 3798 ], "side": [ 78 @@ -116325,13 +119252,13 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "side": [ 78 @@ -116351,31 +119278,31 @@ export default { }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_lineup_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "side": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "traded_deaths": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -116389,13 +119316,13 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "side": [ 78 @@ -116415,31 +119342,31 @@ export default { }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_lineup_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "side": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "traded_deaths": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -116447,43 +119374,43 @@ export default { }, "v_match_player_opening_duels_order_by": { "attempts": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_lineup": [ - 2296 + 2344 ], "match_lineup_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "side": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "traded_deaths": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -116512,19 +119439,19 @@ export default { }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "traded_deaths": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -116552,19 +119479,19 @@ export default { }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "traded_deaths": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -116592,19 +119519,19 @@ export default { }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "traded_deaths": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -116612,7 +119539,7 @@ export default { }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 5094 + 5253 ], "ordering": [ 236 @@ -116629,13 +119556,13 @@ export default { 38 ], "match_id": [ - 4762 + 4921 ], "match_lineup_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "side": [ 78 @@ -116675,19 +119602,19 @@ export default { }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "traded_deaths": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -116715,19 +119642,19 @@ export default { }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "traded_deaths": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -116755,19 +119682,19 @@ export default { }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "traded_deaths": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -116795,19 +119722,19 @@ export default { }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "traded_deaths": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -116821,10 +119748,10 @@ export default { 180 ], "nemsis": [ - 3739 + 3787 ], "player": [ - 3739 + 3787 ], "victim_id": [ 180 @@ -116835,10 +119762,10 @@ export default { }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 5105 + 5264 ], "nodes": [ - 5103 + 5262 ], "__typename": [ 78 @@ -116846,13 +119773,13 @@ export default { }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 5106 + 5265 ], "count": [ 38, { "columns": [ - 5111, + 5270, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -116861,31 +119788,31 @@ export default { } ], "max": [ - 5108 + 5267 ], "min": [ - 5109 + 5268 ], "stddev": [ - 5112 + 5271 ], "stddev_pop": [ - 5113 + 5272 ], "stddev_samp": [ - 5114 + 5273 ], "sum": [ - 5117 + 5276 ], "var_pop": [ - 5118 + 5277 ], "var_samp": [ - 5119 + 5278 ], "variance": [ - 5120 + 5279 ], "__typename": [ 78 @@ -116907,13 +119834,13 @@ export default { }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 5107 + 5266 ], "_not": [ - 5107 + 5266 ], "_or": [ - 5107 + 5266 ], "attacker_id": [ 182 @@ -116922,10 +119849,10 @@ export default { 182 ], "nemsis": [ - 3743 + 3791 ], "player": [ - 3743 + 3791 ], "victim_id": [ 182 @@ -116964,19 +119891,19 @@ export default { }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 2781 + 2829 ], "kill_count": [ - 2781 + 2829 ], "nemsis": [ - 3752 + 3800 ], "player": [ - 3752 + 3800 ], "victim_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -117027,7 +119954,7 @@ export default { }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 5116 + 5275 ], "ordering": [ 236 @@ -117111,7 +120038,7 @@ export default { 180 ], "player": [ - 3739 + 3787 ], "player_steam_id": [ 180 @@ -117128,10 +120055,10 @@ export default { }, "v_player_damage_aggregate": { "aggregate": [ - 5123 + 5282 ], "nodes": [ - 5121 + 5280 ], "__typename": [ 78 @@ -117139,13 +120066,13 @@ export default { }, "v_player_damage_aggregate_fields": { "avg": [ - 5124 + 5283 ], "count": [ 38, { "columns": [ - 5129, + 5288, "[v_player_damage_select_column!]" ], "distinct": [ @@ -117154,31 +120081,31 @@ export default { } ], "max": [ - 5126 + 5285 ], "min": [ - 5127 + 5286 ], "stddev": [ - 5130 + 5289 ], "stddev_pop": [ - 5131 + 5290 ], "stddev_samp": [ - 5132 + 5291 ], "sum": [ - 5135 + 5294 ], "var_pop": [ - 5136 + 5295 ], "var_samp": [ - 5137 + 5296 ], "variance": [ - 5138 + 5297 ], "__typename": [ 78 @@ -117203,19 +120130,19 @@ export default { }, "v_player_damage_bool_exp": { "_and": [ - 5125 + 5284 ], "_not": [ - 5125 + 5284 ], "_or": [ - 5125 + 5284 ], "avg_damage_per_round": [ 182 ], "player": [ - 3743 + 3791 ], "player_steam_id": [ 182 @@ -117266,19 +120193,19 @@ export default { }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "player_steam_id": [ - 2781 + 2829 ], "total_damage": [ - 2781 + 2829 ], "total_rounds": [ - 2781 + 2829 ], "__typename": [ 78 @@ -117338,7 +120265,7 @@ export default { }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 5134 + 5293 ], "ordering": [ 236 @@ -117434,7 +120361,7 @@ export default { }, "v_player_elo": { "actual_score": [ - 1499 + 1547 ], "assists": [ 38 @@ -117446,7 +120373,7 @@ export default { 38 ], "damage_percent": [ - 1499 + 1547 ], "deaths": [ 38 @@ -117455,16 +120382,16 @@ export default { 38 ], "expected_score": [ - 1499 + 1547 ], "impact": [ - 1499 + 1547 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1547 ], "kills": [ 38 @@ -117476,22 +120403,22 @@ export default { 38 ], "match": [ - 2596 + 2644 ], "match_created_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1499 + 1547 ], "performance_multiplier": [ - 1499 + 1547 ], "player_name": [ 78 @@ -117500,16 +120427,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1499 + 1547 ], "season_id": [ - 4762 + 4921 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1499 + 1547 ], "type": [ 78 @@ -117523,10 +120450,10 @@ export default { }, "v_player_elo_aggregate": { "aggregate": [ - 5153 + 5312 ], "nodes": [ - 5139 + 5298 ], "__typename": [ 78 @@ -117534,31 +120461,31 @@ export default { }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 5142 + 5301 ], "corr": [ - 5143 + 5302 ], "count": [ - 5145 + 5304 ], "covar_samp": [ - 5146 + 5305 ], "max": [ - 5148 + 5307 ], "min": [ - 5149 + 5308 ], "stddev_samp": [ - 5150 + 5309 ], "sum": [ - 5151 + 5310 ], "var_samp": [ - 5152 + 5311 ], "__typename": [ 78 @@ -117566,16 +120493,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 5166 + 5325 ], "distinct": [ 3 ], "filter": [ - 5158 + 5317 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -117583,16 +120510,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 5144 + 5303 ], "distinct": [ 3 ], "filter": [ - 5158 + 5317 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -117600,10 +120527,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 5167 + 5326 ], "Y": [ - 5167 + 5326 ], "__typename": [ 78 @@ -117611,13 +120538,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 5165 + 5324 ], "distinct": [ 3 ], "filter": [ - 5158 + 5317 ], "predicate": [ 39 @@ -117628,16 +120555,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 5147 + 5306 ], "distinct": [ 3 ], "filter": [ - 5158 + 5317 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -117645,10 +120572,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5168 + 5327 ], "Y": [ - 5168 + 5327 ], "__typename": [ 78 @@ -117656,16 +120583,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 5169 + 5328 ], "distinct": [ 3 ], "filter": [ - 5158 + 5317 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -117673,16 +120600,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 5170 + 5329 ], "distinct": [ 3 ], "filter": [ - 5158 + 5317 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -117690,16 +120617,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5171 + 5330 ], "distinct": [ 3 ], "filter": [ - 5158 + 5317 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -117707,16 +120634,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 5172 + 5331 ], "distinct": [ 3 ], "filter": [ - 5158 + 5317 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -117724,16 +120651,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 5173 + 5332 ], "distinct": [ 3 ], "filter": [ - 5158 + 5317 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -117741,13 +120668,13 @@ export default { }, "v_player_elo_aggregate_fields": { "avg": [ - 5156 + 5315 ], "count": [ 38, { "columns": [ - 5165, + 5324, "[v_player_elo_select_column!]" ], "distinct": [ @@ -117756,31 +120683,31 @@ export default { } ], "max": [ - 5160 + 5319 ], "min": [ - 5162 + 5321 ], "stddev": [ - 5174 + 5333 ], "stddev_pop": [ - 5176 + 5335 ], "stddev_samp": [ - 5178 + 5337 ], "sum": [ - 5182 + 5341 ], "var_pop": [ - 5184 + 5343 ], "var_samp": [ - 5186 + 5345 ], "variance": [ - 5188 + 5347 ], "__typename": [ 78 @@ -117788,37 +120715,37 @@ export default { }, "v_player_elo_aggregate_order_by": { "avg": [ - 5157 + 5316 ], "count": [ - 2781 + 2829 ], "max": [ - 5161 + 5320 ], "min": [ - 5163 + 5322 ], "stddev": [ - 5175 + 5334 ], "stddev_pop": [ - 5177 + 5336 ], "stddev_samp": [ - 5179 + 5338 ], "sum": [ - 5183 + 5342 ], "var_pop": [ - 5185 + 5344 ], "var_samp": [ - 5187 + 5346 ], "variance": [ - 5189 + 5348 ], "__typename": [ 78 @@ -117826,7 +120753,7 @@ export default { }, "v_player_elo_arr_rel_insert_input": { "data": [ - 5159 + 5318 ], "__typename": [ 78 @@ -117902,67 +120829,67 @@ export default { }, "v_player_elo_avg_order_by": { "actual_score": [ - 2781 + 2829 ], "assists": [ - 2781 + 2829 ], "current_elo": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_percent": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "elo_change": [ - 2781 + 2829 ], "expected_score": [ - 2781 + 2829 ], "impact": [ - 2781 + 2829 ], "k_factor": [ - 2781 + 2829 ], "kda": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "map_losses": [ - 2781 + 2829 ], "map_wins": [ - 2781 + 2829 ], "opponent_team_elo_avg": [ - 2781 + 2829 ], "performance_multiplier": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "player_team_elo_avg": [ - 2781 + 2829 ], "series_multiplier": [ - 2781 + 2829 ], "team_avg_kda": [ - 2781 + 2829 ], "updated_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -117970,16 +120897,16 @@ export default { }, "v_player_elo_bool_exp": { "_and": [ - 5158 + 5317 ], "_not": [ - 5158 + 5317 ], "_or": [ - 5158 + 5317 ], "actual_score": [ - 1500 + 1548 ], "assists": [ 39 @@ -117991,7 +120918,7 @@ export default { 39 ], "damage_percent": [ - 1500 + 1548 ], "deaths": [ 39 @@ -118000,16 +120927,16 @@ export default { 39 ], "expected_score": [ - 1500 + 1548 ], "impact": [ - 1500 + 1548 ], "k_factor": [ 39 ], "kda": [ - 1500 + 1548 ], "kills": [ 39 @@ -118021,22 +120948,22 @@ export default { 39 ], "match": [ - 2605 + 2653 ], "match_created_at": [ - 4325 + 4377 ], "match_id": [ - 4764 + 4923 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1500 + 1548 ], "performance_multiplier": [ - 1500 + 1548 ], "player_name": [ 80 @@ -118045,16 +120972,16 @@ export default { 182 ], "player_team_elo_avg": [ - 1500 + 1548 ], "season_id": [ - 4764 + 4923 ], "series_multiplier": [ 39 ], "team_avg_kda": [ - 1500 + 1548 ], "type": [ 80 @@ -118068,7 +120995,7 @@ export default { }, "v_player_elo_insert_input": { "actual_score": [ - 1499 + 1547 ], "assists": [ 38 @@ -118080,7 +121007,7 @@ export default { 38 ], "damage_percent": [ - 1499 + 1547 ], "deaths": [ 38 @@ -118089,16 +121016,16 @@ export default { 38 ], "expected_score": [ - 1499 + 1547 ], "impact": [ - 1499 + 1547 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1547 ], "kills": [ 38 @@ -118110,22 +121037,22 @@ export default { 38 ], "match": [ - 2614 + 2662 ], "match_created_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1499 + 1547 ], "performance_multiplier": [ - 1499 + 1547 ], "player_name": [ 78 @@ -118134,16 +121061,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1499 + 1547 ], "season_id": [ - 4762 + 4921 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1499 + 1547 ], "type": [ 78 @@ -118157,7 +121084,7 @@ export default { }, "v_player_elo_max_fields": { "actual_score": [ - 1499 + 1547 ], "assists": [ 38 @@ -118169,7 +121096,7 @@ export default { 38 ], "damage_percent": [ - 1499 + 1547 ], "deaths": [ 38 @@ -118178,16 +121105,16 @@ export default { 38 ], "expected_score": [ - 1499 + 1547 ], "impact": [ - 1499 + 1547 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1547 ], "kills": [ 38 @@ -118199,19 +121126,19 @@ export default { 38 ], "match_created_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1499 + 1547 ], "performance_multiplier": [ - 1499 + 1547 ], "player_name": [ 78 @@ -118220,16 +121147,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1499 + 1547 ], "season_id": [ - 4762 + 4921 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1499 + 1547 ], "type": [ 78 @@ -118243,85 +121170,85 @@ export default { }, "v_player_elo_max_order_by": { "actual_score": [ - 2781 + 2829 ], "assists": [ - 2781 + 2829 ], "current_elo": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_percent": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "elo_change": [ - 2781 + 2829 ], "expected_score": [ - 2781 + 2829 ], "impact": [ - 2781 + 2829 ], "k_factor": [ - 2781 + 2829 ], "kda": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "map_losses": [ - 2781 + 2829 ], "map_wins": [ - 2781 + 2829 ], "match_created_at": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_result": [ - 2781 + 2829 ], "opponent_team_elo_avg": [ - 2781 + 2829 ], "performance_multiplier": [ - 2781 + 2829 ], "player_name": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "player_team_elo_avg": [ - 2781 + 2829 ], "season_id": [ - 2781 + 2829 ], "series_multiplier": [ - 2781 + 2829 ], "team_avg_kda": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "updated_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -118329,7 +121256,7 @@ export default { }, "v_player_elo_min_fields": { "actual_score": [ - 1499 + 1547 ], "assists": [ 38 @@ -118341,7 +121268,7 @@ export default { 38 ], "damage_percent": [ - 1499 + 1547 ], "deaths": [ 38 @@ -118350,16 +121277,16 @@ export default { 38 ], "expected_score": [ - 1499 + 1547 ], "impact": [ - 1499 + 1547 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1547 ], "kills": [ 38 @@ -118371,19 +121298,19 @@ export default { 38 ], "match_created_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1499 + 1547 ], "performance_multiplier": [ - 1499 + 1547 ], "player_name": [ 78 @@ -118392,16 +121319,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1499 + 1547 ], "season_id": [ - 4762 + 4921 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1499 + 1547 ], "type": [ 78 @@ -118415,85 +121342,85 @@ export default { }, "v_player_elo_min_order_by": { "actual_score": [ - 2781 + 2829 ], "assists": [ - 2781 + 2829 ], "current_elo": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_percent": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "elo_change": [ - 2781 + 2829 ], "expected_score": [ - 2781 + 2829 ], "impact": [ - 2781 + 2829 ], "k_factor": [ - 2781 + 2829 ], "kda": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "map_losses": [ - 2781 + 2829 ], "map_wins": [ - 2781 + 2829 ], "match_created_at": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_result": [ - 2781 + 2829 ], "opponent_team_elo_avg": [ - 2781 + 2829 ], "performance_multiplier": [ - 2781 + 2829 ], "player_name": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "player_team_elo_avg": [ - 2781 + 2829 ], "season_id": [ - 2781 + 2829 ], "series_multiplier": [ - 2781 + 2829 ], "team_avg_kda": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "updated_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -118501,88 +121428,88 @@ export default { }, "v_player_elo_order_by": { "actual_score": [ - 2781 + 2829 ], "assists": [ - 2781 + 2829 ], "current_elo": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_percent": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "elo_change": [ - 2781 + 2829 ], "expected_score": [ - 2781 + 2829 ], "impact": [ - 2781 + 2829 ], "k_factor": [ - 2781 + 2829 ], "kda": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "map_losses": [ - 2781 + 2829 ], "map_wins": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_created_at": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_result": [ - 2781 + 2829 ], "opponent_team_elo_avg": [ - 2781 + 2829 ], "performance_multiplier": [ - 2781 + 2829 ], "player_name": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "player_team_elo_avg": [ - 2781 + 2829 ], "season_id": [ - 2781 + 2829 ], "series_multiplier": [ - 2781 + 2829 ], "team_avg_kda": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "updated_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -118667,67 +121594,67 @@ export default { }, "v_player_elo_stddev_order_by": { "actual_score": [ - 2781 + 2829 ], "assists": [ - 2781 + 2829 ], "current_elo": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_percent": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "elo_change": [ - 2781 + 2829 ], "expected_score": [ - 2781 + 2829 ], "impact": [ - 2781 + 2829 ], "k_factor": [ - 2781 + 2829 ], "kda": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "map_losses": [ - 2781 + 2829 ], "map_wins": [ - 2781 + 2829 ], "opponent_team_elo_avg": [ - 2781 + 2829 ], "performance_multiplier": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "player_team_elo_avg": [ - 2781 + 2829 ], "series_multiplier": [ - 2781 + 2829 ], "team_avg_kda": [ - 2781 + 2829 ], "updated_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -118803,67 +121730,67 @@ export default { }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 2781 + 2829 ], "assists": [ - 2781 + 2829 ], "current_elo": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_percent": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "elo_change": [ - 2781 + 2829 ], "expected_score": [ - 2781 + 2829 ], "impact": [ - 2781 + 2829 ], "k_factor": [ - 2781 + 2829 ], "kda": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "map_losses": [ - 2781 + 2829 ], "map_wins": [ - 2781 + 2829 ], "opponent_team_elo_avg": [ - 2781 + 2829 ], "performance_multiplier": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "player_team_elo_avg": [ - 2781 + 2829 ], "series_multiplier": [ - 2781 + 2829 ], "team_avg_kda": [ - 2781 + 2829 ], "updated_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -118939,67 +121866,67 @@ export default { }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 2781 + 2829 ], "assists": [ - 2781 + 2829 ], "current_elo": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_percent": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "elo_change": [ - 2781 + 2829 ], "expected_score": [ - 2781 + 2829 ], "impact": [ - 2781 + 2829 ], "k_factor": [ - 2781 + 2829 ], "kda": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "map_losses": [ - 2781 + 2829 ], "map_wins": [ - 2781 + 2829 ], "opponent_team_elo_avg": [ - 2781 + 2829 ], "performance_multiplier": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "player_team_elo_avg": [ - 2781 + 2829 ], "series_multiplier": [ - 2781 + 2829 ], "team_avg_kda": [ - 2781 + 2829 ], "updated_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -119007,7 +121934,7 @@ export default { }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 5181 + 5340 ], "ordering": [ 236 @@ -119018,7 +121945,7 @@ export default { }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1499 + 1547 ], "assists": [ 38 @@ -119030,7 +121957,7 @@ export default { 38 ], "damage_percent": [ - 1499 + 1547 ], "deaths": [ 38 @@ -119039,16 +121966,16 @@ export default { 38 ], "expected_score": [ - 1499 + 1547 ], "impact": [ - 1499 + 1547 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1547 ], "kills": [ 38 @@ -119060,19 +121987,19 @@ export default { 38 ], "match_created_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1499 + 1547 ], "performance_multiplier": [ - 1499 + 1547 ], "player_name": [ 78 @@ -119081,16 +122008,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1499 + 1547 ], "season_id": [ - 4762 + 4921 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1499 + 1547 ], "type": [ 78 @@ -119104,7 +122031,7 @@ export default { }, "v_player_elo_sum_fields": { "actual_score": [ - 1499 + 1547 ], "assists": [ 38 @@ -119116,7 +122043,7 @@ export default { 38 ], "damage_percent": [ - 1499 + 1547 ], "deaths": [ 38 @@ -119125,16 +122052,16 @@ export default { 38 ], "expected_score": [ - 1499 + 1547 ], "impact": [ - 1499 + 1547 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1547 ], "kills": [ 38 @@ -119146,22 +122073,22 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1499 + 1547 ], "performance_multiplier": [ - 1499 + 1547 ], "player_steam_id": [ 180 ], "player_team_elo_avg": [ - 1499 + 1547 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1499 + 1547 ], "updated_elo": [ 38 @@ -119172,67 +122099,67 @@ export default { }, "v_player_elo_sum_order_by": { "actual_score": [ - 2781 + 2829 ], "assists": [ - 2781 + 2829 ], "current_elo": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_percent": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "elo_change": [ - 2781 + 2829 ], "expected_score": [ - 2781 + 2829 ], "impact": [ - 2781 + 2829 ], "k_factor": [ - 2781 + 2829 ], "kda": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "map_losses": [ - 2781 + 2829 ], "map_wins": [ - 2781 + 2829 ], "opponent_team_elo_avg": [ - 2781 + 2829 ], "performance_multiplier": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "player_team_elo_avg": [ - 2781 + 2829 ], "series_multiplier": [ - 2781 + 2829 ], "team_avg_kda": [ - 2781 + 2829 ], "updated_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -119308,67 +122235,67 @@ export default { }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 2781 + 2829 ], "assists": [ - 2781 + 2829 ], "current_elo": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_percent": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "elo_change": [ - 2781 + 2829 ], "expected_score": [ - 2781 + 2829 ], "impact": [ - 2781 + 2829 ], "k_factor": [ - 2781 + 2829 ], "kda": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "map_losses": [ - 2781 + 2829 ], "map_wins": [ - 2781 + 2829 ], "opponent_team_elo_avg": [ - 2781 + 2829 ], "performance_multiplier": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "player_team_elo_avg": [ - 2781 + 2829 ], "series_multiplier": [ - 2781 + 2829 ], "team_avg_kda": [ - 2781 + 2829 ], "updated_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -119444,67 +122371,67 @@ export default { }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 2781 + 2829 ], "assists": [ - 2781 + 2829 ], "current_elo": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_percent": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "elo_change": [ - 2781 + 2829 ], "expected_score": [ - 2781 + 2829 ], "impact": [ - 2781 + 2829 ], "k_factor": [ - 2781 + 2829 ], "kda": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "map_losses": [ - 2781 + 2829 ], "map_wins": [ - 2781 + 2829 ], "opponent_team_elo_avg": [ - 2781 + 2829 ], "performance_multiplier": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "player_team_elo_avg": [ - 2781 + 2829 ], "series_multiplier": [ - 2781 + 2829 ], "team_avg_kda": [ - 2781 + 2829 ], "updated_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -119580,67 +122507,67 @@ export default { }, "v_player_elo_variance_order_by": { "actual_score": [ - 2781 + 2829 ], "assists": [ - 2781 + 2829 ], "current_elo": [ - 2781 + 2829 ], "damage": [ - 2781 + 2829 ], "damage_percent": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "elo_change": [ - 2781 + 2829 ], "expected_score": [ - 2781 + 2829 ], "impact": [ - 2781 + 2829 ], "k_factor": [ - 2781 + 2829 ], "kda": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "map_losses": [ - 2781 + 2829 ], "map_wins": [ - 2781 + 2829 ], "opponent_team_elo_avg": [ - 2781 + 2829 ], "performance_multiplier": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "player_team_elo_avg": [ - 2781 + 2829 ], "series_multiplier": [ - 2781 + 2829 ], "team_avg_kda": [ - 2781 + 2829 ], "updated_elo": [ - 2781 + 2829 ], "__typename": [ 78 @@ -119648,19 +122575,19 @@ export default { }, "v_player_map_losses": { "map": [ - 2114 + 2162 ], "map_id": [ - 4762 + 4921 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "started_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -119671,10 +122598,10 @@ export default { }, "v_player_map_losses_aggregate": { "aggregate": [ - 5192 + 5351 ], "nodes": [ - 5190 + 5349 ], "__typename": [ 78 @@ -119682,13 +122609,13 @@ export default { }, "v_player_map_losses_aggregate_fields": { "avg": [ - 5193 + 5352 ], "count": [ 38, { "columns": [ - 5198, + 5357, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -119697,31 +122624,31 @@ export default { } ], "max": [ - 5195 + 5354 ], "min": [ - 5196 + 5355 ], "stddev": [ - 5199 + 5358 ], "stddev_pop": [ - 5200 + 5359 ], "stddev_samp": [ - 5201 + 5360 ], "sum": [ - 5204 + 5363 ], "var_pop": [ - 5205 + 5364 ], "var_samp": [ - 5206 + 5365 ], "variance": [ - 5207 + 5366 ], "__typename": [ 78 @@ -119737,28 +122664,28 @@ export default { }, "v_player_map_losses_bool_exp": { "_and": [ - 5194 + 5353 ], "_not": [ - 5194 + 5353 ], "_or": [ - 5194 + 5353 ], "map": [ - 2123 + 2171 ], "map_id": [ - 4764 + 4923 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "started_at": [ - 4325 + 4377 ], "steam_id": [ 182 @@ -119769,13 +122696,13 @@ export default { }, "v_player_map_losses_max_fields": { "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "started_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -119786,13 +122713,13 @@ export default { }, "v_player_map_losses_min_fields": { "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "started_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -119803,22 +122730,22 @@ export default { }, "v_player_map_losses_order_by": { "map": [ - 2133 + 2181 ], "map_id": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "started_at": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -119851,7 +122778,7 @@ export default { }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 5203 + 5362 ], "ordering": [ 236 @@ -119862,13 +122789,13 @@ export default { }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "started_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -119911,19 +122838,19 @@ export default { }, "v_player_map_wins": { "map": [ - 2114 + 2162 ], "map_id": [ - 4762 + 4921 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "started_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -119934,10 +122861,10 @@ export default { }, "v_player_map_wins_aggregate": { "aggregate": [ - 5210 + 5369 ], "nodes": [ - 5208 + 5367 ], "__typename": [ 78 @@ -119945,13 +122872,13 @@ export default { }, "v_player_map_wins_aggregate_fields": { "avg": [ - 5211 + 5370 ], "count": [ 38, { "columns": [ - 5216, + 5375, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -119960,31 +122887,31 @@ export default { } ], "max": [ - 5213 + 5372 ], "min": [ - 5214 + 5373 ], "stddev": [ - 5217 + 5376 ], "stddev_pop": [ - 5218 + 5377 ], "stddev_samp": [ - 5219 + 5378 ], "sum": [ - 5222 + 5381 ], "var_pop": [ - 5223 + 5382 ], "var_samp": [ - 5224 + 5383 ], "variance": [ - 5225 + 5384 ], "__typename": [ 78 @@ -120000,28 +122927,28 @@ export default { }, "v_player_map_wins_bool_exp": { "_and": [ - 5212 + 5371 ], "_not": [ - 5212 + 5371 ], "_or": [ - 5212 + 5371 ], "map": [ - 2123 + 2171 ], "map_id": [ - 4764 + 4923 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "started_at": [ - 4325 + 4377 ], "steam_id": [ 182 @@ -120032,13 +122959,13 @@ export default { }, "v_player_map_wins_max_fields": { "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "started_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -120049,13 +122976,13 @@ export default { }, "v_player_map_wins_min_fields": { "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "started_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -120066,22 +122993,22 @@ export default { }, "v_player_map_wins_order_by": { "map": [ - 2133 + 2181 ], "map_id": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "started_at": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -120114,7 +123041,7 @@ export default { }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 5221 + 5380 ], "ordering": [ 236 @@ -120125,13 +123052,13 @@ export default { }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "started_at": [ - 4324 + 4376 ], "steam_id": [ 180 @@ -120174,13 +123101,13 @@ export default { }, "v_player_match_head_to_head": { "attacked": [ - 3739 + 3787 ], "attacked_steam_id": [ 180 ], "attacker": [ - 3739 + 3787 ], "attacker_steam_id": [ 180 @@ -120201,10 +123128,10 @@ export default { 180 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -120212,10 +123139,10 @@ export default { }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 5228 + 5387 ], "nodes": [ - 5226 + 5385 ], "__typename": [ 78 @@ -120223,13 +123150,13 @@ export default { }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 5229 + 5388 ], "count": [ 38, { "columns": [ - 5234, + 5393, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -120238,31 +123165,31 @@ export default { } ], "max": [ - 5231 + 5390 ], "min": [ - 5232 + 5391 ], "stddev": [ - 5235 + 5394 ], "stddev_pop": [ - 5236 + 5395 ], "stddev_samp": [ - 5237 + 5396 ], "sum": [ - 5240 + 5399 ], "var_pop": [ - 5241 + 5400 ], "var_samp": [ - 5242 + 5401 ], "variance": [ - 5243 + 5402 ], "__typename": [ 78 @@ -120296,22 +123223,22 @@ export default { }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 5230 + 5389 ], "_not": [ - 5230 + 5389 ], "_or": [ - 5230 + 5389 ], "attacked": [ - 3743 + 3791 ], "attacked_steam_id": [ 182 ], "attacker": [ - 3743 + 3791 ], "attacker_steam_id": [ 182 @@ -120332,10 +123259,10 @@ export default { 182 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -120364,7 +123291,7 @@ export default { 180 ], "match_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -120393,7 +123320,7 @@ export default { 180 ], "match_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -120401,37 +123328,37 @@ export default { }, "v_player_match_head_to_head_order_by": { "attacked": [ - 3752 + 3800 ], "attacked_steam_id": [ - 2781 + 2829 ], "attacker": [ - 3752 + 3800 ], "attacker_steam_id": [ - 2781 + 2829 ], "damage_dealt": [ - 2781 + 2829 ], "flash_count": [ - 2781 + 2829 ], "headshot_kills": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -120518,7 +123445,7 @@ export default { }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 5239 + 5398 ], "ordering": [ 236 @@ -120550,7 +123477,7 @@ export default { 180 ], "match_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -120662,37 +123589,37 @@ export default { }, "v_player_match_map_hltv": { "adr": [ - 2779 + 2827 ], "apr": [ - 2779 + 2827 ], "dpr": [ - 2779 + 2827 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kpr": [ - 2779 + 2827 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3739 + 3787 ], "rounds_played": [ 38 @@ -120706,10 +123633,10 @@ export default { }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 5248 + 5407 ], "nodes": [ - 5244 + 5403 ], "__typename": [ 78 @@ -120717,7 +123644,7 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 5247 + 5406 ], "__typename": [ 78 @@ -120725,13 +123652,13 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 5262 + 5421 ], "distinct": [ 3 ], "filter": [ - 5253 + 5412 ], "predicate": [ 39 @@ -120742,13 +123669,13 @@ export default { }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 5251 + 5410 ], "count": [ 38, { "columns": [ - 5262, + 5421, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -120757,31 +123684,31 @@ export default { } ], "max": [ - 5256 + 5415 ], "min": [ - 5258 + 5417 ], "stddev": [ - 5264 + 5423 ], "stddev_pop": [ - 5266 + 5425 ], "stddev_samp": [ - 5268 + 5427 ], "sum": [ - 5272 + 5431 ], "var_pop": [ - 5275 + 5434 ], "var_samp": [ - 5277 + 5436 ], "variance": [ - 5279 + 5438 ], "__typename": [ 78 @@ -120789,37 +123716,37 @@ export default { }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 5252 + 5411 ], "count": [ - 2781 + 2829 ], "max": [ - 5257 + 5416 ], "min": [ - 5259 + 5418 ], "stddev": [ - 5265 + 5424 ], "stddev_pop": [ - 5267 + 5426 ], "stddev_samp": [ - 5269 + 5428 ], "sum": [ - 5273 + 5432 ], "var_pop": [ - 5276 + 5435 ], "var_samp": [ - 5278 + 5437 ], "variance": [ - 5280 + 5439 ], "__typename": [ 78 @@ -120827,7 +123754,7 @@ export default { }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 5255 + 5414 ], "__typename": [ 78 @@ -120864,28 +123791,28 @@ export default { }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 2781 + 2829 ], "apr": [ - 2781 + 2829 ], "dpr": [ - 2781 + 2829 ], "hltv_rating": [ - 2781 + 2829 ], "kast_pct": [ - 2781 + 2829 ], "kpr": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -120893,46 +123820,46 @@ export default { }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 5253 + 5412 ], "_not": [ - 5253 + 5412 ], "_or": [ - 5253 + 5412 ], "adr": [ - 2780 + 2828 ], "apr": [ - 2780 + 2828 ], "dpr": [ - 2780 + 2828 ], "hltv_rating": [ - 2780 + 2828 ], "kast_pct": [ - 2780 + 2828 ], "kpr": [ - 2780 + 2828 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "player": [ - 3743 + 3791 ], "rounds_played": [ 39 @@ -120946,22 +123873,22 @@ export default { }, "v_player_match_map_hltv_inc_input": { "adr": [ - 2779 + 2827 ], "apr": [ - 2779 + 2827 ], "dpr": [ - 2779 + 2827 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kpr": [ - 2779 + 2827 ], "rounds_played": [ 38 @@ -120975,37 +123902,37 @@ export default { }, "v_player_match_map_hltv_insert_input": { "adr": [ - 2779 + 2827 ], "apr": [ - 2779 + 2827 ], "dpr": [ - 2779 + 2827 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kpr": [ - 2779 + 2827 ], "match": [ - 2614 + 2662 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2452 + 2500 ], "match_map_id": [ - 4762 + 4921 ], "player": [ - 3750 + 3798 ], "rounds_played": [ 38 @@ -121019,28 +123946,28 @@ export default { }, "v_player_match_map_hltv_max_fields": { "adr": [ - 2779 + 2827 ], "apr": [ - 2779 + 2827 ], "dpr": [ - 2779 + 2827 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kpr": [ - 2779 + 2827 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "rounds_played": [ 38 @@ -121054,34 +123981,34 @@ export default { }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 2781 + 2829 ], "apr": [ - 2781 + 2829 ], "dpr": [ - 2781 + 2829 ], "hltv_rating": [ - 2781 + 2829 ], "kast_pct": [ - 2781 + 2829 ], "kpr": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -121089,28 +124016,28 @@ export default { }, "v_player_match_map_hltv_min_fields": { "adr": [ - 2779 + 2827 ], "apr": [ - 2779 + 2827 ], "dpr": [ - 2779 + 2827 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kpr": [ - 2779 + 2827 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "rounds_played": [ 38 @@ -121124,34 +124051,34 @@ export default { }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 2781 + 2829 ], "apr": [ - 2781 + 2829 ], "dpr": [ - 2781 + 2829 ], "hltv_rating": [ - 2781 + 2829 ], "kast_pct": [ - 2781 + 2829 ], "kpr": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_map_id": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -121162,7 +124089,7 @@ export default { 38 ], "returning": [ - 5244 + 5403 ], "__typename": [ 78 @@ -121170,43 +124097,43 @@ export default { }, "v_player_match_map_hltv_order_by": { "adr": [ - 2781 + 2829 ], "apr": [ - 2781 + 2829 ], "dpr": [ - 2781 + 2829 ], "hltv_rating": [ - 2781 + 2829 ], "kast_pct": [ - 2781 + 2829 ], "kpr": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "rounds_played": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -121215,28 +124142,28 @@ export default { "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 2779 + 2827 ], "apr": [ - 2779 + 2827 ], "dpr": [ - 2779 + 2827 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kpr": [ - 2779 + 2827 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "rounds_played": [ 38 @@ -121279,28 +124206,28 @@ export default { }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 2781 + 2829 ], "apr": [ - 2781 + 2829 ], "dpr": [ - 2781 + 2829 ], "hltv_rating": [ - 2781 + 2829 ], "kast_pct": [ - 2781 + 2829 ], "kpr": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -121337,28 +124264,28 @@ export default { }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 2781 + 2829 ], "apr": [ - 2781 + 2829 ], "dpr": [ - 2781 + 2829 ], "hltv_rating": [ - 2781 + 2829 ], "kast_pct": [ - 2781 + 2829 ], "kpr": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -121395,28 +124322,28 @@ export default { }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 2781 + 2829 ], "apr": [ - 2781 + 2829 ], "dpr": [ - 2781 + 2829 ], "hltv_rating": [ - 2781 + 2829 ], "kast_pct": [ - 2781 + 2829 ], "kpr": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -121424,7 +124351,7 @@ export default { }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 5271 + 5430 ], "ordering": [ 236 @@ -121435,28 +124362,28 @@ export default { }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 2779 + 2827 ], "apr": [ - 2779 + 2827 ], "dpr": [ - 2779 + 2827 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kpr": [ - 2779 + 2827 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "rounds_played": [ 38 @@ -121470,22 +124397,22 @@ export default { }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 2779 + 2827 ], "apr": [ - 2779 + 2827 ], "dpr": [ - 2779 + 2827 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kpr": [ - 2779 + 2827 ], "rounds_played": [ 38 @@ -121499,28 +124426,28 @@ export default { }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 2781 + 2829 ], "apr": [ - 2781 + 2829 ], "dpr": [ - 2781 + 2829 ], "hltv_rating": [ - 2781 + 2829 ], "kast_pct": [ - 2781 + 2829 ], "kpr": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -121528,13 +124455,13 @@ export default { }, "v_player_match_map_hltv_updates": { "_inc": [ - 5254 + 5413 ], "_set": [ - 5263 + 5422 ], "where": [ - 5253 + 5412 ], "__typename": [ 78 @@ -121571,28 +124498,28 @@ export default { }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 2781 + 2829 ], "apr": [ - 2781 + 2829 ], "dpr": [ - 2781 + 2829 ], "hltv_rating": [ - 2781 + 2829 ], "kast_pct": [ - 2781 + 2829 ], "kpr": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -121629,28 +124556,28 @@ export default { }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 2781 + 2829 ], "apr": [ - 2781 + 2829 ], "dpr": [ - 2781 + 2829 ], "hltv_rating": [ - 2781 + 2829 ], "kast_pct": [ - 2781 + 2829 ], "kpr": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -121687,28 +124614,28 @@ export default { }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 2781 + 2829 ], "apr": [ - 2781 + 2829 ], "dpr": [ - 2781 + 2829 ], "hltv_rating": [ - 2781 + 2829 ], "kast_pct": [ - 2781 + 2829 ], "kpr": [ - 2781 + 2829 ], "rounds_played": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -121716,52 +124643,52 @@ export default { }, "v_player_match_map_roles": { "adr": [ - 2779 + 2827 ], "awp_kills": [ 38 ], "awp_share": [ - 2779 + 2827 ], "deaths": [ 38 ], "dpr": [ - 2779 + 2827 ], "entry_rate": [ - 2779 + 2827 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kills": [ 38 ], "kpr": [ - 2779 + 2827 ], "lineup_id": [ - 4762 + 4921 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "match_map": [ - 2434 + 2482 ], "match_map_id": [ - 4762 + 4921 ], "open_deaths": [ 38 @@ -121773,7 +124700,7 @@ export default { 38 ], "player": [ - 3739 + 3787 ], "role": [ 78 @@ -121785,7 +124712,7 @@ export default { 180 ], "support_idx": [ - 2779 + 2827 ], "total_kills": [ 38 @@ -121805,10 +124732,10 @@ export default { }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 5283 + 5442 ], "nodes": [ - 5281 + 5440 ], "__typename": [ 78 @@ -121816,13 +124743,13 @@ export default { }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 5284 + 5443 ], "count": [ 38, { "columns": [ - 5289, + 5448, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -121831,31 +124758,31 @@ export default { } ], "max": [ - 5286 + 5445 ], "min": [ - 5287 + 5446 ], "stddev": [ - 5290 + 5449 ], "stddev_pop": [ - 5291 + 5450 ], "stddev_samp": [ - 5292 + 5451 ], "sum": [ - 5295 + 5454 ], "var_pop": [ - 5296 + 5455 ], "var_samp": [ - 5297 + 5456 ], "variance": [ - 5298 + 5457 ], "__typename": [ 78 @@ -121931,61 +124858,61 @@ export default { }, "v_player_match_map_roles_bool_exp": { "_and": [ - 5285 + 5444 ], "_not": [ - 5285 + 5444 ], "_or": [ - 5285 + 5444 ], "adr": [ - 2780 + 2828 ], "awp_kills": [ 39 ], "awp_share": [ - 2780 + 2828 ], "deaths": [ 39 ], "dpr": [ - 2780 + 2828 ], "entry_rate": [ - 2780 + 2828 ], "flash_assists": [ 39 ], "hltv_rating": [ - 2780 + 2828 ], "kast_pct": [ - 2780 + 2828 ], "kills": [ 39 ], "kpr": [ - 2780 + 2828 ], "lineup_id": [ - 4764 + 4923 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "match_map": [ - 2443 + 2491 ], "match_map_id": [ - 4764 + 4923 ], "open_deaths": [ 39 @@ -121997,7 +124924,7 @@ export default { 39 ], "player": [ - 3743 + 3791 ], "role": [ 80 @@ -122009,7 +124936,7 @@ export default { 182 ], "support_idx": [ - 2780 + 2828 ], "total_kills": [ 39 @@ -122029,46 +124956,46 @@ export default { }, "v_player_match_map_roles_max_fields": { "adr": [ - 2779 + 2827 ], "awp_kills": [ 38 ], "awp_share": [ - 2779 + 2827 ], "deaths": [ 38 ], "dpr": [ - 2779 + 2827 ], "entry_rate": [ - 2779 + 2827 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kills": [ 38 ], "kpr": [ - 2779 + 2827 ], "lineup_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "open_deaths": [ 38 @@ -122089,7 +125016,7 @@ export default { 180 ], "support_idx": [ - 2779 + 2827 ], "total_kills": [ 38 @@ -122109,46 +125036,46 @@ export default { }, "v_player_match_map_roles_min_fields": { "adr": [ - 2779 + 2827 ], "awp_kills": [ 38 ], "awp_share": [ - 2779 + 2827 ], "deaths": [ 38 ], "dpr": [ - 2779 + 2827 ], "entry_rate": [ - 2779 + 2827 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kills": [ 38 ], "kpr": [ - 2779 + 2827 ], "lineup_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "open_deaths": [ 38 @@ -122169,7 +125096,7 @@ export default { 180 ], "support_idx": [ - 2779 + 2827 ], "total_kills": [ 38 @@ -122189,88 +125116,88 @@ export default { }, "v_player_match_map_roles_order_by": { "adr": [ - 2781 + 2829 ], "awp_kills": [ - 2781 + 2829 ], "awp_share": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "dpr": [ - 2781 + 2829 ], "entry_rate": [ - 2781 + 2829 ], "flash_assists": [ - 2781 + 2829 ], "hltv_rating": [ - 2781 + 2829 ], "kast_pct": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "kpr": [ - 2781 + 2829 ], "lineup_id": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "match_map": [ - 2454 + 2502 ], "match_map_id": [ - 2781 + 2829 ], "open_deaths": [ - 2781 + 2829 ], "open_kills": [ - 2781 + 2829 ], "opening_attempts": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "role": [ - 2781 + 2829 ], "rounds": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "support_idx": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "trade_kill_successes": [ - 2781 + 2829 ], "traded_death_successes": [ - 2781 + 2829 ], "util_damage": [ - 2781 + 2829 ], "__typename": [ 78 @@ -122483,7 +125410,7 @@ export default { }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 5294 + 5453 ], "ordering": [ 236 @@ -122494,46 +125421,46 @@ export default { }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 2779 + 2827 ], "awp_kills": [ 38 ], "awp_share": [ - 2779 + 2827 ], "deaths": [ 38 ], "dpr": [ - 2779 + 2827 ], "entry_rate": [ - 2779 + 2827 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kills": [ 38 ], "kpr": [ - 2779 + 2827 ], "lineup_id": [ - 4762 + 4921 ], "match_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762 + 4921 ], "open_deaths": [ 38 @@ -122554,7 +125481,7 @@ export default { 180 ], "support_idx": [ - 2779 + 2827 ], "total_kills": [ 38 @@ -122574,37 +125501,37 @@ export default { }, "v_player_match_map_roles_sum_fields": { "adr": [ - 2779 + 2827 ], "awp_kills": [ 38 ], "awp_share": [ - 2779 + 2827 ], "deaths": [ 38 ], "dpr": [ - 2779 + 2827 ], "entry_rate": [ - 2779 + 2827 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kills": [ 38 ], "kpr": [ - 2779 + 2827 ], "open_deaths": [ 38 @@ -122622,7 +125549,7 @@ export default { 180 ], "support_idx": [ - 2779 + 2827 ], "total_kills": [ 38 @@ -122855,19 +125782,19 @@ export default { 38 ], "map": [ - 2114 + 2162 ], "map_id": [ - 4762 + 4921 ], "match": [ - 2596 + 2644 ], "match_created_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_result": [ 78 @@ -122887,10 +125814,10 @@ export default { }, "v_player_match_performance_aggregate": { "aggregate": [ - 5301 + 5460 ], "nodes": [ - 5299 + 5458 ], "__typename": [ 78 @@ -122898,13 +125825,13 @@ export default { }, "v_player_match_performance_aggregate_fields": { "avg": [ - 5302 + 5461 ], "count": [ 38, { "columns": [ - 5307, + 5466, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -122913,31 +125840,31 @@ export default { } ], "max": [ - 5304 + 5463 ], "min": [ - 5305 + 5464 ], "stddev": [ - 5308 + 5467 ], "stddev_pop": [ - 5309 + 5468 ], "stddev_samp": [ - 5310 + 5469 ], "sum": [ - 5313 + 5472 ], "var_pop": [ - 5314 + 5473 ], "var_samp": [ - 5315 + 5474 ], "variance": [ - 5316 + 5475 ], "__typename": [ 78 @@ -122962,13 +125889,13 @@ export default { }, "v_player_match_performance_bool_exp": { "_and": [ - 5303 + 5462 ], "_not": [ - 5303 + 5462 ], "_or": [ - 5303 + 5462 ], "assists": [ 39 @@ -122980,19 +125907,19 @@ export default { 39 ], "map": [ - 2123 + 2171 ], "map_id": [ - 4764 + 4923 ], "match": [ - 2605 + 2653 ], "match_created_at": [ - 4325 + 4377 ], "match_id": [ - 4764 + 4923 ], "match_result": [ 80 @@ -123021,13 +125948,13 @@ export default { 38 ], "map_id": [ - 4762 + 4921 ], "match_created_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_result": [ 78 @@ -123056,13 +125983,13 @@ export default { 38 ], "map_id": [ - 4762 + 4921 ], "match_created_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_result": [ 78 @@ -123082,40 +126009,40 @@ export default { }, "v_player_match_performance_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "map": [ - 2133 + 2181 ], "map_id": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_created_at": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "match_result": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "source": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "__typename": [ 78 @@ -123175,7 +126102,7 @@ export default { }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 5312 + 5471 ], "ordering": [ 236 @@ -123195,13 +126122,13 @@ export default { 38 ], "map_id": [ - 4762 + 4921 ], "match_created_at": [ - 4324 + 4376 ], "match_id": [ - 4762 + 4921 ], "match_result": [ 78 @@ -123289,28 +126216,28 @@ export default { }, "v_player_match_rating": { "adr": [ - 2779 + 2827 ], "dpr": [ - 2779 + 2827 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kpr": [ - 2779 + 2827 ], "match": [ - 2596 + 2644 ], "match_id": [ - 4762 + 4921 ], "player": [ - 3739 + 3787 ], "rounds_played": [ 38 @@ -123324,10 +126251,10 @@ export default { }, "v_player_match_rating_aggregate": { "aggregate": [ - 5319 + 5478 ], "nodes": [ - 5317 + 5476 ], "__typename": [ 78 @@ -123335,13 +126262,13 @@ export default { }, "v_player_match_rating_aggregate_fields": { "avg": [ - 5320 + 5479 ], "count": [ 38, { "columns": [ - 5325, + 5484, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -123350,31 +126277,31 @@ export default { } ], "max": [ - 5322 + 5481 ], "min": [ - 5323 + 5482 ], "stddev": [ - 5326 + 5485 ], "stddev_pop": [ - 5327 + 5486 ], "stddev_samp": [ - 5328 + 5487 ], "sum": [ - 5331 + 5490 ], "var_pop": [ - 5332 + 5491 ], "var_samp": [ - 5333 + 5492 ], "variance": [ - 5334 + 5493 ], "__typename": [ 78 @@ -123408,37 +126335,37 @@ export default { }, "v_player_match_rating_bool_exp": { "_and": [ - 5321 + 5480 ], "_not": [ - 5321 + 5480 ], "_or": [ - 5321 + 5480 ], "adr": [ - 2780 + 2828 ], "dpr": [ - 2780 + 2828 ], "hltv_rating": [ - 2780 + 2828 ], "kast_pct": [ - 2780 + 2828 ], "kpr": [ - 2780 + 2828 ], "match": [ - 2605 + 2653 ], "match_id": [ - 4764 + 4923 ], "player": [ - 3743 + 3791 ], "rounds_played": [ 39 @@ -123452,22 +126379,22 @@ export default { }, "v_player_match_rating_max_fields": { "adr": [ - 2779 + 2827 ], "dpr": [ - 2779 + 2827 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kpr": [ - 2779 + 2827 ], "match_id": [ - 4762 + 4921 ], "rounds_played": [ 38 @@ -123481,22 +126408,22 @@ export default { }, "v_player_match_rating_min_fields": { "adr": [ - 2779 + 2827 ], "dpr": [ - 2779 + 2827 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kpr": [ - 2779 + 2827 ], "match_id": [ - 4762 + 4921 ], "rounds_played": [ 38 @@ -123510,34 +126437,34 @@ export default { }, "v_player_match_rating_order_by": { "adr": [ - 2781 + 2829 ], "dpr": [ - 2781 + 2829 ], "hltv_rating": [ - 2781 + 2829 ], "kast_pct": [ - 2781 + 2829 ], "kpr": [ - 2781 + 2829 ], "match": [ - 2616 + 2664 ], "match_id": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "rounds_played": [ - 2781 + 2829 ], "steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -123624,7 +126551,7 @@ export default { }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 5330 + 5489 ], "ordering": [ 236 @@ -123635,22 +126562,22 @@ export default { }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 2779 + 2827 ], "dpr": [ - 2779 + 2827 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kpr": [ - 2779 + 2827 ], "match_id": [ - 4762 + 4921 ], "rounds_played": [ 38 @@ -123664,19 +126591,19 @@ export default { }, "v_player_match_rating_sum_fields": { "adr": [ - 2779 + 2827 ], "dpr": [ - 2779 + 2827 ], "hltv_rating": [ - 2779 + 2827 ], "kast_pct": [ - 2779 + 2827 ], "kpr": [ - 2779 + 2827 ], "rounds_played": [ 38 @@ -123774,7 +126701,7 @@ export default { 180 ], "match_id": [ - 4762 + 4921 ], "round": [ 38 @@ -123785,10 +126712,10 @@ export default { }, "v_player_multi_kills_aggregate": { "aggregate": [ - 5339 + 5498 ], "nodes": [ - 5335 + 5494 ], "__typename": [ 78 @@ -123796,7 +126723,7 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 5338 + 5497 ], "__typename": [ 78 @@ -123804,13 +126731,13 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5351 + 5510 ], "distinct": [ 3 ], "filter": [ - 5344 + 5503 ], "predicate": [ 39 @@ -123821,13 +126748,13 @@ export default { }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 5342 + 5501 ], "count": [ 38, { "columns": [ - 5351, + 5510, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -123836,31 +126763,31 @@ export default { } ], "max": [ - 5346 + 5505 ], "min": [ - 5348 + 5507 ], "stddev": [ - 5352 + 5511 ], "stddev_pop": [ - 5354 + 5513 ], "stddev_samp": [ - 5356 + 5515 ], "sum": [ - 5360 + 5519 ], "var_pop": [ - 5362 + 5521 ], "var_samp": [ - 5364 + 5523 ], "variance": [ - 5366 + 5525 ], "__typename": [ 78 @@ -123868,37 +126795,37 @@ export default { }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 5343 + 5502 ], "count": [ - 2781 + 2829 ], "max": [ - 5347 + 5506 ], "min": [ - 5349 + 5508 ], "stddev": [ - 5353 + 5512 ], "stddev_pop": [ - 5355 + 5514 ], "stddev_samp": [ - 5357 + 5516 ], "sum": [ - 5361 + 5520 ], "var_pop": [ - 5363 + 5522 ], "var_samp": [ - 5365 + 5524 ], "variance": [ - 5367 + 5526 ], "__typename": [ 78 @@ -123906,7 +126833,7 @@ export default { }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 5345 + 5504 ], "__typename": [ 78 @@ -123928,13 +126855,13 @@ export default { }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -123942,13 +126869,13 @@ export default { }, "v_player_multi_kills_bool_exp": { "_and": [ - 5344 + 5503 ], "_not": [ - 5344 + 5503 ], "_or": [ - 5344 + 5503 ], "attacker_steam_id": [ 182 @@ -123957,7 +126884,7 @@ export default { 182 ], "match_id": [ - 4764 + 4923 ], "round": [ 39 @@ -123974,7 +126901,7 @@ export default { 180 ], "match_id": [ - 4762 + 4921 ], "round": [ 38 @@ -123991,7 +126918,7 @@ export default { 180 ], "match_id": [ - 4762 + 4921 ], "round": [ 38 @@ -124002,16 +126929,16 @@ export default { }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -124025,7 +126952,7 @@ export default { 180 ], "match_id": [ - 4762 + 4921 ], "round": [ 38 @@ -124036,16 +126963,16 @@ export default { }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -124053,16 +126980,16 @@ export default { }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "match_id": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -124085,13 +127012,13 @@ export default { }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -124113,13 +127040,13 @@ export default { }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -124141,13 +127068,13 @@ export default { }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -124155,7 +127082,7 @@ export default { }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5359 + 5518 ], "ordering": [ 236 @@ -124172,7 +127099,7 @@ export default { 180 ], "match_id": [ - 4762 + 4921 ], "round": [ 38 @@ -124197,13 +127124,13 @@ export default { }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -124225,13 +127152,13 @@ export default { }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -124253,13 +127180,13 @@ export default { }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -124281,13 +127208,13 @@ export default { }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "round": [ - 2781 + 2829 ], "__typename": [ 78 @@ -124318,10 +127245,10 @@ export default { }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5370 + 5529 ], "nodes": [ - 5368 + 5527 ], "__typename": [ 78 @@ -124329,13 +127256,13 @@ export default { }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5371 + 5530 ], "count": [ 38, { "columns": [ - 5376, + 5535, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -124344,31 +127271,31 @@ export default { } ], "max": [ - 5373 + 5532 ], "min": [ - 5374 + 5533 ], "stddev": [ - 5377 + 5536 ], "stddev_pop": [ - 5378 + 5537 ], "stddev_samp": [ - 5379 + 5538 ], "sum": [ - 5382 + 5541 ], "var_pop": [ - 5383 + 5542 ], "var_samp": [ - 5384 + 5543 ], "variance": [ - 5385 + 5544 ], "__typename": [ 78 @@ -124390,13 +127317,13 @@ export default { }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5372 + 5531 ], "_not": [ - 5372 + 5531 ], "_or": [ - 5372 + 5531 ], "damage": [ 182 @@ -124468,22 +127395,22 @@ export default { }, "v_player_weapon_damage_order_by": { "damage": [ - 2781 + 2829 ], "hits": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "source": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "with": [ - 2781 + 2829 ], "__typename": [ 78 @@ -124534,7 +127461,7 @@ export default { }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5381 + 5540 ], "ordering": [ 236 @@ -124647,10 +127574,10 @@ export default { }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5388 + 5547 ], "nodes": [ - 5386 + 5545 ], "__typename": [ 78 @@ -124658,13 +127585,13 @@ export default { }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5389 + 5548 ], "count": [ 38, { "columns": [ - 5394, + 5553, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -124673,31 +127600,31 @@ export default { } ], "max": [ - 5391 + 5550 ], "min": [ - 5392 + 5551 ], "stddev": [ - 5395 + 5554 ], "stddev_pop": [ - 5396 + 5555 ], "stddev_samp": [ - 5397 + 5556 ], "sum": [ - 5400 + 5559 ], "var_pop": [ - 5401 + 5560 ], "var_samp": [ - 5402 + 5561 ], "variance": [ - 5403 + 5562 ], "__typename": [ 78 @@ -124719,13 +127646,13 @@ export default { }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5390 + 5549 ], "_not": [ - 5390 + 5549 ], "_or": [ - 5390 + 5549 ], "kill_count": [ 182 @@ -124797,22 +127724,22 @@ export default { }, "v_player_weapon_kills_order_by": { "kill_count": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "rounds": [ - 2781 + 2829 ], "source": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "with": [ - 2781 + 2829 ], "__typename": [ 78 @@ -124863,7 +127790,7 @@ export default { }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5399 + 5558 ], "ordering": [ 236 @@ -124956,16 +127883,16 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "label": [ 78 ], "map_pool": [ - 2095 + 2143 ], "map_pool_id": [ - 4762 + 4921 ], "name": [ 78 @@ -124988,10 +127915,10 @@ export default { }, "v_pool_maps_aggregate": { "aggregate": [ - 5410 + 5569 ], "nodes": [ - 5404 + 5563 ], "__typename": [ 78 @@ -124999,13 +127926,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5407 + 5566 ], "bool_or": [ - 5408 + 5567 ], "count": [ - 5409 + 5568 ], "__typename": [ 78 @@ -125013,13 +127940,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5422 + 5581 ], "distinct": [ 3 ], "filter": [ - 5413 + 5572 ], "predicate": [ 4 @@ -125030,13 +127957,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5423 + 5582 ], "distinct": [ 3 ], "filter": [ - 5413 + 5572 ], "predicate": [ 4 @@ -125047,13 +127974,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5421 + 5580 ], "distinct": [ 3 ], "filter": [ - 5413 + 5572 ], "predicate": [ 39 @@ -125067,7 +127994,7 @@ export default { 38, { "columns": [ - 5421, + 5580, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -125076,10 +128003,10 @@ export default { } ], "max": [ - 5415 + 5574 ], "min": [ - 5417 + 5576 ], "__typename": [ 78 @@ -125087,13 +128014,13 @@ export default { }, "v_pool_maps_aggregate_order_by": { "count": [ - 2781 + 2829 ], "max": [ - 5416 + 5575 ], "min": [ - 5418 + 5577 ], "__typename": [ 78 @@ -125101,7 +128028,7 @@ export default { }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5414 + 5573 ], "__typename": [ 78 @@ -125109,28 +128036,28 @@ export default { }, "v_pool_maps_bool_exp": { "_and": [ - 5413 + 5572 ], "_not": [ - 5413 + 5572 ], "_or": [ - 5413 + 5572 ], "active_pool": [ 4 ], "id": [ - 4764 + 4923 ], "label": [ 80 ], "map_pool": [ - 2098 + 2146 ], "map_pool_id": [ - 4764 + 4923 ], "name": [ 80 @@ -125156,16 +128083,16 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "label": [ 78 ], "map_pool": [ - 2104 + 2152 ], "map_pool_id": [ - 4762 + 4921 ], "name": [ 78 @@ -125188,13 +128115,13 @@ export default { }, "v_pool_maps_max_fields": { "id": [ - 4762 + 4921 ], "label": [ 78 ], "map_pool_id": [ - 4762 + 4921 ], "name": [ 78 @@ -125217,28 +128144,28 @@ export default { }, "v_pool_maps_max_order_by": { "id": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "map_pool_id": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "patch": [ - 2781 + 2829 ], "poster": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "workshop_map_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -125246,13 +128173,13 @@ export default { }, "v_pool_maps_min_fields": { "id": [ - 4762 + 4921 ], "label": [ 78 ], "map_pool_id": [ - 4762 + 4921 ], "name": [ 78 @@ -125275,28 +128202,28 @@ export default { }, "v_pool_maps_min_order_by": { "id": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "map_pool_id": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "patch": [ - 2781 + 2829 ], "poster": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "workshop_map_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -125307,7 +128234,7 @@ export default { 38 ], "returning": [ - 5404 + 5563 ], "__typename": [ 78 @@ -125315,34 +128242,34 @@ export default { }, "v_pool_maps_order_by": { "active_pool": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "label": [ - 2781 + 2829 ], "map_pool": [ - 2106 + 2154 ], "map_pool_id": [ - 2781 + 2829 ], "name": [ - 2781 + 2829 ], "patch": [ - 2781 + 2829 ], "poster": [ - 2781 + 2829 ], "type": [ - 2781 + 2829 ], "workshop_map_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -125356,13 +128283,13 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "label": [ 78 ], "map_pool_id": [ - 4762 + 4921 ], "name": [ 78 @@ -125385,7 +128312,7 @@ export default { }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5426 + 5585 ], "ordering": [ 236 @@ -125399,13 +128326,13 @@ export default { 3 ], "id": [ - 4762 + 4921 ], "label": [ 78 ], "map_pool_id": [ - 4762 + 4921 ], "name": [ 78 @@ -125428,10 +128355,10 @@ export default { }, "v_pool_maps_updates": { "_set": [ - 5424 + 5583 ], "where": [ - 5413 + 5572 ], "__typename": [ 78 @@ -125456,10 +128383,10 @@ export default { }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5430 + 5589 ], "nodes": [ - 5428 + 5587 ], "__typename": [ 78 @@ -125467,13 +128394,13 @@ export default { }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5431 + 5590 ], "count": [ 38, { "columns": [ - 5436, + 5595, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -125482,31 +128409,31 @@ export default { } ], "max": [ - 5433 + 5592 ], "min": [ - 5434 + 5593 ], "stddev": [ - 5437 + 5596 ], "stddev_pop": [ - 5438 + 5597 ], "stddev_samp": [ - 5439 + 5598 ], "sum": [ - 5442 + 5601 ], "var_pop": [ - 5443 + 5602 ], "var_samp": [ - 5444 + 5603 ], "variance": [ - 5445 + 5604 ], "__typename": [ 78 @@ -125531,13 +128458,13 @@ export default { }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5432 + 5591 ], "_not": [ - 5432 + 5591 ], "_or": [ - 5432 + 5591 ], "busy_accounts": [ 39 @@ -125591,16 +128518,16 @@ export default { }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 2781 + 2829 ], "free_accounts": [ - 2781 + 2829 ], "id": [ - 2781 + 2829 ], "total_accounts": [ - 2781 + 2829 ], "__typename": [ 78 @@ -125660,7 +128587,7 @@ export default { }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5441 + 5600 ], "ordering": [ 236 @@ -125762,7 +128689,7 @@ export default { 38 ], "avg_faceit_level": [ - 1499 + 1547 ], "avg_premier": [ 38 @@ -125777,10 +128704,10 @@ export default { 180 ], "team": [ - 4281 + 4329 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -125788,10 +128715,10 @@ export default { }, "v_team_ranks_aggregate": { "aggregate": [ - 5448 + 5607 ], "nodes": [ - 5446 + 5605 ], "__typename": [ 78 @@ -125799,13 +128726,13 @@ export default { }, "v_team_ranks_aggregate_fields": { "avg": [ - 5449 + 5608 ], "count": [ 38, { "columns": [ - 5456, + 5615, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -125814,31 +128741,31 @@ export default { } ], "max": [ - 5452 + 5611 ], "min": [ - 5453 + 5612 ], "stddev": [ - 5457 + 5616 ], "stddev_pop": [ - 5458 + 5617 ], "stddev_samp": [ - 5459 + 5618 ], "sum": [ - 5462 + 5621 ], "var_pop": [ - 5463 + 5622 ], "var_samp": [ - 5464 + 5623 ], "variance": [ - 5465 + 5624 ], "__typename": [ 78 @@ -125872,13 +128799,13 @@ export default { }, "v_team_ranks_bool_exp": { "_and": [ - 5450 + 5609 ], "_not": [ - 5450 + 5609 ], "_or": [ - 5450 + 5609 ], "avg_elo": [ 39 @@ -125887,7 +128814,7 @@ export default { 39 ], "avg_faceit_level": [ - 1500 + 1548 ], "avg_premier": [ 39 @@ -125902,10 +128829,10 @@ export default { 182 ], "team": [ - 4290 + 4340 ], "team_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -125919,7 +128846,7 @@ export default { 38 ], "avg_faceit_level": [ - 1499 + 1547 ], "avg_premier": [ 38 @@ -125934,10 +128861,10 @@ export default { 180 ], "team": [ - 4299 + 4349 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -125951,7 +128878,7 @@ export default { 38 ], "avg_faceit_level": [ - 1499 + 1547 ], "avg_premier": [ 38 @@ -125966,7 +128893,7 @@ export default { 180 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -125980,7 +128907,7 @@ export default { 38 ], "avg_faceit_level": [ - 1499 + 1547 ], "avg_premier": [ 38 @@ -125995,7 +128922,7 @@ export default { 180 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -126003,7 +128930,7 @@ export default { }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5451 + 5610 ], "__typename": [ 78 @@ -126011,31 +128938,31 @@ export default { }, "v_team_ranks_order_by": { "avg_elo": [ - 2781 + 2829 ], "avg_faceit_elo": [ - 2781 + 2829 ], "avg_faceit_level": [ - 2781 + 2829 ], "avg_premier": [ - 2781 + 2829 ], "max_elo": [ - 2781 + 2829 ], "min_elo": [ - 2781 + 2829 ], "roster_size": [ - 2781 + 2829 ], "team": [ - 4301 + 4351 ], "team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -126122,7 +129049,7 @@ export default { }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5461 + 5620 ], "ordering": [ 236 @@ -126139,7 +129066,7 @@ export default { 38 ], "avg_faceit_level": [ - 1499 + 1547 ], "avg_premier": [ 38 @@ -126154,7 +129081,7 @@ export default { 180 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -126168,7 +129095,7 @@ export default { 38 ], "avg_faceit_level": [ - 1499 + 1547 ], "avg_premier": [ 38 @@ -126272,16 +129199,16 @@ export default { 180 ], "reliability_pct": [ - 2779 + 2827 ], "scrims_completed": [ 180 ], "team": [ - 4281 + 4329 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -126289,10 +129216,10 @@ export default { }, "v_team_reputation_aggregate": { "aggregate": [ - 5468 + 5627 ], "nodes": [ - 5466 + 5625 ], "__typename": [ 78 @@ -126300,13 +129227,13 @@ export default { }, "v_team_reputation_aggregate_fields": { "avg": [ - 5469 + 5628 ], "count": [ 38, { "columns": [ - 5476, + 5635, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -126315,31 +129242,31 @@ export default { } ], "max": [ - 5472 + 5631 ], "min": [ - 5473 + 5632 ], "stddev": [ - 5477 + 5636 ], "stddev_pop": [ - 5478 + 5637 ], "stddev_samp": [ - 5479 + 5638 ], "sum": [ - 5482 + 5641 ], "var_pop": [ - 5483 + 5642 ], "var_samp": [ - 5484 + 5643 ], "variance": [ - 5485 + 5644 ], "__typename": [ 78 @@ -126364,13 +129291,13 @@ export default { }, "v_team_reputation_bool_exp": { "_and": [ - 5470 + 5629 ], "_not": [ - 5470 + 5629 ], "_or": [ - 5470 + 5629 ], "late_cancels": [ 182 @@ -126379,16 +129306,16 @@ export default { 182 ], "reliability_pct": [ - 2780 + 2828 ], "scrims_completed": [ 182 ], "team": [ - 4290 + 4340 ], "team_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -126402,16 +129329,16 @@ export default { 180 ], "reliability_pct": [ - 2779 + 2827 ], "scrims_completed": [ 180 ], "team": [ - 4299 + 4349 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -126425,13 +129352,13 @@ export default { 180 ], "reliability_pct": [ - 2779 + 2827 ], "scrims_completed": [ 180 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -126445,13 +129372,13 @@ export default { 180 ], "reliability_pct": [ - 2779 + 2827 ], "scrims_completed": [ 180 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -126459,7 +129386,7 @@ export default { }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5471 + 5630 ], "__typename": [ 78 @@ -126467,22 +129394,22 @@ export default { }, "v_team_reputation_order_by": { "late_cancels": [ - 2781 + 2829 ], "no_shows": [ - 2781 + 2829 ], "reliability_pct": [ - 2781 + 2829 ], "scrims_completed": [ - 2781 + 2829 ], "team": [ - 4301 + 4351 ], "team_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -126542,7 +129469,7 @@ export default { }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5481 + 5640 ], "ordering": [ 236 @@ -126559,13 +129486,13 @@ export default { 180 ], "reliability_pct": [ - 2779 + 2827 ], "scrims_completed": [ 180 ], "team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -126579,7 +129506,7 @@ export default { 180 ], "reliability_pct": [ - 2779 + 2827 ], "scrims_completed": [ 180 @@ -126677,13 +129604,13 @@ export default { 38 ], "stage": [ - 4454 + 4595 ], "team": [ - 4587 + 4728 ], "team_kdr": [ - 1499 + 1547 ], "total_deaths": [ 38 @@ -126692,10 +129619,10 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -126706,10 +129633,10 @@ export default { }, "v_team_stage_results_aggregate": { "aggregate": [ - 5500 + 5659 ], "nodes": [ - 5486 + 5645 ], "__typename": [ 78 @@ -126717,31 +129644,31 @@ export default { }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5489 + 5648 ], "corr": [ - 5490 + 5649 ], "count": [ - 5492 + 5651 ], "covar_samp": [ - 5493 + 5652 ], "max": [ - 5495 + 5654 ], "min": [ - 5496 + 5655 ], "stddev_samp": [ - 5497 + 5656 ], "sum": [ - 5498 + 5657 ], "var_samp": [ - 5499 + 5658 ], "__typename": [ 78 @@ -126749,16 +129676,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5519 + 5678 ], "distinct": [ 3 ], "filter": [ - 5505 + 5664 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -126766,16 +129693,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5491 + 5650 ], "distinct": [ 3 ], "filter": [ - 5505 + 5664 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -126783,10 +129710,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5520 + 5679 ], "Y": [ - 5520 + 5679 ], "__typename": [ 78 @@ -126794,13 +129721,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5518 + 5677 ], "distinct": [ 3 ], "filter": [ - 5505 + 5664 ], "predicate": [ 39 @@ -126811,16 +129738,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5494 + 5653 ], "distinct": [ 3 ], "filter": [ - 5505 + 5664 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -126828,10 +129755,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5521 + 5680 ], "Y": [ - 5521 + 5680 ], "__typename": [ 78 @@ -126839,16 +129766,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5522 + 5681 ], "distinct": [ 3 ], "filter": [ - 5505 + 5664 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -126856,16 +129783,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5523 + 5682 ], "distinct": [ 3 ], "filter": [ - 5505 + 5664 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -126873,16 +129800,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5524 + 5683 ], "distinct": [ 3 ], "filter": [ - 5505 + 5664 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -126890,16 +129817,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5525 + 5684 ], "distinct": [ 3 ], "filter": [ - 5505 + 5664 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -126907,16 +129834,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5526 + 5685 ], "distinct": [ 3 ], "filter": [ - 5505 + 5664 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -126924,13 +129851,13 @@ export default { }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5503 + 5662 ], "count": [ 38, { "columns": [ - 5518, + 5677, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -126939,31 +129866,31 @@ export default { } ], "max": [ - 5509 + 5668 ], "min": [ - 5511 + 5670 ], "stddev": [ - 5528 + 5687 ], "stddev_pop": [ - 5530 + 5689 ], "stddev_samp": [ - 5532 + 5691 ], "sum": [ - 5536 + 5695 ], "var_pop": [ - 5540 + 5699 ], "var_samp": [ - 5542 + 5701 ], "variance": [ - 5544 + 5703 ], "__typename": [ 78 @@ -126971,37 +129898,37 @@ export default { }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5504 + 5663 ], "count": [ - 2781 + 2829 ], "max": [ - 5510 + 5669 ], "min": [ - 5512 + 5671 ], "stddev": [ - 5529 + 5688 ], "stddev_pop": [ - 5531 + 5690 ], "stddev_samp": [ - 5533 + 5692 ], "sum": [ - 5537 + 5696 ], "var_pop": [ - 5541 + 5700 ], "var_samp": [ - 5543 + 5702 ], "variance": [ - 5545 + 5704 ], "__typename": [ 78 @@ -127009,10 +129936,10 @@ export default { }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5508 + 5667 ], "on_conflict": [ - 5515 + 5674 ], "__typename": [ 78 @@ -127073,52 +130000,52 @@ export default { }, "v_team_stage_results_avg_order_by": { "group_number": [ - 2781 + 2829 ], "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -127126,13 +130053,13 @@ export default { }, "v_team_stage_results_bool_exp": { "_and": [ - 5505 + 5664 ], "_not": [ - 5505 + 5664 ], "_or": [ - 5505 + 5664 ], "group_number": [ 39 @@ -127171,13 +130098,13 @@ export default { 39 ], "stage": [ - 4466 + 4607 ], "team": [ - 4596 + 4737 ], "team_kdr": [ - 1500 + 1548 ], "total_deaths": [ 39 @@ -127186,10 +130113,10 @@ export default { 39 ], "tournament_stage_id": [ - 4764 + 4923 ], "tournament_team_id": [ - 4764 + 4923 ], "wins": [ 39 @@ -127237,7 +130164,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1547 ], "total_deaths": [ 38 @@ -127290,13 +130217,13 @@ export default { 38 ], "stage": [ - 4478 + 4619 ], "team": [ - 4605 + 4746 ], "team_kdr": [ - 1499 + 1547 ], "total_deaths": [ 38 @@ -127305,10 +130232,10 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -127355,7 +130282,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1547 ], "total_deaths": [ 38 @@ -127364,10 +130291,10 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -127378,58 +130305,58 @@ export default { }, "v_team_stage_results_max_order_by": { "group_number": [ - 2781 + 2829 ], "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "tournament_stage_id": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -127473,7 +130400,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1547 ], "total_deaths": [ 38 @@ -127482,10 +130409,10 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -127496,58 +130423,58 @@ export default { }, "v_team_stage_results_min_order_by": { "group_number": [ - 2781 + 2829 ], "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "tournament_stage_id": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -127558,7 +130485,7 @@ export default { 38 ], "returning": [ - 5486 + 5645 ], "__typename": [ 78 @@ -127566,10 +130493,10 @@ export default { }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5508 + 5667 ], "on_conflict": [ - 5515 + 5674 ], "__typename": [ 78 @@ -127577,13 +130504,13 @@ export default { }, "v_team_stage_results_on_conflict": { "constraint": [ - 5506 + 5665 ], "update_columns": [ - 5538 + 5697 ], "where": [ - 5505 + 5664 ], "__typename": [ 78 @@ -127591,64 +130518,64 @@ export default { }, "v_team_stage_results_order_by": { "group_number": [ - 2781 + 2829 ], "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "stage": [ - 4480 + 4621 ], "team": [ - 4607 + 4748 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "tournament_stage_id": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -127656,10 +130583,10 @@ export default { }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -127712,7 +130639,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1547 ], "total_deaths": [ 38 @@ -127721,10 +130648,10 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -127788,52 +130715,52 @@ export default { }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 2781 + 2829 ], "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -127894,52 +130821,52 @@ export default { }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 2781 + 2829 ], "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -128000,52 +130927,52 @@ export default { }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 2781 + 2829 ], "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -128053,7 +130980,7 @@ export default { }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5535 + 5694 ], "ordering": [ 236 @@ -128100,7 +131027,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1547 ], "total_deaths": [ 38 @@ -128109,10 +131036,10 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -128159,7 +131086,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1547 ], "total_deaths": [ 38 @@ -128176,52 +131103,52 @@ export default { }, "v_team_stage_results_sum_order_by": { "group_number": [ - 2781 + 2829 ], "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -128230,13 +131157,13 @@ export default { "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5507 + 5666 ], "_set": [ - 5527 + 5686 ], "where": [ - 5505 + 5664 ], "__typename": [ 78 @@ -128297,52 +131224,52 @@ export default { }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 2781 + 2829 ], "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -128403,52 +131330,52 @@ export default { }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 2781 + 2829 ], "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -128509,52 +131436,52 @@ export default { }, "v_team_stage_results_variance_order_by": { "group_number": [ - 2781 + 2829 ], "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "placement": [ - 2781 + 2829 ], "rank": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -128589,10 +131516,10 @@ export default { 38 ], "team": [ - 4587 + 4728 ], "team_kdr": [ - 1499 + 1547 ], "total_deaths": [ 38 @@ -128601,13 +131528,13 @@ export default { 38 ], "tournament": [ - 4716 + 4857 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -128618,10 +131545,10 @@ export default { }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5560 + 5719 ], "nodes": [ - 5546 + 5705 ], "__typename": [ 78 @@ -128629,31 +131556,31 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5549 + 5708 ], "corr": [ - 5550 + 5709 ], "count": [ - 5552 + 5711 ], "covar_samp": [ - 5553 + 5712 ], "max": [ - 5555 + 5714 ], "min": [ - 5556 + 5715 ], "stddev_samp": [ - 5557 + 5716 ], "sum": [ - 5558 + 5717 ], "var_samp": [ - 5559 + 5718 ], "__typename": [ 78 @@ -128661,16 +131588,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5573 + 5732 ], "distinct": [ 3 ], "filter": [ - 5565 + 5724 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -128678,16 +131605,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5551 + 5710 ], "distinct": [ 3 ], "filter": [ - 5565 + 5724 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -128695,10 +131622,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5574 + 5733 ], "Y": [ - 5574 + 5733 ], "__typename": [ 78 @@ -128706,13 +131633,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5572 + 5731 ], "distinct": [ 3 ], "filter": [ - 5565 + 5724 ], "predicate": [ 39 @@ -128723,16 +131650,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5554 + 5713 ], "distinct": [ 3 ], "filter": [ - 5565 + 5724 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -128740,10 +131667,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5575 + 5734 ], "Y": [ - 5575 + 5734 ], "__typename": [ 78 @@ -128751,16 +131678,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 5576 + 5735 ], "distinct": [ 3 ], "filter": [ - 5565 + 5724 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -128768,16 +131695,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 5577 + 5736 ], "distinct": [ 3 ], "filter": [ - 5565 + 5724 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -128785,16 +131712,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5578 + 5737 ], "distinct": [ 3 ], "filter": [ - 5565 + 5724 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -128802,16 +131729,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 5579 + 5738 ], "distinct": [ 3 ], "filter": [ - 5565 + 5724 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -128819,16 +131746,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5580 + 5739 ], "distinct": [ 3 ], "filter": [ - 5565 + 5724 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -128836,13 +131763,13 @@ export default { }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5563 + 5722 ], "count": [ 38, { "columns": [ - 5572, + 5731, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -128851,31 +131778,31 @@ export default { } ], "max": [ - 5567 + 5726 ], "min": [ - 5569 + 5728 ], "stddev": [ - 5581 + 5740 ], "stddev_pop": [ - 5583 + 5742 ], "stddev_samp": [ - 5585 + 5744 ], "sum": [ - 5589 + 5748 ], "var_pop": [ - 5591 + 5750 ], "var_samp": [ - 5593 + 5752 ], "variance": [ - 5595 + 5754 ], "__typename": [ 78 @@ -128883,37 +131810,37 @@ export default { }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5564 + 5723 ], "count": [ - 2781 + 2829 ], "max": [ - 5568 + 5727 ], "min": [ - 5570 + 5729 ], "stddev": [ - 5582 + 5741 ], "stddev_pop": [ - 5584 + 5743 ], "stddev_samp": [ - 5586 + 5745 ], "sum": [ - 5590 + 5749 ], "var_pop": [ - 5592 + 5751 ], "var_samp": [ - 5594 + 5753 ], "variance": [ - 5596 + 5755 ], "__typename": [ 78 @@ -128921,7 +131848,7 @@ export default { }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5566 + 5725 ], "__typename": [ 78 @@ -128973,43 +131900,43 @@ export default { }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -129017,13 +131944,13 @@ export default { }, "v_team_tournament_results_bool_exp": { "_and": [ - 5565 + 5724 ], "_not": [ - 5565 + 5724 ], "_or": [ - 5565 + 5724 ], "head_to_head_match_wins": [ 39 @@ -129053,10 +131980,10 @@ export default { 39 ], "team": [ - 4596 + 4737 ], "team_kdr": [ - 1500 + 1548 ], "total_deaths": [ 39 @@ -129065,13 +131992,13 @@ export default { 39 ], "tournament": [ - 4727 + 4878 ], "tournament_id": [ - 4764 + 4923 ], "tournament_team_id": [ - 4764 + 4923 ], "wins": [ 39 @@ -129109,10 +132036,10 @@ export default { 38 ], "team": [ - 4605 + 4746 ], "team_kdr": [ - 1499 + 1547 ], "total_deaths": [ 38 @@ -129121,13 +132048,13 @@ export default { 38 ], "tournament": [ - 4736 + 4887 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -129165,7 +132092,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1547 ], "total_deaths": [ 38 @@ -129174,10 +132101,10 @@ export default { 38 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -129188,49 +132115,49 @@ export default { }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -129265,7 +132192,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1547 ], "total_deaths": [ 38 @@ -129274,10 +132201,10 @@ export default { 38 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -129288,49 +132215,49 @@ export default { }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -129338,55 +132265,55 @@ export default { }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team": [ - 4607 + 4748 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "tournament": [ - 4738 + 4889 ], "tournament_id": [ - 2781 + 2829 ], "tournament_team_id": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -129447,43 +132374,43 @@ export default { }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -129535,43 +132462,43 @@ export default { }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -129623,43 +132550,43 @@ export default { }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -129667,7 +132594,7 @@ export default { }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 5588 + 5747 ], "ordering": [ 236 @@ -129705,7 +132632,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1547 ], "total_deaths": [ 38 @@ -129714,10 +132641,10 @@ export default { 38 ], "tournament_id": [ - 4762 + 4921 ], "tournament_team_id": [ - 4762 + 4921 ], "wins": [ 38 @@ -129755,7 +132682,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1547 ], "total_deaths": [ 38 @@ -129772,43 +132699,43 @@ export default { }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -129860,43 +132787,43 @@ export default { }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -129948,43 +132875,43 @@ export default { }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -130036,43 +132963,43 @@ export default { }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 2781 + 2829 ], "head_to_head_rounds_won": [ - 2781 + 2829 ], "losses": [ - 2781 + 2829 ], "maps_lost": [ - 2781 + 2829 ], "maps_won": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "matches_remaining": [ - 2781 + 2829 ], "rounds_lost": [ - 2781 + 2829 ], "rounds_won": [ - 2781 + 2829 ], "team_kdr": [ - 2781 + 2829 ], "total_deaths": [ - 2781 + 2829 ], "total_kills": [ - 2781 + 2829 ], "wins": [ - 2781 + 2829 ], "__typename": [ 78 @@ -130086,13 +133013,13 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 @@ -130101,16 +133028,16 @@ export default { 38 ], "player": [ - 3739 + 3787 ], "player_steam_id": [ 180 ], "tournament": [ - 4716 + 4857 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -130118,10 +133045,10 @@ export default { }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 5611 + 5770 ], "nodes": [ - 5597 + 5756 ], "__typename": [ 78 @@ -130129,31 +133056,31 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 5600 + 5759 ], "corr": [ - 5601 + 5760 ], "count": [ - 5603 + 5762 ], "covar_samp": [ - 5604 + 5763 ], "max": [ - 5606 + 5765 ], "min": [ - 5607 + 5766 ], "stddev_samp": [ - 5608 + 5767 ], "sum": [ - 5609 + 5768 ], "var_samp": [ - 5610 + 5769 ], "__typename": [ 78 @@ -130161,16 +133088,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5624 + 5783 ], "distinct": [ 3 ], "filter": [ - 5616 + 5775 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -130178,16 +133105,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5602 + 5761 ], "distinct": [ 3 ], "filter": [ - 5616 + 5775 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -130195,10 +133122,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5625 + 5784 ], "Y": [ - 5625 + 5784 ], "__typename": [ 78 @@ -130206,13 +133133,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5623 + 5782 ], "distinct": [ 3 ], "filter": [ - 5616 + 5775 ], "predicate": [ 39 @@ -130223,16 +133150,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5605 + 5764 ], "distinct": [ 3 ], "filter": [ - 5616 + 5775 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -130240,10 +133167,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5626 + 5785 ], "Y": [ - 5626 + 5785 ], "__typename": [ 78 @@ -130251,16 +133178,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5627 + 5786 ], "distinct": [ 3 ], "filter": [ - 5616 + 5775 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -130268,16 +133195,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5628 + 5787 ], "distinct": [ 3 ], "filter": [ - 5616 + 5775 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -130285,16 +133212,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5629 + 5788 ], "distinct": [ 3 ], "filter": [ - 5616 + 5775 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -130302,16 +133229,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5630 + 5789 ], "distinct": [ 3 ], "filter": [ - 5616 + 5775 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -130319,16 +133246,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5631 + 5790 ], "distinct": [ 3 ], "filter": [ - 5616 + 5775 ], "predicate": [ - 1500 + 1548 ], "__typename": [ 78 @@ -130336,13 +133263,13 @@ export default { }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 5614 + 5773 ], "count": [ 38, { "columns": [ - 5623, + 5782, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -130351,31 +133278,31 @@ export default { } ], "max": [ - 5618 + 5777 ], "min": [ - 5620 + 5779 ], "stddev": [ - 5632 + 5791 ], "stddev_pop": [ - 5634 + 5793 ], "stddev_samp": [ - 5636 + 5795 ], "sum": [ - 5640 + 5799 ], "var_pop": [ - 5642 + 5801 ], "var_samp": [ - 5644 + 5803 ], "variance": [ - 5646 + 5805 ], "__typename": [ 78 @@ -130383,37 +133310,37 @@ export default { }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 5615 + 5774 ], "count": [ - 2781 + 2829 ], "max": [ - 5619 + 5778 ], "min": [ - 5621 + 5780 ], "stddev": [ - 5633 + 5792 ], "stddev_pop": [ - 5635 + 5794 ], "stddev_samp": [ - 5637 + 5796 ], "sum": [ - 5641 + 5800 ], "var_pop": [ - 5643 + 5802 ], "var_samp": [ - 5645 + 5804 ], "variance": [ - 5647 + 5806 ], "__typename": [ 78 @@ -130421,7 +133348,7 @@ export default { }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 5617 + 5776 ], "__typename": [ 78 @@ -130458,28 +133385,28 @@ export default { }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -130487,13 +133414,13 @@ export default { }, "v_tournament_player_stats_bool_exp": { "_and": [ - 5616 + 5775 ], "_not": [ - 5616 + 5775 ], "_or": [ - 5616 + 5775 ], "assists": [ 39 @@ -130502,13 +133429,13 @@ export default { 39 ], "headshot_percentage": [ - 1500 + 1548 ], "headshots": [ 39 ], "kdr": [ - 1500 + 1548 ], "kills": [ 39 @@ -130517,16 +133444,16 @@ export default { 39 ], "player": [ - 3743 + 3791 ], "player_steam_id": [ 182 ], "tournament": [ - 4727 + 4878 ], "tournament_id": [ - 4764 + 4923 ], "__typename": [ 78 @@ -130540,13 +133467,13 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 @@ -130555,16 +133482,16 @@ export default { 38 ], "player": [ - 3750 + 3798 ], "player_steam_id": [ 180 ], "tournament": [ - 4736 + 4887 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -130578,13 +133505,13 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 @@ -130596,7 +133523,7 @@ export default { 180 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -130604,31 +133531,31 @@ export default { }, "v_tournament_player_stats_max_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -130642,13 +133569,13 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 @@ -130660,7 +133587,7 @@ export default { 180 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -130668,31 +133595,31 @@ export default { }, "v_tournament_player_stats_min_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -130700,37 +133627,37 @@ export default { }, "v_tournament_player_stats_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player": [ - 3752 + 3800 ], "player_steam_id": [ - 2781 + 2829 ], "tournament": [ - 4738 + 4889 ], "tournament_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -130776,28 +133703,28 @@ export default { }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -130834,28 +133761,28 @@ export default { }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -130892,28 +133819,28 @@ export default { }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -130921,7 +133848,7 @@ export default { }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 5639 + 5798 ], "ordering": [ 236 @@ -130938,13 +133865,13 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 @@ -130956,7 +133883,7 @@ export default { 180 ], "tournament_id": [ - 4762 + 4921 ], "__typename": [ 78 @@ -130970,13 +133897,13 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1547 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1547 ], "kills": [ 38 @@ -130993,28 +133920,28 @@ export default { }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -131051,28 +133978,28 @@ export default { }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -131109,28 +134036,28 @@ export default { }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -131167,28 +134094,28 @@ export default { }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 2781 + 2829 ], "deaths": [ - 2781 + 2829 ], "headshot_percentage": [ - 2781 + 2829 ], "headshots": [ - 2781 + 2829 ], "kdr": [ - 2781 + 2829 ], "kills": [ - 2781 + 2829 ], "matches_played": [ - 2781 + 2829 ], "player_steam_id": [ - 2781 + 2829 ], "__typename": [ 78 @@ -131243,11 +134170,11 @@ export default { 92, { "map_id": [ - 4762, + 4921, "uuid!" ], "map_pool_id": [ - 4762, + 4921, "uuid!" ] } @@ -131300,7 +134227,7 @@ export default { 111, { "id": [ - 4762, + 4921, "uuid!" ] } @@ -131353,7 +134280,7 @@ export default { 152, { "id": [ - 4762, + 4921, "uuid!" ] } @@ -131406,7 +134333,60 @@ export default { 185, { "id": [ - 4762, + 4921, + "uuid!" + ] + } + ], + "custom_pages": [ + 237, + { + "distinct_on": [ + 251, + "[custom_pages_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 249, + "[custom_pages_order_by!]" + ], + "where": [ + 241 + ] + } + ], + "custom_pages_aggregate": [ + 238, + { + "distinct_on": [ + 251, + "[custom_pages_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 249, + "[custom_pages_order_by!]" + ], + "where": [ + 241 + ] + } + ], + "custom_pages_by_pk": [ + 237, + { + "id": [ + 4921, "uuid!" ] } @@ -131415,10 +134395,10 @@ export default { 17 ], "db_backups": [ - 237, + 264, { "distinct_on": [ - 251, + 278, "[db_backups_select_column!]" ], "limit": [ @@ -131428,19 +134408,19 @@ export default { 38 ], "order_by": [ - 249, + 276, "[db_backups_order_by!]" ], "where": [ - 241 + 268 ] } ], "db_backups_aggregate": [ - 238, + 265, { "distinct_on": [ - 251, + 278, "[db_backups_select_column!]" ], "limit": [ @@ -131450,28 +134430,28 @@ export default { 38 ], "order_by": [ - 249, + 276, "[db_backups_order_by!]" ], "where": [ - 241 + 268 ] } ], "db_backups_by_pk": [ - 237, + 264, { "id": [ - 4762, + 4921, "uuid!" ] } ], "draft_game_picks": [ - 264, + 291, { "distinct_on": [ - 287, + 314, "[draft_game_picks_select_column!]" ], "limit": [ @@ -131481,19 +134461,19 @@ export default { 38 ], "order_by": [ - 285, + 312, "[draft_game_picks_order_by!]" ], "where": [ - 275 + 302 ] } ], "draft_game_picks_aggregate": [ - 265, + 292, { "distinct_on": [ - 287, + 314, "[draft_game_picks_select_column!]" ], "limit": [ @@ -131503,28 +134483,28 @@ export default { 38 ], "order_by": [ - 285, + 312, "[draft_game_picks_order_by!]" ], "where": [ - 275 + 302 ] } ], "draft_game_picks_by_pk": [ - 264, + 291, { "id": [ - 4762, + 4921, "uuid!" ] } ], "draft_game_players": [ - 309, + 336, { "distinct_on": [ - 332, + 359, "[draft_game_players_select_column!]" ], "limit": [ @@ -131534,19 +134514,19 @@ export default { 38 ], "order_by": [ - 330, + 357, "[draft_game_players_order_by!]" ], "where": [ - 320 + 347 ] } ], "draft_game_players_aggregate": [ - 310, + 337, { "distinct_on": [ - 332, + 359, "[draft_game_players_select_column!]" ], "limit": [ @@ -131556,19 +134536,19 @@ export default { 38 ], "order_by": [ - 330, + 357, "[draft_game_players_order_by!]" ], "where": [ - 320 + 347 ] } ], "draft_game_players_by_pk": [ - 309, + 336, { "draft_game_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -131578,10 +134558,10 @@ export default { } ], "draft_games": [ - 354, + 381, { "distinct_on": [ - 378, + 405, "[draft_games_select_column!]" ], "limit": [ @@ -131591,19 +134571,19 @@ export default { 38 ], "order_by": [ - 376, + 403, "[draft_games_order_by!]" ], "where": [ - 365 + 392 ] } ], "draft_games_aggregate": [ - 355, + 382, { "distinct_on": [ - 378, + 405, "[draft_games_select_column!]" ], "limit": [ @@ -131613,28 +134593,28 @@ export default { 38 ], "order_by": [ - 376, + 403, "[draft_games_order_by!]" ], "where": [ - 365 + 392 ] } ], "draft_games_by_pk": [ - 354, + 381, { "id": [ - 4762, + 4921, "uuid!" ] } ], "e_check_in_settings": [ - 400, + 427, { "distinct_on": [ - 414, + 441, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -131644,19 +134624,19 @@ export default { 38 ], "order_by": [ - 412, + 439, "[e_check_in_settings_order_by!]" ], "where": [ - 403 + 430 ] } ], "e_check_in_settings_aggregate": [ - 401, + 428, { "distinct_on": [ - 414, + 441, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -131666,16 +134646,16 @@ export default { 38 ], "order_by": [ - 412, + 439, "[e_check_in_settings_order_by!]" ], "where": [ - 403 + 430 ] } ], "e_check_in_settings_by_pk": [ - 400, + 427, { "value": [ 78, @@ -131684,10 +134664,10 @@ export default { } ], "e_draft_game_captain_selection": [ - 420, + 447, { "distinct_on": [ - 435, + 462, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -131697,19 +134677,19 @@ export default { 38 ], "order_by": [ - 433, + 460, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 423 + 450 ] } ], "e_draft_game_captain_selection_aggregate": [ - 421, + 448, { "distinct_on": [ - 435, + 462, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -131719,16 +134699,16 @@ export default { 38 ], "order_by": [ - 433, + 460, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 423 + 450 ] } ], "e_draft_game_captain_selection_by_pk": [ - 420, + 447, { "value": [ 78, @@ -131737,10 +134717,10 @@ export default { } ], "e_draft_game_draft_order": [ - 441, + 468, { "distinct_on": [ - 456, + 483, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -131750,19 +134730,19 @@ export default { 38 ], "order_by": [ - 454, + 481, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 444 + 471 ] } ], "e_draft_game_draft_order_aggregate": [ - 442, + 469, { "distinct_on": [ - 456, + 483, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -131772,16 +134752,16 @@ export default { 38 ], "order_by": [ - 454, + 481, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 444 + 471 ] } ], "e_draft_game_draft_order_by_pk": [ - 441, + 468, { "value": [ 78, @@ -131790,10 +134770,10 @@ export default { } ], "e_draft_game_mode": [ - 462, + 489, { "distinct_on": [ - 477, + 504, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -131803,19 +134783,19 @@ export default { 38 ], "order_by": [ - 475, + 502, "[e_draft_game_mode_order_by!]" ], "where": [ - 465 + 492 ] } ], "e_draft_game_mode_aggregate": [ - 463, + 490, { "distinct_on": [ - 477, + 504, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -131825,16 +134805,16 @@ export default { 38 ], "order_by": [ - 475, + 502, "[e_draft_game_mode_order_by!]" ], "where": [ - 465 + 492 ] } ], "e_draft_game_mode_by_pk": [ - 462, + 489, { "value": [ 78, @@ -131843,10 +134823,10 @@ export default { } ], "e_draft_game_player_status": [ - 483, + 510, { "distinct_on": [ - 498, + 525, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -131856,19 +134836,19 @@ export default { 38 ], "order_by": [ - 496, + 523, "[e_draft_game_player_status_order_by!]" ], "where": [ - 486 + 513 ] } ], "e_draft_game_player_status_aggregate": [ - 484, + 511, { "distinct_on": [ - 498, + 525, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -131878,16 +134858,16 @@ export default { 38 ], "order_by": [ - 496, + 523, "[e_draft_game_player_status_order_by!]" ], "where": [ - 486 + 513 ] } ], "e_draft_game_player_status_by_pk": [ - 483, + 510, { "value": [ 78, @@ -131896,10 +134876,10 @@ export default { } ], "e_draft_game_status": [ - 504, + 531, { "distinct_on": [ - 519, + 546, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -131909,19 +134889,19 @@ export default { 38 ], "order_by": [ - 517, + 544, "[e_draft_game_status_order_by!]" ], "where": [ - 507 + 534 ] } ], "e_draft_game_status_aggregate": [ - 505, + 532, { "distinct_on": [ - 519, + 546, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -131931,16 +134911,16 @@ export default { 38 ], "order_by": [ - 517, + 544, "[e_draft_game_status_order_by!]" ], "where": [ - 507 + 534 ] } ], "e_draft_game_status_by_pk": [ - 504, + 531, { "value": [ 78, @@ -131949,10 +134929,10 @@ export default { } ], "e_event_media_access": [ - 525, + 552, { "distinct_on": [ - 539, + 566, "[e_event_media_access_select_column!]" ], "limit": [ @@ -131962,19 +134942,19 @@ export default { 38 ], "order_by": [ - 537, + 564, "[e_event_media_access_order_by!]" ], "where": [ - 528 + 555 ] } ], "e_event_media_access_aggregate": [ - 526, + 553, { "distinct_on": [ - 539, + 566, "[e_event_media_access_select_column!]" ], "limit": [ @@ -131984,16 +134964,16 @@ export default { 38 ], "order_by": [ - 537, + 564, "[e_event_media_access_order_by!]" ], "where": [ - 528 + 555 ] } ], "e_event_media_access_by_pk": [ - 525, + 552, { "value": [ 78, @@ -132002,10 +134982,10 @@ export default { } ], "e_event_visibility": [ - 545, + 572, { "distinct_on": [ - 559, + 586, "[e_event_visibility_select_column!]" ], "limit": [ @@ -132015,19 +134995,19 @@ export default { 38 ], "order_by": [ - 557, + 584, "[e_event_visibility_order_by!]" ], "where": [ - 548 + 575 ] } ], "e_event_visibility_aggregate": [ - 546, + 573, { "distinct_on": [ - 559, + 586, "[e_event_visibility_select_column!]" ], "limit": [ @@ -132037,16 +135017,16 @@ export default { 38 ], "order_by": [ - 557, + 584, "[e_event_visibility_order_by!]" ], "where": [ - 548 + 575 ] } ], "e_event_visibility_by_pk": [ - 545, + 572, { "value": [ 78, @@ -132055,10 +135035,10 @@ export default { } ], "e_friend_status": [ - 565, + 592, { "distinct_on": [ - 580, + 607, "[e_friend_status_select_column!]" ], "limit": [ @@ -132068,19 +135048,19 @@ export default { 38 ], "order_by": [ - 578, + 605, "[e_friend_status_order_by!]" ], "where": [ - 568 + 595 ] } ], "e_friend_status_aggregate": [ - 566, + 593, { "distinct_on": [ - 580, + 607, "[e_friend_status_select_column!]" ], "limit": [ @@ -132090,16 +135070,16 @@ export default { 38 ], "order_by": [ - 578, + 605, "[e_friend_status_order_by!]" ], "where": [ - 568 + 595 ] } ], "e_friend_status_by_pk": [ - 565, + 592, { "value": [ 78, @@ -132108,10 +135088,10 @@ export default { } ], "e_game_cfg_types": [ - 586, + 613, { "distinct_on": [ - 600, + 627, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -132121,19 +135101,19 @@ export default { 38 ], "order_by": [ - 598, + 625, "[e_game_cfg_types_order_by!]" ], "where": [ - 589 + 616 ] } ], "e_game_cfg_types_aggregate": [ - 587, + 614, { "distinct_on": [ - 600, + 627, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -132143,16 +135123,16 @@ export default { 38 ], "order_by": [ - 598, + 625, "[e_game_cfg_types_order_by!]" ], "where": [ - 589 + 616 ] } ], "e_game_cfg_types_by_pk": [ - 586, + 613, { "value": [ 78, @@ -132161,10 +135141,10 @@ export default { } ], "e_game_server_node_statuses": [ - 606, + 633, { "distinct_on": [ - 621, + 648, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -132174,19 +135154,19 @@ export default { 38 ], "order_by": [ - 619, + 646, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 609 + 636 ] } ], "e_game_server_node_statuses_aggregate": [ - 607, + 634, { "distinct_on": [ - 621, + 648, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -132196,16 +135176,16 @@ export default { 38 ], "order_by": [ - 619, + 646, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 609 + 636 ] } ], "e_game_server_node_statuses_by_pk": [ - 606, + 633, { "value": [ 78, @@ -132214,10 +135194,10 @@ export default { } ], "e_league_movement_types": [ - 627, + 654, { "distinct_on": [ - 642, + 669, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -132227,19 +135207,19 @@ export default { 38 ], "order_by": [ - 640, + 667, "[e_league_movement_types_order_by!]" ], "where": [ - 630 + 657 ] } ], "e_league_movement_types_aggregate": [ - 628, + 655, { "distinct_on": [ - 642, + 669, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -132249,16 +135229,16 @@ export default { 38 ], "order_by": [ - 640, + 667, "[e_league_movement_types_order_by!]" ], "where": [ - 630 + 657 ] } ], "e_league_movement_types_by_pk": [ - 627, + 654, { "value": [ 78, @@ -132267,10 +135247,10 @@ export default { } ], "e_league_proposal_statuses": [ - 648, + 675, { "distinct_on": [ - 663, + 690, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -132280,19 +135260,19 @@ export default { 38 ], "order_by": [ - 661, + 688, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 651 + 678 ] } ], "e_league_proposal_statuses_aggregate": [ - 649, + 676, { "distinct_on": [ - 663, + 690, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -132302,16 +135282,16 @@ export default { 38 ], "order_by": [ - 661, + 688, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 651 + 678 ] } ], "e_league_proposal_statuses_by_pk": [ - 648, + 675, { "value": [ 78, @@ -132320,10 +135300,10 @@ export default { } ], "e_league_registration_statuses": [ - 669, + 696, { "distinct_on": [ - 684, + 711, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -132333,19 +135313,19 @@ export default { 38 ], "order_by": [ - 682, + 709, "[e_league_registration_statuses_order_by!]" ], "where": [ - 672 + 699 ] } ], "e_league_registration_statuses_aggregate": [ - 670, + 697, { "distinct_on": [ - 684, + 711, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -132355,16 +135335,16 @@ export default { 38 ], "order_by": [ - 682, + 709, "[e_league_registration_statuses_order_by!]" ], "where": [ - 672 + 699 ] } ], "e_league_registration_statuses_by_pk": [ - 669, + 696, { "value": [ 78, @@ -132373,10 +135353,10 @@ export default { } ], "e_league_season_statuses": [ - 690, + 717, { "distinct_on": [ - 705, + 732, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -132386,19 +135366,19 @@ export default { 38 ], "order_by": [ - 703, + 730, "[e_league_season_statuses_order_by!]" ], "where": [ - 693 + 720 ] } ], "e_league_season_statuses_aggregate": [ - 691, + 718, { "distinct_on": [ - 705, + 732, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -132408,16 +135388,16 @@ export default { 38 ], "order_by": [ - 703, + 730, "[e_league_season_statuses_order_by!]" ], "where": [ - 693 + 720 ] } ], "e_league_season_statuses_by_pk": [ - 690, + 717, { "value": [ 78, @@ -132426,10 +135406,10 @@ export default { } ], "e_lobby_access": [ - 711, + 738, { "distinct_on": [ - 726, + 753, "[e_lobby_access_select_column!]" ], "limit": [ @@ -132439,19 +135419,19 @@ export default { 38 ], "order_by": [ - 724, + 751, "[e_lobby_access_order_by!]" ], "where": [ - 714 + 741 ] } ], "e_lobby_access_aggregate": [ - 712, + 739, { "distinct_on": [ - 726, + 753, "[e_lobby_access_select_column!]" ], "limit": [ @@ -132461,16 +135441,16 @@ export default { 38 ], "order_by": [ - 724, + 751, "[e_lobby_access_order_by!]" ], "where": [ - 714 + 741 ] } ], "e_lobby_access_by_pk": [ - 711, + 738, { "value": [ 78, @@ -132479,10 +135459,10 @@ export default { } ], "e_lobby_player_status": [ - 732, + 759, { "distinct_on": [ - 746, + 773, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -132492,19 +135472,19 @@ export default { 38 ], "order_by": [ - 744, + 771, "[e_lobby_player_status_order_by!]" ], "where": [ - 735 + 762 ] } ], "e_lobby_player_status_aggregate": [ - 733, + 760, { "distinct_on": [ - 746, + 773, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -132514,16 +135494,16 @@ export default { 38 ], "order_by": [ - 744, + 771, "[e_lobby_player_status_order_by!]" ], "where": [ - 735 + 762 ] } ], "e_lobby_player_status_by_pk": [ - 732, + 759, { "value": [ 78, @@ -132532,10 +135512,10 @@ export default { } ], "e_map_pool_types": [ - 752, + 779, { "distinct_on": [ - 767, + 794, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -132545,19 +135525,19 @@ export default { 38 ], "order_by": [ - 765, + 792, "[e_map_pool_types_order_by!]" ], "where": [ - 755 + 782 ] } ], "e_map_pool_types_aggregate": [ - 753, + 780, { "distinct_on": [ - 767, + 794, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -132567,16 +135547,16 @@ export default { 38 ], "order_by": [ - 765, + 792, "[e_map_pool_types_order_by!]" ], "where": [ - 755 + 782 ] } ], "e_map_pool_types_by_pk": [ - 752, + 779, { "value": [ 78, @@ -132585,10 +135565,10 @@ export default { } ], "e_match_clip_visibility": [ - 773, + 800, { "distinct_on": [ - 787, + 814, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -132598,19 +135578,19 @@ export default { 38 ], "order_by": [ - 785, + 812, "[e_match_clip_visibility_order_by!]" ], "where": [ - 776 + 803 ] } ], "e_match_clip_visibility_aggregate": [ - 774, + 801, { "distinct_on": [ - 787, + 814, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -132620,16 +135600,16 @@ export default { 38 ], "order_by": [ - 785, + 812, "[e_match_clip_visibility_order_by!]" ], "where": [ - 776 + 803 ] } ], "e_match_clip_visibility_by_pk": [ - 773, + 800, { "value": [ 78, @@ -132638,10 +135618,10 @@ export default { } ], "e_match_map_status": [ - 793, + 820, { "distinct_on": [ - 808, + 835, "[e_match_map_status_select_column!]" ], "limit": [ @@ -132651,19 +135631,19 @@ export default { 38 ], "order_by": [ - 806, + 833, "[e_match_map_status_order_by!]" ], "where": [ - 796 + 823 ] } ], "e_match_map_status_aggregate": [ - 794, + 821, { "distinct_on": [ - 808, + 835, "[e_match_map_status_select_column!]" ], "limit": [ @@ -132673,16 +135653,16 @@ export default { 38 ], "order_by": [ - 806, + 833, "[e_match_map_status_order_by!]" ], "where": [ - 796 + 823 ] } ], "e_match_map_status_by_pk": [ - 793, + 820, { "value": [ 78, @@ -132691,10 +135671,10 @@ export default { } ], "e_match_mode": [ - 814, + 841, { "distinct_on": [ - 828, + 855, "[e_match_mode_select_column!]" ], "limit": [ @@ -132704,19 +135684,19 @@ export default { 38 ], "order_by": [ - 826, + 853, "[e_match_mode_order_by!]" ], "where": [ - 817 + 844 ] } ], "e_match_mode_aggregate": [ - 815, + 842, { "distinct_on": [ - 828, + 855, "[e_match_mode_select_column!]" ], "limit": [ @@ -132726,16 +135706,16 @@ export default { 38 ], "order_by": [ - 826, + 853, "[e_match_mode_order_by!]" ], "where": [ - 817 + 844 ] } ], "e_match_mode_by_pk": [ - 814, + 841, { "value": [ 78, @@ -132744,10 +135724,10 @@ export default { } ], "e_match_status": [ - 834, + 861, { "distinct_on": [ - 849, + 876, "[e_match_status_select_column!]" ], "limit": [ @@ -132757,19 +135737,19 @@ export default { 38 ], "order_by": [ - 847, + 874, "[e_match_status_order_by!]" ], "where": [ - 837 + 864 ] } ], "e_match_status_aggregate": [ - 835, + 862, { "distinct_on": [ - 849, + 876, "[e_match_status_select_column!]" ], "limit": [ @@ -132779,16 +135759,16 @@ export default { 38 ], "order_by": [ - 847, + 874, "[e_match_status_order_by!]" ], "where": [ - 837 + 864 ] } ], "e_match_status_by_pk": [ - 834, + 861, { "value": [ 78, @@ -132797,10 +135777,10 @@ export default { } ], "e_match_types": [ - 855, + 882, { "distinct_on": [ - 870, + 897, "[e_match_types_select_column!]" ], "limit": [ @@ -132810,19 +135790,19 @@ export default { 38 ], "order_by": [ - 868, + 895, "[e_match_types_order_by!]" ], "where": [ - 858 + 885 ] } ], "e_match_types_aggregate": [ - 856, + 883, { "distinct_on": [ - 870, + 897, "[e_match_types_select_column!]" ], "limit": [ @@ -132832,16 +135812,16 @@ export default { 38 ], "order_by": [ - 868, + 895, "[e_match_types_order_by!]" ], "where": [ - 858 + 885 ] } ], "e_match_types_by_pk": [ - 855, + 882, { "value": [ 78, @@ -132850,10 +135830,10 @@ export default { } ], "e_notification_types": [ - 876, + 903, { "distinct_on": [ - 890, + 917, "[e_notification_types_select_column!]" ], "limit": [ @@ -132863,19 +135843,19 @@ export default { 38 ], "order_by": [ - 888, + 915, "[e_notification_types_order_by!]" ], "where": [ - 879 + 906 ] } ], "e_notification_types_aggregate": [ - 877, + 904, { "distinct_on": [ - 890, + 917, "[e_notification_types_select_column!]" ], "limit": [ @@ -132885,16 +135865,16 @@ export default { 38 ], "order_by": [ - 888, + 915, "[e_notification_types_order_by!]" ], "where": [ - 879 + 906 ] } ], "e_notification_types_by_pk": [ - 876, + 903, { "value": [ 78, @@ -132903,10 +135883,10 @@ export default { } ], "e_objective_types": [ - 896, + 923, { "distinct_on": [ - 910, + 937, "[e_objective_types_select_column!]" ], "limit": [ @@ -132916,19 +135896,19 @@ export default { 38 ], "order_by": [ - 908, + 935, "[e_objective_types_order_by!]" ], "where": [ - 899 + 926 ] } ], "e_objective_types_aggregate": [ - 897, + 924, { "distinct_on": [ - 910, + 937, "[e_objective_types_select_column!]" ], "limit": [ @@ -132938,16 +135918,16 @@ export default { 38 ], "order_by": [ - 908, + 935, "[e_objective_types_order_by!]" ], "where": [ - 899 + 926 ] } ], "e_objective_types_by_pk": [ - 896, + 923, { "value": [ 78, @@ -132956,10 +135936,10 @@ export default { } ], "e_player_roles": [ - 916, + 943, { "distinct_on": [ - 930, + 957, "[e_player_roles_select_column!]" ], "limit": [ @@ -132969,19 +135949,19 @@ export default { 38 ], "order_by": [ - 928, + 955, "[e_player_roles_order_by!]" ], "where": [ - 919 + 946 ] } ], "e_player_roles_aggregate": [ - 917, + 944, { "distinct_on": [ - 930, + 957, "[e_player_roles_select_column!]" ], "limit": [ @@ -132991,16 +135971,16 @@ export default { 38 ], "order_by": [ - 928, + 955, "[e_player_roles_order_by!]" ], "where": [ - 919 + 946 ] } ], "e_player_roles_by_pk": [ - 916, + 943, { "value": [ 78, @@ -133009,10 +135989,10 @@ export default { } ], "e_plugin_runtimes": [ - 936, + 963, { "distinct_on": [ - 950, + 977, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -133022,19 +136002,19 @@ export default { 38 ], "order_by": [ - 948, + 975, "[e_plugin_runtimes_order_by!]" ], "where": [ - 939 + 966 ] } ], "e_plugin_runtimes_aggregate": [ - 937, + 964, { "distinct_on": [ - 950, + 977, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -133044,16 +136024,16 @@ export default { 38 ], "order_by": [ - 948, + 975, "[e_plugin_runtimes_order_by!]" ], "where": [ - 939 + 966 ] } ], "e_plugin_runtimes_by_pk": [ - 936, + 963, { "value": [ 78, @@ -133062,10 +136042,10 @@ export default { } ], "e_ready_settings": [ - 956, + 983, { "distinct_on": [ - 970, + 997, "[e_ready_settings_select_column!]" ], "limit": [ @@ -133075,19 +136055,19 @@ export default { 38 ], "order_by": [ - 968, + 995, "[e_ready_settings_order_by!]" ], "where": [ - 959 + 986 ] } ], "e_ready_settings_aggregate": [ - 957, + 984, { "distinct_on": [ - 970, + 997, "[e_ready_settings_select_column!]" ], "limit": [ @@ -133097,16 +136077,16 @@ export default { 38 ], "order_by": [ - 968, + 995, "[e_ready_settings_order_by!]" ], "where": [ - 959 + 986 ] } ], "e_ready_settings_by_pk": [ - 956, + 983, { "value": [ 78, @@ -133115,10 +136095,10 @@ export default { } ], "e_sanction_types": [ - 976, + 1003, { "distinct_on": [ - 991, + 1018, "[e_sanction_types_select_column!]" ], "limit": [ @@ -133128,19 +136108,19 @@ export default { 38 ], "order_by": [ - 989, + 1016, "[e_sanction_types_order_by!]" ], "where": [ - 979 + 1006 ] } ], "e_sanction_types_aggregate": [ - 977, + 1004, { "distinct_on": [ - 991, + 1018, "[e_sanction_types_select_column!]" ], "limit": [ @@ -133150,16 +136130,16 @@ export default { 38 ], "order_by": [ - 989, + 1016, "[e_sanction_types_order_by!]" ], "where": [ - 979 + 1006 ] } ], "e_sanction_types_by_pk": [ - 976, + 1003, { "value": [ 78, @@ -133168,10 +136148,10 @@ export default { } ], "e_scrim_request_statuses": [ - 997, + 1024, { "distinct_on": [ - 1011, + 1038, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -133181,19 +136161,19 @@ export default { 38 ], "order_by": [ - 1009, + 1036, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1000 + 1027 ] } ], "e_scrim_request_statuses_aggregate": [ - 998, + 1025, { "distinct_on": [ - 1011, + 1038, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -133203,16 +136183,16 @@ export default { 38 ], "order_by": [ - 1009, + 1036, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1000 + 1027 ] } ], "e_scrim_request_statuses_by_pk": [ - 997, + 1024, { "value": [ 78, @@ -133221,10 +136201,10 @@ export default { } ], "e_server_types": [ - 1017, + 1044, { "distinct_on": [ - 1031, + 1058, "[e_server_types_select_column!]" ], "limit": [ @@ -133234,19 +136214,19 @@ export default { 38 ], "order_by": [ - 1029, + 1056, "[e_server_types_order_by!]" ], "where": [ - 1020 + 1047 ] } ], "e_server_types_aggregate": [ - 1018, + 1045, { "distinct_on": [ - 1031, + 1058, "[e_server_types_select_column!]" ], "limit": [ @@ -133256,16 +136236,16 @@ export default { 38 ], "order_by": [ - 1029, + 1056, "[e_server_types_order_by!]" ], "where": [ - 1020 + 1047 ] } ], "e_server_types_by_pk": [ - 1017, + 1044, { "value": [ 78, @@ -133274,10 +136254,10 @@ export default { } ], "e_sides": [ - 1037, + 1064, { "distinct_on": [ - 1051, + 1078, "[e_sides_select_column!]" ], "limit": [ @@ -133287,19 +136267,19 @@ export default { 38 ], "order_by": [ - 1049, + 1076, "[e_sides_order_by!]" ], "where": [ - 1040 + 1067 ] } ], "e_sides_aggregate": [ - 1038, + 1065, { "distinct_on": [ - 1051, + 1078, "[e_sides_select_column!]" ], "limit": [ @@ -133309,16 +136289,16 @@ export default { 38 ], "order_by": [ - 1049, + 1076, "[e_sides_order_by!]" ], "where": [ - 1040 + 1067 ] } ], "e_sides_by_pk": [ - 1037, + 1064, { "value": [ 78, @@ -133327,10 +136307,10 @@ export default { } ], "e_system_alert_types": [ - 1057, + 1084, { "distinct_on": [ - 1071, + 1098, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -133340,19 +136320,19 @@ export default { 38 ], "order_by": [ - 1069, + 1096, "[e_system_alert_types_order_by!]" ], "where": [ - 1060 + 1087 ] } ], "e_system_alert_types_aggregate": [ - 1058, + 1085, { "distinct_on": [ - 1071, + 1098, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -133362,16 +136342,16 @@ export default { 38 ], "order_by": [ - 1069, + 1096, "[e_system_alert_types_order_by!]" ], "where": [ - 1060 + 1087 ] } ], "e_system_alert_types_by_pk": [ - 1057, + 1084, { "value": [ 78, @@ -133380,10 +136360,10 @@ export default { } ], "e_team_roles": [ - 1077, + 1104, { "distinct_on": [ - 1092, + 1119, "[e_team_roles_select_column!]" ], "limit": [ @@ -133393,19 +136373,19 @@ export default { 38 ], "order_by": [ - 1090, + 1117, "[e_team_roles_order_by!]" ], "where": [ - 1080 + 1107 ] } ], "e_team_roles_aggregate": [ - 1078, + 1105, { "distinct_on": [ - 1092, + 1119, "[e_team_roles_select_column!]" ], "limit": [ @@ -133415,16 +136395,16 @@ export default { 38 ], "order_by": [ - 1090, + 1117, "[e_team_roles_order_by!]" ], "where": [ - 1080 + 1107 ] } ], "e_team_roles_by_pk": [ - 1077, + 1104, { "value": [ 78, @@ -133433,10 +136413,10 @@ export default { } ], "e_team_roster_statuses": [ - 1098, + 1125, { "distinct_on": [ - 1112, + 1139, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -133446,19 +136426,19 @@ export default { 38 ], "order_by": [ - 1110, + 1137, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1101 + 1128 ] } ], "e_team_roster_statuses_aggregate": [ - 1099, + 1126, { "distinct_on": [ - 1112, + 1139, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -133468,16 +136448,16 @@ export default { 38 ], "order_by": [ - 1110, + 1137, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1101 + 1128 ] } ], "e_team_roster_statuses_by_pk": [ - 1098, + 1125, { "value": [ 78, @@ -133486,10 +136466,10 @@ export default { } ], "e_timeout_settings": [ - 1118, + 1145, { "distinct_on": [ - 1132, + 1159, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -133499,19 +136479,19 @@ export default { 38 ], "order_by": [ - 1130, + 1157, "[e_timeout_settings_order_by!]" ], "where": [ - 1121 + 1148 ] } ], "e_timeout_settings_aggregate": [ - 1119, + 1146, { "distinct_on": [ - 1132, + 1159, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -133521,16 +136501,69 @@ export default { 38 ], "order_by": [ - 1130, + 1157, "[e_timeout_settings_order_by!]" ], "where": [ - 1121 + 1148 ] } ], "e_timeout_settings_by_pk": [ - 1118, + 1145, + { + "value": [ + 78, + "String!" + ] + } + ], + "e_tournament_categories": [ + 1165, + { + "distinct_on": [ + 1180, + "[e_tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1178, + "[e_tournament_categories_order_by!]" + ], + "where": [ + 1168 + ] + } + ], + "e_tournament_categories_aggregate": [ + 1166, + { + "distinct_on": [ + 1180, + "[e_tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1178, + "[e_tournament_categories_order_by!]" + ], + "where": [ + 1168 + ] + } + ], + "e_tournament_categories_by_pk": [ + 1165, { "value": [ 78, @@ -133539,10 +136572,10 @@ export default { } ], "e_tournament_stage_types": [ - 1138, + 1186, { "distinct_on": [ - 1153, + 1201, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -133552,19 +136585,19 @@ export default { 38 ], "order_by": [ - 1151, + 1199, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1141 + 1189 ] } ], "e_tournament_stage_types_aggregate": [ - 1139, + 1187, { "distinct_on": [ - 1153, + 1201, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -133574,16 +136607,16 @@ export default { 38 ], "order_by": [ - 1151, + 1199, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1141 + 1189 ] } ], "e_tournament_stage_types_by_pk": [ - 1138, + 1186, { "value": [ 78, @@ -133592,10 +136625,10 @@ export default { } ], "e_tournament_status": [ - 1159, + 1207, { "distinct_on": [ - 1174, + 1222, "[e_tournament_status_select_column!]" ], "limit": [ @@ -133605,19 +136638,19 @@ export default { 38 ], "order_by": [ - 1172, + 1220, "[e_tournament_status_order_by!]" ], "where": [ - 1162 + 1210 ] } ], "e_tournament_status_aggregate": [ - 1160, + 1208, { "distinct_on": [ - 1174, + 1222, "[e_tournament_status_select_column!]" ], "limit": [ @@ -133627,16 +136660,16 @@ export default { 38 ], "order_by": [ - 1172, + 1220, "[e_tournament_status_order_by!]" ], "where": [ - 1162 + 1210 ] } ], "e_tournament_status_by_pk": [ - 1159, + 1207, { "value": [ 78, @@ -133645,10 +136678,10 @@ export default { } ], "e_utility_types": [ - 1180, + 1228, { "distinct_on": [ - 1194, + 1242, "[e_utility_types_select_column!]" ], "limit": [ @@ -133658,19 +136691,19 @@ export default { 38 ], "order_by": [ - 1192, + 1240, "[e_utility_types_order_by!]" ], "where": [ - 1183 + 1231 ] } ], "e_utility_types_aggregate": [ - 1181, + 1229, { "distinct_on": [ - 1194, + 1242, "[e_utility_types_select_column!]" ], "limit": [ @@ -133680,16 +136713,16 @@ export default { 38 ], "order_by": [ - 1192, + 1240, "[e_utility_types_order_by!]" ], "where": [ - 1183 + 1231 ] } ], "e_utility_types_by_pk": [ - 1180, + 1228, { "value": [ 78, @@ -133698,10 +136731,10 @@ export default { } ], "e_veto_pick_types": [ - 1200, + 1248, { "distinct_on": [ - 1214, + 1262, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -133711,19 +136744,19 @@ export default { 38 ], "order_by": [ - 1212, + 1260, "[e_veto_pick_types_order_by!]" ], "where": [ - 1203 + 1251 ] } ], "e_veto_pick_types_aggregate": [ - 1201, + 1249, { "distinct_on": [ - 1214, + 1262, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -133733,16 +136766,16 @@ export default { 38 ], "order_by": [ - 1212, + 1260, "[e_veto_pick_types_order_by!]" ], "where": [ - 1203 + 1251 ] } ], "e_veto_pick_types_by_pk": [ - 1200, + 1248, { "value": [ 78, @@ -133751,10 +136784,10 @@ export default { } ], "e_winning_reasons": [ - 1220, + 1268, { "distinct_on": [ - 1234, + 1282, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -133764,19 +136797,19 @@ export default { 38 ], "order_by": [ - 1232, + 1280, "[e_winning_reasons_order_by!]" ], "where": [ - 1223 + 1271 ] } ], "e_winning_reasons_aggregate": [ - 1221, + 1269, { "distinct_on": [ - 1234, + 1282, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -133786,16 +136819,16 @@ export default { 38 ], "order_by": [ - 1232, + 1280, "[e_winning_reasons_order_by!]" ], "where": [ - 1223 + 1271 ] } ], "e_winning_reasons_by_pk": [ - 1220, + 1268, { "value": [ 78, @@ -133804,10 +136837,10 @@ export default { } ], "event_match_links": [ - 1240, + 1288, { "distinct_on": [ - 1252, + 1300, "[event_match_links_select_column!]" ], "limit": [ @@ -133817,19 +136850,19 @@ export default { 38 ], "order_by": [ - 1250, + 1298, "[event_match_links_order_by!]" ], "where": [ - 1243 + 1291 ] } ], "event_match_links_aggregate": [ - 1241, + 1289, { "distinct_on": [ - 1252, + 1300, "[event_match_links_select_column!]" ], "limit": [ @@ -133839,32 +136872,32 @@ export default { 38 ], "order_by": [ - 1250, + 1298, "[event_match_links_order_by!]" ], "where": [ - 1243 + 1291 ] } ], "event_match_links_by_pk": [ - 1240, + 1288, { "event_id": [ - 4762, + 4921, "uuid!" ], "match_id": [ - 4762, + 4921, "uuid!" ] } ], "event_media": [ - 1258, + 1306, { "distinct_on": [ - 1321, + 1369, "[event_media_select_column!]" ], "limit": [ @@ -133874,19 +136907,19 @@ export default { 38 ], "order_by": [ - 1278, + 1326, "[event_media_order_by!]" ], "where": [ - 1267 + 1315 ] } ], "event_media_aggregate": [ - 1259, + 1307, { "distinct_on": [ - 1321, + 1369, "[event_media_select_column!]" ], "limit": [ @@ -133896,28 +136929,28 @@ export default { 38 ], "order_by": [ - 1278, + 1326, "[event_media_order_by!]" ], "where": [ - 1267 + 1315 ] } ], "event_media_by_pk": [ - 1258, + 1306, { "id": [ - 4762, + 4921, "uuid!" ] } ], "event_media_players": [ - 1280, + 1328, { "distinct_on": [ - 1301, + 1349, "[event_media_players_select_column!]" ], "limit": [ @@ -133927,19 +136960,19 @@ export default { 38 ], "order_by": [ - 1299, + 1347, "[event_media_players_order_by!]" ], "where": [ - 1289 + 1337 ] } ], "event_media_players_aggregate": [ - 1281, + 1329, { "distinct_on": [ - 1301, + 1349, "[event_media_players_select_column!]" ], "limit": [ @@ -133949,19 +136982,19 @@ export default { 38 ], "order_by": [ - 1299, + 1347, "[event_media_players_order_by!]" ], "where": [ - 1289 + 1337 ] } ], "event_media_players_by_pk": [ - 1280, + 1328, { "media_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -133971,10 +137004,10 @@ export default { } ], "event_organizers": [ - 1341, + 1389, { "distinct_on": [ - 1362, + 1410, "[event_organizers_select_column!]" ], "limit": [ @@ -133984,19 +137017,19 @@ export default { 38 ], "order_by": [ - 1360, + 1408, "[event_organizers_order_by!]" ], "where": [ - 1350 + 1398 ] } ], "event_organizers_aggregate": [ - 1342, + 1390, { "distinct_on": [ - 1362, + 1410, "[event_organizers_select_column!]" ], "limit": [ @@ -134006,19 +137039,19 @@ export default { 38 ], "order_by": [ - 1360, + 1408, "[event_organizers_order_by!]" ], "where": [ - 1350 + 1398 ] } ], "event_organizers_by_pk": [ - 1341, + 1389, { "event_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -134028,10 +137061,10 @@ export default { } ], "event_players": [ - 1382, + 1430, { "distinct_on": [ - 1403, + 1451, "[event_players_select_column!]" ], "limit": [ @@ -134041,19 +137074,19 @@ export default { 38 ], "order_by": [ - 1401, + 1449, "[event_players_order_by!]" ], "where": [ - 1391 + 1439 ] } ], "event_players_aggregate": [ - 1383, + 1431, { "distinct_on": [ - 1403, + 1451, "[event_players_select_column!]" ], "limit": [ @@ -134063,19 +137096,19 @@ export default { 38 ], "order_by": [ - 1401, + 1449, "[event_players_order_by!]" ], "where": [ - 1391 + 1439 ] } ], "event_players_by_pk": [ - 1382, + 1430, { "event_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -134085,10 +137118,10 @@ export default { } ], "event_teams": [ - 1423, + 1471, { "distinct_on": [ - 1441, + 1489, "[event_teams_select_column!]" ], "limit": [ @@ -134098,19 +137131,19 @@ export default { 38 ], "order_by": [ - 1439, + 1487, "[event_teams_order_by!]" ], "where": [ - 1430 + 1478 ] } ], "event_teams_aggregate": [ - 1424, + 1472, { "distinct_on": [ - 1441, + 1489, "[event_teams_select_column!]" ], "limit": [ @@ -134120,32 +137153,32 @@ export default { 38 ], "order_by": [ - 1439, + 1487, "[event_teams_order_by!]" ], "where": [ - 1430 + 1478 ] } ], "event_teams_by_pk": [ - 1423, + 1471, { "event_id": [ - 4762, + 4921, "uuid!" ], "team_id": [ - 4762, + 4921, "uuid!" ] } ], "event_tournaments": [ - 1447, + 1495, { "distinct_on": [ - 1465, + 1513, "[event_tournaments_select_column!]" ], "limit": [ @@ -134155,19 +137188,19 @@ export default { 38 ], "order_by": [ - 1463, + 1511, "[event_tournaments_order_by!]" ], "where": [ - 1454 + 1502 ] } ], "event_tournaments_aggregate": [ - 1448, + 1496, { "distinct_on": [ - 1465, + 1513, "[event_tournaments_select_column!]" ], "limit": [ @@ -134177,32 +137210,32 @@ export default { 38 ], "order_by": [ - 1463, + 1511, "[event_tournaments_order_by!]" ], "where": [ - 1454 + 1502 ] } ], "event_tournaments_by_pk": [ - 1447, + 1495, { "event_id": [ - 4762, + 4921, "uuid!" ], "tournament_id": [ - 4762, + 4921, "uuid!" ] } ], "events": [ - 1471, + 1519, { "distinct_on": [ - 1486, + 1534, "[events_select_column!]" ], "limit": [ @@ -134212,19 +137245,19 @@ export default { 38 ], "order_by": [ - 1484, + 1532, "[events_order_by!]" ], "where": [ - 1475 + 1523 ] } ], "events_aggregate": [ - 1472, + 1520, { "distinct_on": [ - 1486, + 1534, "[events_select_column!]" ], "limit": [ @@ -134234,28 +137267,28 @@ export default { 38 ], "order_by": [ - 1484, + 1532, "[events_order_by!]" ], "where": [ - 1475 + 1523 ] } ], "events_by_pk": [ - 1471, + 1519, { "id": [ - 4762, + 4921, "uuid!" ] } ], "friends": [ - 1501, + 1549, { "distinct_on": [ - 1515, + 1563, "[friends_select_column!]" ], "limit": [ @@ -134265,19 +137298,19 @@ export default { 38 ], "order_by": [ - 1513, + 1561, "[friends_order_by!]" ], "where": [ - 1505 + 1553 ] } ], "friends_aggregate": [ - 1502, + 1550, { "distinct_on": [ - 1515, + 1563, "[friends_select_column!]" ], "limit": [ @@ -134287,16 +137320,16 @@ export default { 38 ], "order_by": [ - 1513, + 1561, "[friends_order_by!]" ], "where": [ - 1505 + 1553 ] } ], "friends_by_pk": [ - 1501, + 1549, { "other_player_steam_id": [ 180, @@ -134309,10 +137342,10 @@ export default { } ], "game_server_nodes": [ - 1528, + 1576, { "distinct_on": [ - 1557, + 1605, "[game_server_nodes_select_column!]" ], "limit": [ @@ -134322,19 +137355,19 @@ export default { 38 ], "order_by": [ - 1554, + 1602, "[game_server_nodes_order_by!]" ], "where": [ - 1540 + 1588 ] } ], "game_server_nodes_aggregate": [ - 1529, + 1577, { "distinct_on": [ - 1557, + 1605, "[game_server_nodes_select_column!]" ], "limit": [ @@ -134344,16 +137377,16 @@ export default { 38 ], "order_by": [ - 1554, + 1602, "[game_server_nodes_order_by!]" ], "where": [ - 1540 + 1588 ] } ], "game_server_nodes_by_pk": [ - 1528, + 1576, { "id": [ 78, @@ -134362,10 +137395,10 @@ export default { } ], "game_versions": [ - 1579, + 1627, { "distinct_on": [ - 1599, + 1647, "[game_versions_select_column!]" ], "limit": [ @@ -134375,19 +137408,19 @@ export default { 38 ], "order_by": [ - 1596, + 1644, "[game_versions_order_by!]" ], "where": [ - 1584 + 1632 ] } ], "game_versions_aggregate": [ - 1580, + 1628, { "distinct_on": [ - 1599, + 1647, "[game_versions_select_column!]" ], "limit": [ @@ -134397,16 +137430,16 @@ export default { 38 ], "order_by": [ - 1596, + 1644, "[game_versions_order_by!]" ], "where": [ - 1584 + 1632 ] } ], "game_versions_by_pk": [ - 1579, + 1627, { "build_id": [ 38, @@ -134415,10 +137448,10 @@ export default { } ], "gamedata_signature_validations": [ - 1612, + 1660, { "distinct_on": [ - 1631, + 1679, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -134428,19 +137461,19 @@ export default { 38 ], "order_by": [ - 1628, + 1676, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1617 + 1665 ] } ], "gamedata_signature_validations_aggregate": [ - 1613, + 1661, { "distinct_on": [ - 1631, + 1679, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -134450,19 +137483,19 @@ export default { 38 ], "order_by": [ - 1628, + 1676, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1617 + 1665 ] } ], "gamedata_signature_validations_by_pk": [ - 1612, + 1660, { "id": [ - 4762, + 4921, "uuid!" ] } @@ -134498,7 +137531,7 @@ export default { 34, { "match_map_id": [ - 4762, + 4921, "uuid!" ], "target_steam_id": [ @@ -134583,14 +137616,14 @@ export default { 89 ], "get_event_leaderboard": [ - 1655, + 1703, { "args": [ - 1644, + 1692, "get_event_leaderboard_args!" ], "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134600,23 +137633,23 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "get_event_leaderboard_aggregate": [ - 1656, + 1704, { "args": [ - 1644, + 1692, "get_event_leaderboard_args!" ], "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134626,23 +137659,23 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "get_leaderboard": [ - 1655, + 1703, { "args": [ - 1645, + 1693, "get_leaderboard_args!" ], "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134652,23 +137685,23 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "get_leaderboard_aggregate": [ - 1656, + 1704, { "args": [ - 1645, + 1693, "get_leaderboard_args!" ], "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134678,23 +137711,23 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "get_league_season_leaderboard": [ - 1655, + 1703, { "args": [ - 1646, + 1694, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134704,23 +137737,23 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "get_league_season_leaderboard_aggregate": [ - 1656, + 1704, { "args": [ - 1646, + 1694, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134730,23 +137763,23 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "get_player_leaderboard_rank": [ - 3222, + 3270, { "args": [ - 1647, + 1695, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3233, + 3281, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -134756,23 +137789,23 @@ export default { 38 ], "order_by": [ - 3232, + 3280, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 3274 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3223, + 3271, { "args": [ - 1647, + 1695, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3233, + 3281, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -134782,19 +137815,19 @@ export default { 38 ], "order_by": [ - 3232, + 3280, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 3274 ] } ], "leaderboard_entries": [ - 1655, + 1703, { "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134804,19 +137837,19 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "leaderboard_entries_aggregate": [ - 1656, + 1704, { "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134826,19 +137859,19 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "league_divisions": [ - 1679, + 1727, { "distinct_on": [ - 1694, + 1742, "[league_divisions_select_column!]" ], "limit": [ @@ -134848,19 +137881,19 @@ export default { 38 ], "order_by": [ - 1692, + 1740, "[league_divisions_order_by!]" ], "where": [ - 1683 + 1731 ] } ], "league_divisions_aggregate": [ - 1680, + 1728, { "distinct_on": [ - 1694, + 1742, "[league_divisions_select_column!]" ], "limit": [ @@ -134870,28 +137903,28 @@ export default { 38 ], "order_by": [ - 1692, + 1740, "[league_divisions_order_by!]" ], "where": [ - 1683 + 1731 ] } ], "league_divisions_by_pk": [ - 1679, + 1727, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_match_weeks": [ - 1707, + 1755, { "distinct_on": [ - 1728, + 1776, "[league_match_weeks_select_column!]" ], "limit": [ @@ -134901,19 +137934,19 @@ export default { 38 ], "order_by": [ - 1726, + 1774, "[league_match_weeks_order_by!]" ], "where": [ - 1716 + 1764 ] } ], "league_match_weeks_aggregate": [ - 1708, + 1756, { "distinct_on": [ - 1728, + 1776, "[league_match_weeks_select_column!]" ], "limit": [ @@ -134923,28 +137956,28 @@ export default { 38 ], "order_by": [ - 1726, + 1774, "[league_match_weeks_order_by!]" ], "where": [ - 1716 + 1764 ] } ], "league_match_weeks_by_pk": [ - 1707, + 1755, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_relegation_playoffs": [ - 1748, + 1796, { "distinct_on": [ - 1769, + 1817, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -134954,19 +137987,19 @@ export default { 38 ], "order_by": [ - 1767, + 1815, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1757 + 1805 ] } ], "league_relegation_playoffs_aggregate": [ - 1749, + 1797, { "distinct_on": [ - 1769, + 1817, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -134976,28 +138009,28 @@ export default { 38 ], "order_by": [ - 1767, + 1815, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1757 + 1805 ] } ], "league_relegation_playoffs_by_pk": [ - 1748, + 1796, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_scheduling_proposals": [ - 1789, + 1837, { "distinct_on": [ - 1810, + 1858, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -135007,19 +138040,19 @@ export default { 38 ], "order_by": [ - 1808, + 1856, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1798 + 1846 ] } ], "league_scheduling_proposals_aggregate": [ - 1790, + 1838, { "distinct_on": [ - 1810, + 1858, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -135029,28 +138062,28 @@ export default { 38 ], "order_by": [ - 1808, + 1856, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1798 + 1846 ] } ], "league_scheduling_proposals_by_pk": [ - 1789, + 1837, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_season_divisions": [ - 1830, + 1878, { "distinct_on": [ - 1849, + 1897, "[league_season_divisions_select_column!]" ], "limit": [ @@ -135060,19 +138093,19 @@ export default { 38 ], "order_by": [ - 1847, + 1895, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1885 ] } ], "league_season_divisions_aggregate": [ - 1831, + 1879, { "distinct_on": [ - 1849, + 1897, "[league_season_divisions_select_column!]" ], "limit": [ @@ -135082,28 +138115,28 @@ export default { 38 ], "order_by": [ - 1847, + 1895, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1885 ] } ], "league_season_divisions_by_pk": [ - 1830, + 1878, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_seasons": [ - 1855, + 1903, { "distinct_on": [ - 1875, + 1923, "[league_seasons_select_column!]" ], "limit": [ @@ -135113,19 +138146,19 @@ export default { 38 ], "order_by": [ - 1872, + 1920, "[league_seasons_order_by!]" ], "where": [ - 1860 + 1908 ] } ], "league_seasons_aggregate": [ - 1856, + 1904, { "distinct_on": [ - 1875, + 1923, "[league_seasons_select_column!]" ], "limit": [ @@ -135135,28 +138168,28 @@ export default { 38 ], "order_by": [ - 1872, + 1920, "[league_seasons_order_by!]" ], "where": [ - 1860 + 1908 ] } ], "league_seasons_by_pk": [ - 1855, + 1903, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_team_movements": [ - 1888, + 1936, { "distinct_on": [ - 1909, + 1957, "[league_team_movements_select_column!]" ], "limit": [ @@ -135166,19 +138199,19 @@ export default { 38 ], "order_by": [ - 1907, + 1955, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1945 ] } ], "league_team_movements_aggregate": [ - 1889, + 1937, { "distinct_on": [ - 1909, + 1957, "[league_team_movements_select_column!]" ], "limit": [ @@ -135188,28 +138221,28 @@ export default { 38 ], "order_by": [ - 1907, + 1955, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1945 ] } ], "league_team_movements_by_pk": [ - 1888, + 1936, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_team_rosters": [ - 1929, + 1977, { "distinct_on": [ - 1950, + 1998, "[league_team_rosters_select_column!]" ], "limit": [ @@ -135219,19 +138252,19 @@ export default { 38 ], "order_by": [ - 1948, + 1996, "[league_team_rosters_order_by!]" ], "where": [ - 1938 + 1986 ] } ], "league_team_rosters_aggregate": [ - 1930, + 1978, { "distinct_on": [ - 1950, + 1998, "[league_team_rosters_select_column!]" ], "limit": [ @@ -135241,19 +138274,19 @@ export default { 38 ], "order_by": [ - 1948, + 1996, "[league_team_rosters_order_by!]" ], "where": [ - 1938 + 1986 ] } ], "league_team_rosters_by_pk": [ - 1929, + 1977, { "league_team_season_id": [ - 4762, + 4921, "uuid!" ], "player_steam_id": [ @@ -135263,10 +138296,10 @@ export default { } ], "league_team_seasons": [ - 1970, + 2018, { "distinct_on": [ - 1992, + 2040, "[league_team_seasons_select_column!]" ], "limit": [ @@ -135276,19 +138309,19 @@ export default { 38 ], "order_by": [ - 1990, + 2038, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 2027 ] } ], "league_team_seasons_aggregate": [ - 1971, + 2019, { "distinct_on": [ - 1992, + 2040, "[league_team_seasons_select_column!]" ], "limit": [ @@ -135298,28 +138331,28 @@ export default { 38 ], "order_by": [ - 1990, + 2038, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 2027 ] } ], "league_team_seasons_by_pk": [ - 1970, + 2018, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_teams": [ - 2012, + 2060, { "distinct_on": [ - 2025, + 2073, "[league_teams_select_column!]" ], "limit": [ @@ -135329,19 +138362,19 @@ export default { 38 ], "order_by": [ - 2023, + 2071, "[league_teams_order_by!]" ], "where": [ - 2015 + 2063 ] } ], "league_teams_aggregate": [ - 2013, + 2061, { "distinct_on": [ - 2025, + 2073, "[league_teams_select_column!]" ], "limit": [ @@ -135351,19 +138384,19 @@ export default { 38 ], "order_by": [ - 2023, + 2071, "[league_teams_order_by!]" ], "where": [ - 2015 + 2063 ] } ], "league_teams_by_pk": [ - 2012, + 2060, { "id": [ - 4762, + 4921, "uuid!" ] } @@ -135384,10 +138417,10 @@ export default { } ], "lobbies": [ - 2031, + 2079, { "distinct_on": [ - 2044, + 2092, "[lobbies_select_column!]" ], "limit": [ @@ -135397,19 +138430,19 @@ export default { 38 ], "order_by": [ - 2042, + 2090, "[lobbies_order_by!]" ], "where": [ - 2034 + 2082 ] } ], "lobbies_aggregate": [ - 2032, + 2080, { "distinct_on": [ - 2044, + 2092, "[lobbies_select_column!]" ], "limit": [ @@ -135419,28 +138452,28 @@ export default { 38 ], "order_by": [ - 2042, + 2090, "[lobbies_order_by!]" ], "where": [ - 2034 + 2082 ] } ], "lobbies_by_pk": [ - 2031, + 2079, { "id": [ - 4762, + 4921, "uuid!" ] } ], "lobby_players": [ - 2050, + 2098, { "distinct_on": [ - 2073, + 2121, "[lobby_players_select_column!]" ], "limit": [ @@ -135450,19 +138483,19 @@ export default { 38 ], "order_by": [ - 2071, + 2119, "[lobby_players_order_by!]" ], "where": [ - 2061 + 2109 ] } ], "lobby_players_aggregate": [ - 2051, + 2099, { "distinct_on": [ - 2073, + 2121, "[lobby_players_select_column!]" ], "limit": [ @@ -135472,19 +138505,19 @@ export default { 38 ], "order_by": [ - 2071, + 2119, "[lobby_players_order_by!]" ], "where": [ - 2061 + 2109 ] } ], "lobby_players_by_pk": [ - 2050, + 2098, { "lobby_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -135494,10 +138527,10 @@ export default { } ], "map_pools": [ - 2095, + 2143, { "distinct_on": [ - 2108, + 2156, "[map_pools_select_column!]" ], "limit": [ @@ -135507,19 +138540,19 @@ export default { 38 ], "order_by": [ - 2106, + 2154, "[map_pools_order_by!]" ], "where": [ - 2098 + 2146 ] } ], "map_pools_aggregate": [ - 2096, + 2144, { "distinct_on": [ - 2108, + 2156, "[map_pools_select_column!]" ], "limit": [ @@ -135529,28 +138562,28 @@ export default { 38 ], "order_by": [ - 2106, + 2154, "[map_pools_order_by!]" ], "where": [ - 2098 + 2146 ] } ], "map_pools_by_pk": [ - 2095, + 2143, { "id": [ - 4762, + 4921, "uuid!" ] } ], "maps": [ - 2114, + 2162, { "distinct_on": [ - 2135, + 2183, "[maps_select_column!]" ], "limit": [ @@ -135560,19 +138593,19 @@ export default { 38 ], "order_by": [ - 2133, + 2181, "[maps_order_by!]" ], "where": [ - 2123 + 2171 ] } ], "maps_aggregate": [ - 2115, + 2163, { "distinct_on": [ - 2135, + 2183, "[maps_select_column!]" ], "limit": [ @@ -135582,28 +138615,28 @@ export default { 38 ], "order_by": [ - 2133, + 2181, "[maps_order_by!]" ], "where": [ - 2123 + 2171 ] } ], "maps_by_pk": [ - 2114, + 2162, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_clips": [ - 2143, + 2191, { "distinct_on": [ - 2165, + 2213, "[match_clips_select_column!]" ], "limit": [ @@ -135613,19 +138646,19 @@ export default { 38 ], "order_by": [ - 2163, + 2211, "[match_clips_order_by!]" ], "where": [ - 2152 + 2200 ] } ], "match_clips_aggregate": [ - 2144, + 2192, { "distinct_on": [ - 2165, + 2213, "[match_clips_select_column!]" ], "limit": [ @@ -135635,28 +138668,28 @@ export default { 38 ], "order_by": [ - 2163, + 2211, "[match_clips_order_by!]" ], "where": [ - 2152 + 2200 ] } ], "match_clips_by_pk": [ - 2143, + 2191, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_demo_sessions": [ - 2185, + 2233, { "distinct_on": [ - 2211, + 2259, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -135666,19 +138699,19 @@ export default { 38 ], "order_by": [ - 2208, + 2256, "[match_demo_sessions_order_by!]" ], "where": [ - 2195 + 2243 ] } ], "match_demo_sessions_aggregate": [ - 2186, + 2234, { "distinct_on": [ - 2211, + 2259, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -135688,28 +138721,28 @@ export default { 38 ], "order_by": [ - 2208, + 2256, "[match_demo_sessions_order_by!]" ], "where": [ - 2195 + 2243 ] } ], "match_demo_sessions_by_pk": [ - 2185, + 2233, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_lineup_players": [ - 2231, + 2279, { "distinct_on": [ - 2254, + 2302, "[match_lineup_players_select_column!]" ], "limit": [ @@ -135719,19 +138752,19 @@ export default { 38 ], "order_by": [ - 2252, + 2300, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 2290 ] } ], "match_lineup_players_aggregate": [ - 2232, + 2280, { "distinct_on": [ - 2254, + 2302, "[match_lineup_players_select_column!]" ], "limit": [ @@ -135741,28 +138774,28 @@ export default { 38 ], "order_by": [ - 2252, + 2300, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 2290 ] } ], "match_lineup_players_by_pk": [ - 2231, + 2279, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_lineups": [ - 2276, + 2324, { "distinct_on": [ - 2298, + 2346, "[match_lineups_select_column!]" ], "limit": [ @@ -135772,19 +138805,19 @@ export default { 38 ], "order_by": [ - 2296, + 2344, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2333 ] } ], "match_lineups_aggregate": [ - 2277, + 2325, { "distinct_on": [ - 2298, + 2346, "[match_lineups_select_column!]" ], "limit": [ @@ -135794,28 +138827,28 @@ export default { 38 ], "order_by": [ - 2296, + 2344, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2333 ] } ], "match_lineups_by_pk": [ - 2276, + 2324, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_map_demos": [ - 2318, + 2366, { "distinct_on": [ - 2347, + 2395, "[match_map_demos_select_column!]" ], "limit": [ @@ -135825,19 +138858,19 @@ export default { 38 ], "order_by": [ - 2344, + 2392, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2378 ] } ], "match_map_demos_aggregate": [ - 2319, + 2367, { "distinct_on": [ - 2347, + 2395, "[match_map_demos_select_column!]" ], "limit": [ @@ -135847,28 +138880,28 @@ export default { 38 ], "order_by": [ - 2344, + 2392, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2378 ] } ], "match_map_demos_by_pk": [ - 2318, + 2366, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_map_rounds": [ - 2369, + 2417, { "distinct_on": [ - 2390, + 2438, "[match_map_rounds_select_column!]" ], "limit": [ @@ -135878,19 +138911,19 @@ export default { 38 ], "order_by": [ - 2388, + 2436, "[match_map_rounds_order_by!]" ], "where": [ - 2378 + 2426 ] } ], "match_map_rounds_aggregate": [ - 2370, + 2418, { "distinct_on": [ - 2390, + 2438, "[match_map_rounds_select_column!]" ], "limit": [ @@ -135900,28 +138933,28 @@ export default { 38 ], "order_by": [ - 2388, + 2436, "[match_map_rounds_order_by!]" ], "where": [ - 2378 + 2426 ] } ], "match_map_rounds_by_pk": [ - 2369, + 2417, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_map_veto_picks": [ - 2410, + 2458, { "distinct_on": [ - 2428, + 2476, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -135931,19 +138964,19 @@ export default { 38 ], "order_by": [ - 2426, + 2474, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2465 ] } ], "match_map_veto_picks_aggregate": [ - 2411, + 2459, { "distinct_on": [ - 2428, + 2476, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -135953,28 +138986,28 @@ export default { 38 ], "order_by": [ - 2426, + 2474, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2465 ] } ], "match_map_veto_picks_by_pk": [ - 2410, + 2458, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_maps": [ - 2434, + 2482, { "distinct_on": [ - 2456, + 2504, "[match_maps_select_column!]" ], "limit": [ @@ -135984,19 +139017,19 @@ export default { 38 ], "order_by": [ - 2454, + 2502, "[match_maps_order_by!]" ], "where": [ - 2443 + 2491 ] } ], "match_maps_aggregate": [ - 2435, + 2483, { "distinct_on": [ - 2456, + 2504, "[match_maps_select_column!]" ], "limit": [ @@ -136006,28 +139039,28 @@ export default { 38 ], "order_by": [ - 2454, + 2502, "[match_maps_order_by!]" ], "where": [ - 2443 + 2491 ] } ], "match_maps_by_pk": [ - 2434, + 2482, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_options": [ - 2476, + 2524, { "distinct_on": [ - 2491, + 2539, "[match_options_select_column!]" ], "limit": [ @@ -136037,19 +139070,19 @@ export default { 38 ], "order_by": [ - 2489, + 2537, "[match_options_order_by!]" ], "where": [ - 2480 + 2528 ] } ], "match_options_aggregate": [ - 2477, + 2525, { "distinct_on": [ - 2491, + 2539, "[match_options_select_column!]" ], "limit": [ @@ -136059,28 +139092,28 @@ export default { 38 ], "order_by": [ - 2489, + 2537, "[match_options_order_by!]" ], "where": [ - 2480 + 2528 ] } ], "match_options_by_pk": [ - 2476, + 2524, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_region_veto_picks": [ - 2504, + 2552, { "distinct_on": [ - 2522, + 2570, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -136090,19 +139123,19 @@ export default { 38 ], "order_by": [ - 2520, + 2568, "[match_region_veto_picks_order_by!]" ], "where": [ - 2511 + 2559 ] } ], "match_region_veto_picks_aggregate": [ - 2505, + 2553, { "distinct_on": [ - 2522, + 2570, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -136112,28 +139145,28 @@ export default { 38 ], "order_by": [ - 2520, + 2568, "[match_region_veto_picks_order_by!]" ], "where": [ - 2511 + 2559 ] } ], "match_region_veto_picks_by_pk": [ - 2504, + 2552, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_streams": [ - 2528, + 2576, { "distinct_on": [ - 2556, + 2604, "[match_streams_select_column!]" ], "limit": [ @@ -136143,19 +139176,19 @@ export default { 38 ], "order_by": [ - 2553, + 2601, "[match_streams_order_by!]" ], "where": [ - 2540 + 2588 ] } ], "match_streams_aggregate": [ - 2529, + 2577, { "distinct_on": [ - 2556, + 2604, "[match_streams_select_column!]" ], "limit": [ @@ -136165,28 +139198,28 @@ export default { 38 ], "order_by": [ - 2553, + 2601, "[match_streams_order_by!]" ], "where": [ - 2540 + 2588 ] } ], "match_streams_by_pk": [ - 2528, + 2576, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_type_cfgs": [ - 2578, + 2626, { "distinct_on": [ - 2590, + 2638, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -136196,19 +139229,19 @@ export default { 38 ], "order_by": [ - 2588, + 2636, "[match_type_cfgs_order_by!]" ], "where": [ - 2581 + 2629 ] } ], "match_type_cfgs_aggregate": [ - 2579, + 2627, { "distinct_on": [ - 2590, + 2638, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -136218,28 +139251,28 @@ export default { 38 ], "order_by": [ - 2588, + 2636, "[match_type_cfgs_order_by!]" ], "where": [ - 2581 + 2629 ] } ], "match_type_cfgs_by_pk": [ - 2578, + 2626, { "type": [ - 591, + 618, "e_game_cfg_types_enum!" ] } ], "matches": [ - 2596, + 2644, { "distinct_on": [ - 2618, + 2666, "[matches_select_column!]" ], "limit": [ @@ -136249,19 +139282,19 @@ export default { 38 ], "order_by": [ - 2616, + 2664, "[matches_order_by!]" ], "where": [ - 2605 + 2653 ] } ], "matches_aggregate": [ - 2597, + 2645, { "distinct_on": [ - 2618, + 2666, "[matches_select_column!]" ], "limit": [ @@ -136271,19 +139304,19 @@ export default { 38 ], "order_by": [ - 2616, + 2664, "[matches_order_by!]" ], "where": [ - 2605 + 2653 ] } ], "matches_by_pk": [ - 2596, + 2644, { "id": [ - 4762, + 4921, "uuid!" ] } @@ -136292,10 +139325,10 @@ export default { 45 ], "migration_hashes_hashes": [ - 2638, + 2686, { "distinct_on": [ - 2650, + 2698, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -136305,19 +139338,19 @@ export default { 38 ], "order_by": [ - 2648, + 2696, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2641 + 2689 ] } ], "migration_hashes_hashes_aggregate": [ - 2639, + 2687, { "distinct_on": [ - 2650, + 2698, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -136327,16 +139360,16 @@ export default { 38 ], "order_by": [ - 2648, + 2696, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2641 + 2689 ] } ], "migration_hashes_hashes_by_pk": [ - 2638, + 2686, { "name": [ 78, @@ -136345,10 +139378,10 @@ export default { } ], "my_friends": [ - 2656, + 2704, { "distinct_on": [ - 2681, + 2729, "[my_friends_select_column!]" ], "limit": [ @@ -136358,19 +139391,19 @@ export default { 38 ], "order_by": [ - 2679, + 2727, "[my_friends_order_by!]" ], "where": [ - 2668 + 2716 ] } ], "my_friends_aggregate": [ - 2657, + 2705, { "distinct_on": [ - 2681, + 2729, "[my_friends_select_column!]" ], "limit": [ @@ -136380,11 +139413,11 @@ export default { 38 ], "order_by": [ - 2679, + 2727, "[my_friends_order_by!]" ], "where": [ - 2668 + 2716 ] } ], @@ -136392,7 +139425,7 @@ export default { 48, { "id": [ - 4762, + 4921, "uuid!" ] } @@ -136401,10 +139434,10 @@ export default { 48 ], "news_articles": [ - 2702, + 2750, { "distinct_on": [ - 2716, + 2764, "[news_articles_select_column!]" ], "limit": [ @@ -136414,19 +139447,19 @@ export default { 38 ], "order_by": [ - 2714, + 2762, "[news_articles_order_by!]" ], "where": [ - 2706 + 2754 ] } ], "news_articles_aggregate": [ - 2703, + 2751, { "distinct_on": [ - 2716, + 2764, "[news_articles_select_column!]" ], "limit": [ @@ -136436,28 +139469,28 @@ export default { 38 ], "order_by": [ - 2714, + 2762, "[news_articles_order_by!]" ], "where": [ - 2706 + 2754 ] } ], "news_articles_by_pk": [ - 2702, + 2750, { "id": [ - 4762, + 4921, "uuid!" ] } ], "notifications": [ - 2729, + 2777, { "distinct_on": [ - 2757, + 2805, "[notifications_select_column!]" ], "limit": [ @@ -136467,19 +139500,19 @@ export default { 38 ], "order_by": [ - 2754, + 2802, "[notifications_order_by!]" ], "where": [ - 2741 + 2789 ] } ], "notifications_aggregate": [ - 2730, + 2778, { "distinct_on": [ - 2757, + 2805, "[notifications_select_column!]" ], "limit": [ @@ -136489,28 +139522,28 @@ export default { 38 ], "order_by": [ - 2754, + 2802, "[notifications_order_by!]" ], "where": [ - 2741 + 2789 ] } ], "notifications_by_pk": [ - 2729, + 2777, { "id": [ - 4762, + 4921, "uuid!" ] } ], "pending_match_import_players": [ - 2782, + 2830, { "distinct_on": [ - 2803, + 2851, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -136520,19 +139553,19 @@ export default { 38 ], "order_by": [ - 2801, + 2849, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2839 ] } ], "pending_match_import_players_aggregate": [ - 2783, + 2831, { "distinct_on": [ - 2803, + 2851, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -136542,32 +139575,32 @@ export default { 38 ], "order_by": [ - 2801, + 2849, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2839 ] } ], "pending_match_import_players_by_pk": [ - 2782, + 2830, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2779, + 2827, "numeric!" ] } ], "pending_match_imports": [ - 2823, + 2871, { "distinct_on": [ - 2838, + 2886, "[pending_match_imports_select_column!]" ], "limit": [ @@ -136577,19 +139610,19 @@ export default { 38 ], "order_by": [ - 2836, + 2884, "[pending_match_imports_order_by!]" ], "where": [ - 2827 + 2875 ] } ], "pending_match_imports_aggregate": [ - 2824, + 2872, { "distinct_on": [ - 2838, + 2886, "[pending_match_imports_select_column!]" ], "limit": [ @@ -136599,28 +139632,28 @@ export default { 38 ], "order_by": [ - 2836, + 2884, "[pending_match_imports_order_by!]" ], "where": [ - 2827 + 2875 ] } ], "pending_match_imports_by_pk": [ - 2823, + 2871, { "valve_match_id": [ - 2779, + 2827, "numeric!" ] } ], "player_aim_stats_demo": [ - 2851, + 2899, { "distinct_on": [ - 2865, + 2913, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -136630,19 +139663,19 @@ export default { 38 ], "order_by": [ - 2863, + 2911, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2855 + 2903 ] } ], "player_aim_stats_demo_aggregate": [ - 2852, + 2900, { "distinct_on": [ - 2865, + 2913, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -136652,32 +139685,32 @@ export default { 38 ], "order_by": [ - 2863, + 2911, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2855 + 2903 ] } ], "player_aim_stats_demo_by_pk": [ - 2851, + 2899, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ] } ], "player_aim_weapon_stats": [ - 2878, + 2926, { "distinct_on": [ - 2899, + 2947, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -136687,19 +139720,19 @@ export default { 38 ], "order_by": [ - 2897, + 2945, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2887 + 2935 ] } ], "player_aim_weapon_stats_aggregate": [ - 2879, + 2927, { "distinct_on": [ - 2899, + 2947, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -136709,19 +139742,19 @@ export default { 38 ], "order_by": [ - 2897, + 2945, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2887 + 2935 ] } ], "player_aim_weapon_stats_by_pk": [ - 2878, + 2926, { "match_map_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -136735,10 +139768,10 @@ export default { } ], "player_assists": [ - 2919, + 2967, { "distinct_on": [ - 2942, + 2990, "[player_assists_select_column!]" ], "limit": [ @@ -136748,19 +139781,19 @@ export default { 38 ], "order_by": [ - 2940, + 2988, "[player_assists_order_by!]" ], "where": [ - 2930 + 2978 ] } ], "player_assists_aggregate": [ - 2920, + 2968, { "distinct_on": [ - 2942, + 2990, "[player_assists_select_column!]" ], "limit": [ @@ -136770,16 +139803,16 @@ export default { 38 ], "order_by": [ - 2940, + 2988, "[player_assists_order_by!]" ], "where": [ - 2930 + 2978 ] } ], "player_assists_by_pk": [ - 2919, + 2967, { "attacked_steam_id": [ 180, @@ -136790,20 +139823,20 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "player_career_stats_v": [ - 2964, + 3012, { "distinct_on": [ - 2972, + 3020, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -136813,19 +139846,19 @@ export default { 38 ], "order_by": [ - 2971, + 3019, "[player_career_stats_v_order_by!]" ], "where": [ - 2968 + 3016 ] } ], "player_career_stats_v_aggregate": [ - 2965, + 3013, { "distinct_on": [ - 2972, + 3020, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -136835,19 +139868,19 @@ export default { 38 ], "order_by": [ - 2971, + 3019, "[player_career_stats_v_order_by!]" ], "where": [ - 2968 + 3016 ] } ], "player_damages": [ - 2982, + 3030, { "distinct_on": [ - 3003, + 3051, "[player_damages_select_column!]" ], "limit": [ @@ -136857,19 +139890,19 @@ export default { 38 ], "order_by": [ - 3001, + 3049, "[player_damages_order_by!]" ], "where": [ - 2991 + 3039 ] } ], "player_damages_aggregate": [ - 2983, + 3031, { "distinct_on": [ - 3003, + 3051, "[player_damages_select_column!]" ], "limit": [ @@ -136879,36 +139912,36 @@ export default { 38 ], "order_by": [ - 3001, + 3049, "[player_damages_order_by!]" ], "where": [ - 2991 + 3039 ] } ], "player_damages_by_pk": [ - 2982, + 3030, { "id": [ - 4762, + 4921, "uuid!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "player_elo": [ - 3023, + 3071, { "distinct_on": [ - 3037, + 3085, "[player_elo_select_column!]" ], "limit": [ @@ -136918,19 +139951,19 @@ export default { 38 ], "order_by": [ - 3035, + 3083, "[player_elo_order_by!]" ], "where": [ - 3027 + 3075 ] } ], "player_elo_aggregate": [ - 3024, + 3072, { "distinct_on": [ - 3037, + 3085, "[player_elo_select_column!]" ], "limit": [ @@ -136940,19 +139973,19 @@ export default { 38 ], "order_by": [ - 3035, + 3083, "[player_elo_order_by!]" ], "where": [ - 3027 + 3075 ] } ], "player_elo_by_pk": [ - 3023, + 3071, { "match_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -136960,16 +139993,16 @@ export default { "bigint!" ], "type": [ - 860, + 887, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 3050, + 3098, { "distinct_on": [ - 3071, + 3119, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -136979,19 +140012,19 @@ export default { 38 ], "order_by": [ - 3069, + 3117, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3059 + 3107 ] } ], "player_faceit_rank_history_aggregate": [ - 3051, + 3099, { "distinct_on": [ - 3071, + 3119, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -137001,28 +140034,28 @@ export default { 38 ], "order_by": [ - 3069, + 3117, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3059 + 3107 ] } ], "player_faceit_rank_history_by_pk": [ - 3050, + 3098, { "id": [ - 4762, + 4921, "uuid!" ] } ], "player_flashes": [ - 3091, + 3139, { "distinct_on": [ - 3114, + 3162, "[player_flashes_select_column!]" ], "limit": [ @@ -137032,19 +140065,19 @@ export default { 38 ], "order_by": [ - 3112, + 3160, "[player_flashes_order_by!]" ], "where": [ - 3102 + 3150 ] } ], "player_flashes_aggregate": [ - 3092, + 3140, { "distinct_on": [ - 3114, + 3162, "[player_flashes_select_column!]" ], "limit": [ @@ -137054,16 +140087,16 @@ export default { 38 ], "order_by": [ - 3112, + 3160, "[player_flashes_order_by!]" ], "where": [ - 3102 + 3150 ] } ], "player_flashes_by_pk": [ - 3091, + 3139, { "attacked_steam_id": [ 180, @@ -137074,20 +140107,20 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "player_kills": [ - 3136, + 3184, { "distinct_on": [ - 3200, + 3248, "[player_kills_select_column!]" ], "limit": [ @@ -137097,19 +140130,19 @@ export default { 38 ], "order_by": [ - 3198, + 3246, "[player_kills_order_by!]" ], "where": [ - 3147 + 3195 ] } ], "player_kills_aggregate": [ - 3137, + 3185, { "distinct_on": [ - 3200, + 3248, "[player_kills_select_column!]" ], "limit": [ @@ -137119,16 +140152,16 @@ export default { 38 ], "order_by": [ - 3198, + 3246, "[player_kills_order_by!]" ], "where": [ - 3147 + 3195 ] } ], "player_kills_by_pk": [ - 3136, + 3184, { "attacked_steam_id": [ 180, @@ -137139,20 +140172,20 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3148, + 3196, { "distinct_on": [ - 3169, + 3217, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -137162,19 +140195,19 @@ export default { 38 ], "order_by": [ - 3167, + 3215, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3157 + 3205 ] } ], "player_kills_by_weapon_aggregate": [ - 3149, + 3197, { "distinct_on": [ - 3169, + 3217, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -137184,16 +140217,16 @@ export default { 38 ], "order_by": [ - 3167, + 3215, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3157 + 3205 ] } ], "player_kills_by_weapon_by_pk": [ - 3148, + 3196, { "player_steam_id": [ 180, @@ -137206,10 +140239,10 @@ export default { } ], "player_leaderboard_rank": [ - 3222, + 3270, { "distinct_on": [ - 3233, + 3281, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -137219,19 +140252,19 @@ export default { 38 ], "order_by": [ - 3232, + 3280, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 3274 ] } ], "player_leaderboard_rank_aggregate": [ - 3223, + 3271, { "distinct_on": [ - 3233, + 3281, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -137241,19 +140274,19 @@ export default { 38 ], "order_by": [ - 3232, + 3280, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 3274 ] } ], "player_match_map_stats": [ - 3245, + 3293, { "distinct_on": [ - 3266, + 3314, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -137263,19 +140296,19 @@ export default { 38 ], "order_by": [ - 3264, + 3312, "[player_match_map_stats_order_by!]" ], "where": [ - 3254 + 3302 ] } ], "player_match_map_stats_aggregate": [ - 3246, + 3294, { "distinct_on": [ - 3266, + 3314, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -137285,19 +140318,19 @@ export default { 38 ], "order_by": [ - 3264, + 3312, "[player_match_map_stats_order_by!]" ], "where": [ - 3254 + 3302 ] } ], "player_match_map_stats_by_pk": [ - 3245, + 3293, { "match_map_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -137307,10 +140340,10 @@ export default { } ], "player_match_performance_v": [ - 3286, + 3334, { "distinct_on": [ - 3294, + 3342, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -137320,19 +140353,19 @@ export default { 38 ], "order_by": [ - 3293, + 3341, "[player_match_performance_v_order_by!]" ], "where": [ - 3290 + 3338 ] } ], "player_match_performance_v_aggregate": [ - 3287, + 3335, { "distinct_on": [ - 3294, + 3342, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -137342,19 +140375,19 @@ export default { 38 ], "order_by": [ - 3293, + 3341, "[player_match_performance_v_order_by!]" ], "where": [ - 3290 + 3338 ] } ], "player_match_stats_v": [ - 3304, + 3352, { "distinct_on": [ - 3320, + 3368, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -137364,19 +140397,19 @@ export default { 38 ], "order_by": [ - 3319, + 3367, "[player_match_stats_v_order_by!]" ], "where": [ - 3313 + 3361 ] } ], "player_match_stats_v_aggregate": [ - 3305, + 3353, { "distinct_on": [ - 3320, + 3368, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -137386,19 +140419,19 @@ export default { 38 ], "order_by": [ - 3319, + 3367, "[player_match_stats_v_order_by!]" ], "where": [ - 3313 + 3361 ] } ], "player_objectives": [ - 3337, + 3385, { "distinct_on": [ - 3358, + 3406, "[player_objectives_select_column!]" ], "limit": [ @@ -137408,19 +140441,19 @@ export default { 38 ], "order_by": [ - 3356, + 3404, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3394 ] } ], "player_objectives_aggregate": [ - 3338, + 3386, { "distinct_on": [ - 3358, + 3406, "[player_objectives_select_column!]" ], "limit": [ @@ -137430,19 +140463,19 @@ export default { 38 ], "order_by": [ - 3356, + 3404, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3394 ] } ], "player_objectives_by_pk": [ - 3337, + 3385, { "match_map_id": [ - 4762, + 4921, "uuid!" ], "player_steam_id": [ @@ -137450,16 +140483,16 @@ export default { "bigint!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "player_performance_v": [ - 3378, + 3426, { "distinct_on": [ - 3386, + 3434, "[player_performance_v_select_column!]" ], "limit": [ @@ -137469,19 +140502,19 @@ export default { 38 ], "order_by": [ - 3385, + 3433, "[player_performance_v_order_by!]" ], "where": [ - 3382 + 3430 ] } ], "player_performance_v_aggregate": [ - 3379, + 3427, { "distinct_on": [ - 3386, + 3434, "[player_performance_v_select_column!]" ], "limit": [ @@ -137491,19 +140524,19 @@ export default { 38 ], "order_by": [ - 3385, + 3433, "[player_performance_v_order_by!]" ], "where": [ - 3382 + 3430 ] } ], "player_premier_rank_history": [ - 3396, + 3444, { "distinct_on": [ - 3417, + 3465, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -137513,19 +140546,19 @@ export default { 38 ], "order_by": [ - 3415, + 3463, "[player_premier_rank_history_order_by!]" ], "where": [ - 3405 + 3453 ] } ], "player_premier_rank_history_aggregate": [ - 3397, + 3445, { "distinct_on": [ - 3417, + 3465, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -137535,28 +140568,28 @@ export default { 38 ], "order_by": [ - 3415, + 3463, "[player_premier_rank_history_order_by!]" ], "where": [ - 3405 + 3453 ] } ], "player_premier_rank_history_by_pk": [ - 3396, + 3444, { "id": [ - 4762, + 4921, "uuid!" ] } ], "player_sanctions": [ - 3437, + 3485, { "distinct_on": [ - 3458, + 3506, "[player_sanctions_select_column!]" ], "limit": [ @@ -137566,19 +140599,19 @@ export default { 38 ], "order_by": [ - 3456, + 3504, "[player_sanctions_order_by!]" ], "where": [ - 3446 + 3494 ] } ], "player_sanctions_aggregate": [ - 3438, + 3486, { "distinct_on": [ - 3458, + 3506, "[player_sanctions_select_column!]" ], "limit": [ @@ -137588,32 +140621,32 @@ export default { 38 ], "order_by": [ - 3456, + 3504, "[player_sanctions_order_by!]" ], "where": [ - 3446 + 3494 ] } ], "player_sanctions_by_pk": [ - 3437, + 3485, { "created_at": [ - 4324, + 4376, "timestamptz!" ], "id": [ - 4762, + 4921, "uuid!" ] } ], "player_season_stats": [ - 3478, + 3526, { "distinct_on": [ - 3509, + 3557, "[player_season_stats_select_column!]" ], "limit": [ @@ -137623,19 +140656,19 @@ export default { 38 ], "order_by": [ - 3507, + 3555, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3545 ] } ], "player_season_stats_aggregate": [ - 3479, + 3527, { "distinct_on": [ - 3509, + 3557, "[player_season_stats_select_column!]" ], "limit": [ @@ -137645,32 +140678,32 @@ export default { 38 ], "order_by": [ - 3507, + 3555, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3545 ] } ], "player_season_stats_by_pk": [ - 3478, + 3526, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4762, + 4921, "uuid!" ] } ], "player_stats": [ - 3537, + 3585, { "distinct_on": [ - 3552, + 3600, "[player_stats_select_column!]" ], "limit": [ @@ -137680,19 +140713,19 @@ export default { 38 ], "order_by": [ - 3550, + 3598, "[player_stats_order_by!]" ], "where": [ - 3541 + 3589 ] } ], "player_stats_aggregate": [ - 3538, + 3586, { "distinct_on": [ - 3552, + 3600, "[player_stats_select_column!]" ], "limit": [ @@ -137702,16 +140735,16 @@ export default { 38 ], "order_by": [ - 3550, + 3598, "[player_stats_order_by!]" ], "where": [ - 3541 + 3589 ] } ], "player_stats_by_pk": [ - 3537, + 3585, { "player_steam_id": [ 180, @@ -137720,10 +140753,10 @@ export default { } ], "player_steam_bot_friend": [ - 3565, + 3613, { "distinct_on": [ - 3584, + 3632, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -137733,19 +140766,19 @@ export default { 38 ], "order_by": [ - 3581, + 3629, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3570 + 3618 ] } ], "player_steam_bot_friend_aggregate": [ - 3566, + 3614, { "distinct_on": [ - 3584, + 3632, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -137755,16 +140788,16 @@ export default { 38 ], "order_by": [ - 3581, + 3629, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3570 + 3618 ] } ], "player_steam_bot_friend_by_pk": [ - 3565, + 3613, { "steam_id": [ 180, @@ -137773,10 +140806,10 @@ export default { } ], "player_steam_match_auth": [ - 3597, + 3645, { "distinct_on": [ - 3611, + 3659, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -137786,19 +140819,19 @@ export default { 38 ], "order_by": [ - 3609, + 3657, "[player_steam_match_auth_order_by!]" ], "where": [ - 3601 + 3649 ] } ], "player_steam_match_auth_aggregate": [ - 3598, + 3646, { "distinct_on": [ - 3611, + 3659, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -137808,16 +140841,16 @@ export default { 38 ], "order_by": [ - 3609, + 3657, "[player_steam_match_auth_order_by!]" ], "where": [ - 3601 + 3649 ] } ], "player_steam_match_auth_by_pk": [ - 3597, + 3645, { "steam_id": [ 180, @@ -137826,10 +140859,10 @@ export default { } ], "player_unused_utility": [ - 3624, + 3672, { "distinct_on": [ - 3645, + 3693, "[player_unused_utility_select_column!]" ], "limit": [ @@ -137839,19 +140872,19 @@ export default { 38 ], "order_by": [ - 3643, + 3691, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3681 ] } ], "player_unused_utility_aggregate": [ - 3625, + 3673, { "distinct_on": [ - 3645, + 3693, "[player_unused_utility_select_column!]" ], "limit": [ @@ -137861,19 +140894,19 @@ export default { 38 ], "order_by": [ - 3643, + 3691, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3681 ] } ], "player_unused_utility_by_pk": [ - 3624, + 3672, { "match_map_id": [ - 4762, + 4921, "uuid!" ], "player_steam_id": [ @@ -137883,10 +140916,10 @@ export default { } ], "player_utility": [ - 3665, + 3713, { "distinct_on": [ - 3686, + 3734, "[player_utility_select_column!]" ], "limit": [ @@ -137896,19 +140929,19 @@ export default { 38 ], "order_by": [ - 3684, + 3732, "[player_utility_order_by!]" ], "where": [ - 3674 + 3722 ] } ], "player_utility_aggregate": [ - 3666, + 3714, { "distinct_on": [ - 3686, + 3734, "[player_utility_select_column!]" ], "limit": [ @@ -137918,36 +140951,36 @@ export default { 38 ], "order_by": [ - 3684, + 3732, "[player_utility_order_by!]" ], "where": [ - 3674 + 3722 ] } ], "player_utility_by_pk": [ - 3665, + 3713, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 3706, + 3754, { "distinct_on": [ - 3722, + 3770, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -137957,19 +140990,19 @@ export default { 38 ], "order_by": [ - 3721, + 3769, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3715 + 3763 ] } ], "player_weapon_stats_v_aggregate": [ - 3707, + 3755, { "distinct_on": [ - 3722, + 3770, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -137979,19 +141012,19 @@ export default { 38 ], "order_by": [ - 3721, + 3769, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3715 + 3763 ] } ], "players": [ - 3739, + 3787, { "distinct_on": [ - 3754, + 3802, "[players_select_column!]" ], "limit": [ @@ -138001,19 +141034,19 @@ export default { 38 ], "order_by": [ - 3752, + 3800, "[players_order_by!]" ], "where": [ - 3743 + 3791 ] } ], "players_aggregate": [ - 3740, + 3788, { "distinct_on": [ - 3754, + 3802, "[players_select_column!]" ], "limit": [ @@ -138023,16 +141056,16 @@ export default { 38 ], "order_by": [ - 3752, + 3800, "[players_order_by!]" ], "where": [ - 3743 + 3791 ] } ], "players_by_pk": [ - 3739, + 3787, { "steam_id": [ 180, @@ -138041,10 +141074,10 @@ export default { } ], "plugin_versions": [ - 3767, + 3815, { "distinct_on": [ - 3781, + 3829, "[plugin_versions_select_column!]" ], "limit": [ @@ -138054,19 +141087,19 @@ export default { 38 ], "order_by": [ - 3779, + 3827, "[plugin_versions_order_by!]" ], "where": [ - 3771 + 3819 ] } ], "plugin_versions_aggregate": [ - 3768, + 3816, { "distinct_on": [ - 3781, + 3829, "[plugin_versions_select_column!]" ], "limit": [ @@ -138076,19 +141109,19 @@ export default { 38 ], "order_by": [ - 3779, + 3827, "[plugin_versions_order_by!]" ], "where": [ - 3771 + 3819 ] } ], "plugin_versions_by_pk": [ - 3767, + 3815, { "runtime": [ - 941, + 968, "e_plugin_runtimes_enum!" ], "version": [ @@ -138114,10 +141147,10 @@ export default { } ], "seasons": [ - 3798, + 3846, { "distinct_on": [ - 3813, + 3861, "[seasons_select_column!]" ], "limit": [ @@ -138127,19 +141160,19 @@ export default { 38 ], "order_by": [ - 3811, + 3859, "[seasons_order_by!]" ], "where": [ - 3802 + 3850 ] } ], "seasons_aggregate": [ - 3799, + 3847, { "distinct_on": [ - 3813, + 3861, "[seasons_select_column!]" ], "limit": [ @@ -138149,28 +141182,28 @@ export default { 38 ], "order_by": [ - 3811, + 3859, "[seasons_order_by!]" ], "where": [ - 3802 + 3850 ] } ], "seasons_by_pk": [ - 3798, + 3846, { "id": [ - 4762, + 4921, "uuid!" ] } ], "server_regions": [ - 3826, + 3874, { "distinct_on": [ - 3840, + 3888, "[server_regions_select_column!]" ], "limit": [ @@ -138180,19 +141213,19 @@ export default { 38 ], "order_by": [ - 3838, + 3886, "[server_regions_order_by!]" ], "where": [ - 3830 + 3878 ] } ], "server_regions_aggregate": [ - 3827, + 3875, { "distinct_on": [ - 3840, + 3888, "[server_regions_select_column!]" ], "limit": [ @@ -138202,16 +141235,16 @@ export default { 38 ], "order_by": [ - 3838, + 3886, "[server_regions_order_by!]" ], "where": [ - 3830 + 3878 ] } ], "server_regions_by_pk": [ - 3826, + 3874, { "value": [ 78, @@ -138220,10 +141253,10 @@ export default { } ], "servers": [ - 3853, + 3901, { "distinct_on": [ - 3877, + 3925, "[servers_select_column!]" ], "limit": [ @@ -138233,19 +141266,19 @@ export default { 38 ], "order_by": [ - 3875, + 3923, "[servers_order_by!]" ], "where": [ - 3864 + 3912 ] } ], "servers_aggregate": [ - 3854, + 3902, { "distinct_on": [ - 3877, + 3925, "[servers_select_column!]" ], "limit": [ @@ -138255,28 +141288,28 @@ export default { 38 ], "order_by": [ - 3875, + 3923, "[servers_order_by!]" ], "where": [ - 3864 + 3912 ] } ], "servers_by_pk": [ - 3853, + 3901, { "id": [ - 4762, + 4921, "uuid!" ] } ], "settings": [ - 3899, + 3947, { "distinct_on": [ - 3911, + 3959, "[settings_select_column!]" ], "limit": [ @@ -138286,19 +141319,19 @@ export default { 38 ], "order_by": [ - 3909, + 3957, "[settings_order_by!]" ], "where": [ - 3902 + 3950 ] } ], "settings_aggregate": [ - 3900, + 3948, { "distinct_on": [ - 3911, + 3959, "[settings_select_column!]" ], "limit": [ @@ -138308,16 +141341,16 @@ export default { 38 ], "order_by": [ - 3909, + 3957, "[settings_order_by!]" ], "where": [ - 3902 + 3950 ] } ], "settings_by_pk": [ - 3899, + 3947, { "name": [ 78, @@ -138329,10 +141362,10 @@ export default { 72 ], "steam_account_claims": [ - 3919, + 3967, { "distinct_on": [ - 3937, + 3985, "[steam_account_claims_select_column!]" ], "limit": [ @@ -138342,19 +141375,19 @@ export default { 38 ], "order_by": [ - 3935, + 3983, "[steam_account_claims_order_by!]" ], "where": [ - 3926 + 3974 ] } ], "steam_account_claims_aggregate": [ - 3920, + 3968, { "distinct_on": [ - 3937, + 3985, "[steam_account_claims_select_column!]" ], "limit": [ @@ -138364,28 +141397,28 @@ export default { 38 ], "order_by": [ - 3935, + 3983, "[steam_account_claims_order_by!]" ], "where": [ - 3926 + 3974 ] } ], "steam_account_claims_by_pk": [ - 3919, + 3967, { "id": [ - 4762, + 4921, "uuid!" ] } ], "steam_accounts": [ - 3943, + 3991, { "distinct_on": [ - 3958, + 4006, "[steam_accounts_select_column!]" ], "limit": [ @@ -138395,19 +141428,19 @@ export default { 38 ], "order_by": [ - 3956, + 4004, "[steam_accounts_order_by!]" ], "where": [ - 3947 + 3995 ] } ], "steam_accounts_aggregate": [ - 3944, + 3992, { "distinct_on": [ - 3958, + 4006, "[steam_accounts_select_column!]" ], "limit": [ @@ -138417,28 +141450,28 @@ export default { 38 ], "order_by": [ - 3956, + 4004, "[steam_accounts_order_by!]" ], "where": [ - 3947 + 3995 ] } ], "steam_accounts_by_pk": [ - 3943, + 3991, { "id": [ - 4762, + 4921, "uuid!" ] } ], "system_alerts": [ - 3971, + 4019, { "distinct_on": [ - 3985, + 4033, "[system_alerts_select_column!]" ], "limit": [ @@ -138448,19 +141481,19 @@ export default { 38 ], "order_by": [ - 3983, + 4031, "[system_alerts_order_by!]" ], "where": [ - 3975 + 4023 ] } ], "system_alerts_aggregate": [ - 3972, + 4020, { "distinct_on": [ - 3985, + 4033, "[system_alerts_select_column!]" ], "limit": [ @@ -138470,19 +141503,19 @@ export default { 38 ], "order_by": [ - 3983, + 4031, "[system_alerts_order_by!]" ], "where": [ - 3975 + 4023 ] } ], "system_alerts_by_pk": [ - 3971, + 4019, { "id": [ - 4762, + 4921, "uuid!" ] } @@ -138491,16 +141524,16 @@ export default { 85, { "team_id": [ - 4762, + 4921, "uuid!" ] } ], "team_invites": [ - 3998, + 4046, { "distinct_on": [ - 4019, + 4067, "[team_invites_select_column!]" ], "limit": [ @@ -138510,19 +141543,19 @@ export default { 38 ], "order_by": [ - 4017, + 4065, "[team_invites_order_by!]" ], "where": [ - 4007 + 4055 ] } ], "team_invites_aggregate": [ - 3999, + 4047, { "distinct_on": [ - 4019, + 4067, "[team_invites_select_column!]" ], "limit": [ @@ -138532,28 +141565,28 @@ export default { 38 ], "order_by": [ - 4017, + 4065, "[team_invites_order_by!]" ], "where": [ - 4007 + 4055 ] } ], "team_invites_by_pk": [ - 3998, + 4046, { "id": [ - 4762, + 4921, "uuid!" ] } ], "team_roster": [ - 4039, + 4087, { "distinct_on": [ - 4062, + 4110, "[team_roster_select_column!]" ], "limit": [ @@ -138563,19 +141596,19 @@ export default { 38 ], "order_by": [ - 4060, + 4108, "[team_roster_order_by!]" ], "where": [ - 4050 + 4098 ] } ], "team_roster_aggregate": [ - 4040, + 4088, { "distinct_on": [ - 4062, + 4110, "[team_roster_select_column!]" ], "limit": [ @@ -138585,32 +141618,32 @@ export default { 38 ], "order_by": [ - 4060, + 4108, "[team_roster_order_by!]" ], "where": [ - 4050 + 4098 ] } ], "team_roster_by_pk": [ - 4039, + 4087, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4762, + 4921, "uuid!" ] } ], "team_scrim_alerts": [ - 4084, + 4132, { "distinct_on": [ - 4098, + 4146, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -138620,19 +141653,19 @@ export default { 38 ], "order_by": [ - 4096, + 4144, "[team_scrim_alerts_order_by!]" ], "where": [ - 4088 + 4136 ] } ], "team_scrim_alerts_aggregate": [ - 4085, + 4133, { "distinct_on": [ - 4098, + 4146, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -138642,28 +141675,28 @@ export default { 38 ], "order_by": [ - 4096, + 4144, "[team_scrim_alerts_order_by!]" ], "where": [ - 4088 + 4136 ] } ], "team_scrim_alerts_by_pk": [ - 4084, + 4132, { "id": [ - 4762, + 4921, "uuid!" ] } ], "team_scrim_availability": [ - 4111, + 4159, { "distinct_on": [ - 4131, + 4179, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -138673,19 +141706,19 @@ export default { 38 ], "order_by": [ - 4129, + 4177, "[team_scrim_availability_order_by!]" ], "where": [ - 4120 + 4168 ] } ], "team_scrim_availability_aggregate": [ - 4112, + 4160, { "distinct_on": [ - 4131, + 4179, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -138695,28 +141728,28 @@ export default { 38 ], "order_by": [ - 4129, + 4177, "[team_scrim_availability_order_by!]" ], "where": [ - 4120 + 4168 ] } ], "team_scrim_availability_by_pk": [ - 4111, + 4159, { "id": [ - 4762, + 4921, "uuid!" ] } ], "team_scrim_request_proposals": [ - 4139, + 4187, { "distinct_on": [ - 4160, + 4208, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -138726,19 +141759,19 @@ export default { 38 ], "order_by": [ - 4158, + 4206, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4148 + 4196 ] } ], "team_scrim_request_proposals_aggregate": [ - 4140, + 4188, { "distinct_on": [ - 4160, + 4208, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -138748,28 +141781,28 @@ export default { 38 ], "order_by": [ - 4158, + 4206, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4148 + 4196 ] } ], "team_scrim_request_proposals_by_pk": [ - 4139, + 4187, { "id": [ - 4762, + 4921, "uuid!" ] } ], "team_scrim_requests": [ - 4180, + 4228, { "distinct_on": [ - 4204, + 4252, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -138779,19 +141812,19 @@ export default { 38 ], "order_by": [ - 4202, + 4250, "[team_scrim_requests_order_by!]" ], "where": [ - 4191 + 4239 ] } ], "team_scrim_requests_aggregate": [ - 4181, + 4229, { "distinct_on": [ - 4204, + 4252, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -138801,28 +141834,28 @@ export default { 38 ], "order_by": [ - 4202, + 4250, "[team_scrim_requests_order_by!]" ], "where": [ - 4191 + 4239 ] } ], "team_scrim_requests_by_pk": [ - 4180, + 4228, { "id": [ - 4762, + 4921, "uuid!" ] } ], "team_scrim_settings": [ - 4226, + 4274, { "distinct_on": [ - 4241, + 4289, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -138832,19 +141865,19 @@ export default { 38 ], "order_by": [ - 4239, + 4287, "[team_scrim_settings_order_by!]" ], "where": [ - 4230 + 4278 ] } ], "team_scrim_settings_aggregate": [ - 4227, + 4275, { "distinct_on": [ - 4241, + 4289, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -138854,28 +141887,28 @@ export default { 38 ], "order_by": [ - 4239, + 4287, "[team_scrim_settings_order_by!]" ], "where": [ - 4230 + 4278 ] } ], "team_scrim_settings_by_pk": [ - 4226, + 4274, { "id": [ - 4762, + 4921, "uuid!" ] } ], "team_suggestions": [ - 4254, + 4302, { "distinct_on": [ - 4268, + 4316, "[team_suggestions_select_column!]" ], "limit": [ @@ -138885,19 +141918,19 @@ export default { 38 ], "order_by": [ - 4266, + 4314, "[team_suggestions_order_by!]" ], "where": [ - 4258 + 4306 ] } ], "team_suggestions_aggregate": [ - 4255, + 4303, { "distinct_on": [ - 4268, + 4316, "[team_suggestions_select_column!]" ], "limit": [ @@ -138907,28 +141940,28 @@ export default { 38 ], "order_by": [ - 4266, + 4314, "[team_suggestions_order_by!]" ], "where": [ - 4258 + 4306 ] } ], "team_suggestions_by_pk": [ - 4254, + 4302, { "id": [ - 4762, + 4921, "uuid!" ] } ], "teams": [ - 4281, + 4329, { "distinct_on": [ - 4303, + 4353, "[teams_select_column!]" ], "limit": [ @@ -138938,19 +141971,19 @@ export default { 38 ], "order_by": [ - 4301, + 4351, "[teams_order_by!]" ], "where": [ - 4290 + 4340 ] } ], "teams_aggregate": [ - 4282, + 4330, { "distinct_on": [ - 4303, + 4353, "[teams_select_column!]" ], "limit": [ @@ -138960,19 +141993,19 @@ export default { 38 ], "order_by": [ - 4301, + 4351, "[teams_order_by!]" ], "where": [ - 4290 + 4340 ] } ], "teams_by_pk": [ - 4281, + 4329, { "id": [ - 4762, + 4921, "uuid!" ] } @@ -138981,10 +142014,10 @@ export default { 86 ], "tournament_brackets": [ - 4326, + 4378, { "distinct_on": [ - 4350, + 4402, "[tournament_brackets_select_column!]" ], "limit": [ @@ -138994,19 +142027,19 @@ export default { 38 ], "order_by": [ - 4348, + 4400, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4389 ] } ], "tournament_brackets_aggregate": [ - 4327, + 4379, { "distinct_on": [ - 4350, + 4402, "[tournament_brackets_select_column!]" ], "limit": [ @@ -139016,28 +142049,142 @@ export default { 38 ], "order_by": [ - 4348, + 4400, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4389 ] } ], "tournament_brackets_by_pk": [ - 4326, + 4378, { "id": [ - 4762, + 4921, + "uuid!" + ] + } + ], + "tournament_categories": [ + 4424, + { + "distinct_on": [ + 4442, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4440, + "[tournament_categories_order_by!]" + ], + "where": [ + 4431 + ] + } + ], + "tournament_categories_aggregate": [ + 4425, + { + "distinct_on": [ + 4442, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4440, + "[tournament_categories_order_by!]" + ], + "where": [ + 4431 + ] + } + ], + "tournament_categories_by_pk": [ + 4424, + { + "category": [ + 1170, + "e_tournament_categories_enum!" + ], + "tournament_id": [ + 4921, + "uuid!" + ] + } + ], + "tournament_organizer_teams": [ + 4448, + { + "distinct_on": [ + 4466, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4464, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 4455 + ] + } + ], + "tournament_organizer_teams_aggregate": [ + 4449, + { + "distinct_on": [ + 4466, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4464, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 4455 + ] + } + ], + "tournament_organizer_teams_by_pk": [ + 4448, + { + "team_id": [ + 4921, + "uuid!" + ], + "tournament_id": [ + 4921, "uuid!" ] } ], "tournament_organizers": [ - 4372, + 4472, { "distinct_on": [ - 4393, + 4493, "[tournament_organizers_select_column!]" ], "limit": [ @@ -139047,19 +142194,19 @@ export default { 38 ], "order_by": [ - 4391, + 4491, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4481 ] } ], "tournament_organizers_aggregate": [ - 4373, + 4473, { "distinct_on": [ - 4393, + 4493, "[tournament_organizers_select_column!]" ], "limit": [ @@ -139069,32 +142216,85 @@ export default { 38 ], "order_by": [ - 4391, + 4491, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4481 ] } ], "tournament_organizers_by_pk": [ - 4372, + 4472, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4762, + 4921, + "uuid!" + ] + } + ], + "tournament_prizes": [ + 4513, + { + "distinct_on": [ + 4534, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4532, + "[tournament_prizes_order_by!]" + ], + "where": [ + 4522 + ] + } + ], + "tournament_prizes_aggregate": [ + 4514, + { + "distinct_on": [ + 4534, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4532, + "[tournament_prizes_order_by!]" + ], + "where": [ + 4522 + ] + } + ], + "tournament_prizes_by_pk": [ + 4513, + { + "id": [ + 4921, "uuid!" ] } ], "tournament_stage_windows": [ - 4413, + 4554, { "distinct_on": [ - 4434, + 4575, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -139104,19 +142304,19 @@ export default { 38 ], "order_by": [ - 4432, + 4573, "[tournament_stage_windows_order_by!]" ], "where": [ - 4422 + 4563 ] } ], "tournament_stage_windows_aggregate": [ - 4414, + 4555, { "distinct_on": [ - 4434, + 4575, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -139126,28 +142326,28 @@ export default { 38 ], "order_by": [ - 4432, + 4573, "[tournament_stage_windows_order_by!]" ], "where": [ - 4422 + 4563 ] } ], "tournament_stage_windows_by_pk": [ - 4413, + 4554, { "id": [ - 4762, + 4921, "uuid!" ] } ], "tournament_stages": [ - 4454, + 4595, { "distinct_on": [ - 4483, + 4624, "[tournament_stages_select_column!]" ], "limit": [ @@ -139157,19 +142357,19 @@ export default { 38 ], "order_by": [ - 4480, + 4621, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4607 ] } ], "tournament_stages_aggregate": [ - 4455, + 4596, { "distinct_on": [ - 4483, + 4624, "[tournament_stages_select_column!]" ], "limit": [ @@ -139179,28 +142379,28 @@ export default { 38 ], "order_by": [ - 4480, + 4621, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4607 ] } ], "tournament_stages_by_pk": [ - 4454, + 4595, { "id": [ - 4762, + 4921, "uuid!" ] } ], "tournament_team_invites": [ - 4505, + 4646, { "distinct_on": [ - 4526, + 4667, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -139210,19 +142410,19 @@ export default { 38 ], "order_by": [ - 4524, + 4665, "[tournament_team_invites_order_by!]" ], "where": [ - 4514 + 4655 ] } ], "tournament_team_invites_aggregate": [ - 4506, + 4647, { "distinct_on": [ - 4526, + 4667, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -139232,28 +142432,28 @@ export default { 38 ], "order_by": [ - 4524, + 4665, "[tournament_team_invites_order_by!]" ], "where": [ - 4514 + 4655 ] } ], "tournament_team_invites_by_pk": [ - 4505, + 4646, { "id": [ - 4762, + 4921, "uuid!" ] } ], "tournament_team_roster": [ - 4546, + 4687, { "distinct_on": [ - 4567, + 4708, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -139263,19 +142463,19 @@ export default { 38 ], "order_by": [ - 4565, + 4706, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4696 ] } ], "tournament_team_roster_aggregate": [ - 4547, + 4688, { "distinct_on": [ - 4567, + 4708, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -139285,32 +142485,32 @@ export default { 38 ], "order_by": [ - 4565, + 4706, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4696 ] } ], "tournament_team_roster_by_pk": [ - 4546, + 4687, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4762, + 4921, "uuid!" ] } ], "tournament_teams": [ - 4587, + 4728, { "distinct_on": [ - 4609, + 4750, "[tournament_teams_select_column!]" ], "limit": [ @@ -139320,19 +142520,19 @@ export default { 38 ], "order_by": [ - 4607, + 4748, "[tournament_teams_order_by!]" ], "where": [ - 4596 + 4737 ] } ], "tournament_teams_aggregate": [ - 4588, + 4729, { "distinct_on": [ - 4609, + 4750, "[tournament_teams_select_column!]" ], "limit": [ @@ -139342,28 +142542,28 @@ export default { 38 ], "order_by": [ - 4607, + 4748, "[tournament_teams_order_by!]" ], "where": [ - 4596 + 4737 ] } ], "tournament_teams_by_pk": [ - 4587, + 4728, { "id": [ - 4762, + 4921, "uuid!" ] } ], "tournament_trophies": [ - 4629, + 4770, { "distinct_on": [ - 4652, + 4793, "[tournament_trophies_select_column!]" ], "limit": [ @@ -139373,19 +142573,19 @@ export default { 38 ], "order_by": [ - 4650, + 4791, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4781 ] } ], "tournament_trophies_aggregate": [ - 4630, + 4771, { "distinct_on": [ - 4652, + 4793, "[tournament_trophies_select_column!]" ], "limit": [ @@ -139395,28 +142595,28 @@ export default { 38 ], "order_by": [ - 4650, + 4791, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4781 ] } ], "tournament_trophies_by_pk": [ - 4629, + 4770, { "id": [ - 4762, + 4921, "uuid!" ] } ], "tournament_trophy_configs": [ - 4674, + 4815, { "distinct_on": [ - 4696, + 4837, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -139426,19 +142626,19 @@ export default { 38 ], "order_by": [ - 4694, + 4835, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4683 + 4824 ] } ], "tournament_trophy_configs_aggregate": [ - 4675, + 4816, { "distinct_on": [ - 4696, + 4837, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -139448,28 +142648,28 @@ export default { 38 ], "order_by": [ - 4694, + 4835, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4683 + 4824 ] } ], "tournament_trophy_configs_by_pk": [ - 4674, + 4815, { "id": [ - 4762, + 4921, "uuid!" ] } ], "tournaments": [ - 4716, + 4857, { "distinct_on": [ - 4740, + 4891, "[tournaments_select_column!]" ], "limit": [ @@ -139479,19 +142679,19 @@ export default { 38 ], "order_by": [ - 4738, + 4889, "[tournaments_order_by!]" ], "where": [ - 4727 + 4878 ] } ], "tournaments_aggregate": [ - 4717, + 4858, { "distinct_on": [ - 4740, + 4891, "[tournaments_select_column!]" ], "limit": [ @@ -139501,28 +142701,28 @@ export default { 38 ], "order_by": [ - 4738, + 4889, "[tournaments_order_by!]" ], "where": [ - 4727 + 4878 ] } ], "tournaments_by_pk": [ - 4716, + 4857, { "id": [ - 4762, + 4921, "uuid!" ] } ], "v_event_player_stats": [ - 4765, + 4924, { "distinct_on": [ - 4791, + 4950, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -139532,19 +142732,19 @@ export default { 38 ], "order_by": [ - 4790, + 4949, "[v_event_player_stats_order_by!]" ], "where": [ - 4784 + 4943 ] } ], "v_event_player_stats_aggregate": [ - 4766, + 4925, { "distinct_on": [ - 4791, + 4950, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -139554,19 +142754,19 @@ export default { 38 ], "order_by": [ - 4790, + 4949, "[v_event_player_stats_order_by!]" ], "where": [ - 4784 + 4943 ] } ], "v_gpu_pool_status": [ - 4816, + 4975, { "distinct_on": [ - 4824, + 4983, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -139576,19 +142776,19 @@ export default { 38 ], "order_by": [ - 4823, + 4982, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4820 + 4979 ] } ], "v_gpu_pool_status_aggregate": [ - 4817, + 4976, { "distinct_on": [ - 4824, + 4983, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -139598,19 +142798,19 @@ export default { 38 ], "order_by": [ - 4823, + 4982, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4820 + 4979 ] } ], "v_league_division_standings": [ - 4834, + 4993, { "distinct_on": [ - 4850, + 5009, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -139620,19 +142820,19 @@ export default { 38 ], "order_by": [ - 4849, + 5008, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 5002 ] } ], "v_league_division_standings_aggregate": [ - 4835, + 4994, { "distinct_on": [ - 4850, + 5009, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -139642,19 +142842,19 @@ export default { 38 ], "order_by": [ - 4849, + 5008, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 5002 ] } ], "v_league_season_player_stats": [ - 4867, + 5026, { "distinct_on": [ - 4893, + 5052, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -139664,19 +142864,19 @@ export default { 38 ], "order_by": [ - 4892, + 5051, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4886 + 5045 ] } ], "v_league_season_player_stats_aggregate": [ - 4868, + 5027, { "distinct_on": [ - 4893, + 5052, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -139686,19 +142886,19 @@ export default { 38 ], "order_by": [ - 4892, + 5051, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4886 + 5045 ] } ], "v_match_captains": [ - 4918, + 5077, { "distinct_on": [ - 4930, + 5089, "[v_match_captains_select_column!]" ], "limit": [ @@ -139708,19 +142908,19 @@ export default { 38 ], "order_by": [ - 4929, + 5088, "[v_match_captains_order_by!]" ], "where": [ - 4922 + 5081 ] } ], "v_match_captains_aggregate": [ - 4919, + 5078, { "distinct_on": [ - 4930, + 5089, "[v_match_captains_select_column!]" ], "limit": [ @@ -139730,19 +142930,19 @@ export default { 38 ], "order_by": [ - 4929, + 5088, "[v_match_captains_order_by!]" ], "where": [ - 4922 + 5081 ] } ], "v_match_clutches": [ - 4942, + 5101, { "distinct_on": [ - 4958, + 5117, "[v_match_clutches_select_column!]" ], "limit": [ @@ -139752,19 +142952,19 @@ export default { 38 ], "order_by": [ - 4957, + 5116, "[v_match_clutches_order_by!]" ], "where": [ - 4951 + 5110 ] } ], "v_match_clutches_aggregate": [ - 4943, + 5102, { "distinct_on": [ - 4958, + 5117, "[v_match_clutches_select_column!]" ], "limit": [ @@ -139774,19 +142974,19 @@ export default { 38 ], "order_by": [ - 4957, + 5116, "[v_match_clutches_order_by!]" ], "where": [ - 4951 + 5110 ] } ], "v_match_kill_pairs": [ - 4975, + 5134, { "distinct_on": [ - 4983, + 5142, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -139796,19 +142996,19 @@ export default { 38 ], "order_by": [ - 4982, + 5141, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4979 + 5138 ] } ], "v_match_kill_pairs_aggregate": [ - 4976, + 5135, { "distinct_on": [ - 4983, + 5142, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -139818,19 +143018,19 @@ export default { 38 ], "order_by": [ - 4982, + 5141, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4979 + 5138 ] } ], "v_match_lineup_buy_types": [ - 4993, + 5152, { "distinct_on": [ - 5001, + 5160, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -139840,19 +143040,19 @@ export default { 38 ], "order_by": [ - 5000, + 5159, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4997 + 5156 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4994, + 5153, { "distinct_on": [ - 5001, + 5160, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -139862,19 +143062,19 @@ export default { 38 ], "order_by": [ - 5000, + 5159, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4997 + 5156 ] } ], "v_match_lineup_map_stats": [ - 5011, + 5170, { "distinct_on": [ - 5019, + 5178, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -139884,19 +143084,19 @@ export default { 38 ], "order_by": [ - 5018, + 5177, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5015 + 5174 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5012, + 5171, { "distinct_on": [ - 5019, + 5178, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -139906,19 +143106,19 @@ export default { 38 ], "order_by": [ - 5018, + 5177, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5015 + 5174 ] } ], "v_match_map_backup_rounds": [ - 5029, + 5188, { "distinct_on": [ - 5040, + 5199, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -139928,19 +143128,19 @@ export default { 38 ], "order_by": [ - 5039, + 5198, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5033 + 5192 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5030, + 5189, { "distinct_on": [ - 5040, + 5199, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -139950,19 +143150,19 @@ export default { 38 ], "order_by": [ - 5039, + 5198, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5033 + 5192 ] } ], "v_match_player_buy_types": [ - 5052, + 5211, { "distinct_on": [ - 5060, + 5219, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -139972,19 +143172,19 @@ export default { 38 ], "order_by": [ - 5059, + 5218, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5056 + 5215 ] } ], "v_match_player_buy_types_aggregate": [ - 5053, + 5212, { "distinct_on": [ - 5060, + 5219, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -139994,19 +143194,19 @@ export default { 38 ], "order_by": [ - 5059, + 5218, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5056 + 5215 ] } ], "v_match_player_opening_duels": [ - 5070, + 5229, { "distinct_on": [ - 5086, + 5245, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -140016,19 +143216,19 @@ export default { 38 ], "order_by": [ - 5085, + 5244, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5079 + 5238 ] } ], "v_match_player_opening_duels_aggregate": [ - 5071, + 5230, { "distinct_on": [ - 5086, + 5245, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -140038,19 +143238,19 @@ export default { 38 ], "order_by": [ - 5085, + 5244, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5079 + 5238 ] } ], "v_player_arch_nemesis": [ - 5103, + 5262, { "distinct_on": [ - 5111, + 5270, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -140060,19 +143260,19 @@ export default { 38 ], "order_by": [ - 5110, + 5269, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5107 + 5266 ] } ], "v_player_arch_nemesis_aggregate": [ - 5104, + 5263, { "distinct_on": [ - 5111, + 5270, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -140082,19 +143282,19 @@ export default { 38 ], "order_by": [ - 5110, + 5269, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5107 + 5266 ] } ], "v_player_damage": [ - 5121, + 5280, { "distinct_on": [ - 5129, + 5288, "[v_player_damage_select_column!]" ], "limit": [ @@ -140104,19 +143304,19 @@ export default { 38 ], "order_by": [ - 5128, + 5287, "[v_player_damage_order_by!]" ], "where": [ - 5125 + 5284 ] } ], "v_player_damage_aggregate": [ - 5122, + 5281, { "distinct_on": [ - 5129, + 5288, "[v_player_damage_select_column!]" ], "limit": [ @@ -140126,19 +143326,19 @@ export default { 38 ], "order_by": [ - 5128, + 5287, "[v_player_damage_order_by!]" ], "where": [ - 5125 + 5284 ] } ], "v_player_elo": [ - 5139, + 5298, { "distinct_on": [ - 5165, + 5324, "[v_player_elo_select_column!]" ], "limit": [ @@ -140148,19 +143348,19 @@ export default { 38 ], "order_by": [ - 5164, + 5323, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 5317 ] } ], "v_player_elo_aggregate": [ - 5140, + 5299, { "distinct_on": [ - 5165, + 5324, "[v_player_elo_select_column!]" ], "limit": [ @@ -140170,19 +143370,19 @@ export default { 38 ], "order_by": [ - 5164, + 5323, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 5317 ] } ], "v_player_map_losses": [ - 5190, + 5349, { "distinct_on": [ - 5198, + 5357, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -140192,19 +143392,19 @@ export default { 38 ], "order_by": [ - 5197, + 5356, "[v_player_map_losses_order_by!]" ], "where": [ - 5194 + 5353 ] } ], "v_player_map_losses_aggregate": [ - 5191, + 5350, { "distinct_on": [ - 5198, + 5357, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -140214,19 +143414,19 @@ export default { 38 ], "order_by": [ - 5197, + 5356, "[v_player_map_losses_order_by!]" ], "where": [ - 5194 + 5353 ] } ], "v_player_map_wins": [ - 5208, + 5367, { "distinct_on": [ - 5216, + 5375, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -140236,19 +143436,19 @@ export default { 38 ], "order_by": [ - 5215, + 5374, "[v_player_map_wins_order_by!]" ], "where": [ - 5212 + 5371 ] } ], "v_player_map_wins_aggregate": [ - 5209, + 5368, { "distinct_on": [ - 5216, + 5375, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -140258,19 +143458,19 @@ export default { 38 ], "order_by": [ - 5215, + 5374, "[v_player_map_wins_order_by!]" ], "where": [ - 5212 + 5371 ] } ], "v_player_match_head_to_head": [ - 5226, + 5385, { "distinct_on": [ - 5234, + 5393, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -140280,19 +143480,19 @@ export default { 38 ], "order_by": [ - 5233, + 5392, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5230 + 5389 ] } ], "v_player_match_head_to_head_aggregate": [ - 5227, + 5386, { "distinct_on": [ - 5234, + 5393, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -140302,19 +143502,19 @@ export default { 38 ], "order_by": [ - 5233, + 5392, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5230 + 5389 ] } ], "v_player_match_map_hltv": [ - 5244, + 5403, { "distinct_on": [ - 5262, + 5421, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -140324,19 +143524,19 @@ export default { 38 ], "order_by": [ - 5261, + 5420, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5253 + 5412 ] } ], "v_player_match_map_hltv_aggregate": [ - 5245, + 5404, { "distinct_on": [ - 5262, + 5421, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -140346,19 +143546,19 @@ export default { 38 ], "order_by": [ - 5261, + 5420, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5253 + 5412 ] } ], "v_player_match_map_roles": [ - 5281, + 5440, { "distinct_on": [ - 5289, + 5448, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -140368,19 +143568,19 @@ export default { 38 ], "order_by": [ - 5288, + 5447, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5285 + 5444 ] } ], "v_player_match_map_roles_aggregate": [ - 5282, + 5441, { "distinct_on": [ - 5289, + 5448, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -140390,19 +143590,19 @@ export default { 38 ], "order_by": [ - 5288, + 5447, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5285 + 5444 ] } ], "v_player_match_performance": [ - 5299, + 5458, { "distinct_on": [ - 5307, + 5466, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -140412,19 +143612,19 @@ export default { 38 ], "order_by": [ - 5306, + 5465, "[v_player_match_performance_order_by!]" ], "where": [ - 5303 + 5462 ] } ], "v_player_match_performance_aggregate": [ - 5300, + 5459, { "distinct_on": [ - 5307, + 5466, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -140434,19 +143634,19 @@ export default { 38 ], "order_by": [ - 5306, + 5465, "[v_player_match_performance_order_by!]" ], "where": [ - 5303 + 5462 ] } ], "v_player_match_rating": [ - 5317, + 5476, { "distinct_on": [ - 5325, + 5484, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -140456,19 +143656,19 @@ export default { 38 ], "order_by": [ - 5324, + 5483, "[v_player_match_rating_order_by!]" ], "where": [ - 5321 + 5480 ] } ], "v_player_match_rating_aggregate": [ - 5318, + 5477, { "distinct_on": [ - 5325, + 5484, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -140478,19 +143678,19 @@ export default { 38 ], "order_by": [ - 5324, + 5483, "[v_player_match_rating_order_by!]" ], "where": [ - 5321 + 5480 ] } ], "v_player_multi_kills": [ - 5335, + 5494, { "distinct_on": [ - 5351, + 5510, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -140500,19 +143700,19 @@ export default { 38 ], "order_by": [ - 5350, + 5509, "[v_player_multi_kills_order_by!]" ], "where": [ - 5344 + 5503 ] } ], "v_player_multi_kills_aggregate": [ - 5336, + 5495, { "distinct_on": [ - 5351, + 5510, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -140522,19 +143722,19 @@ export default { 38 ], "order_by": [ - 5350, + 5509, "[v_player_multi_kills_order_by!]" ], "where": [ - 5344 + 5503 ] } ], "v_player_weapon_damage": [ - 5368, + 5527, { "distinct_on": [ - 5376, + 5535, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -140544,19 +143744,19 @@ export default { 38 ], "order_by": [ - 5375, + 5534, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5372 + 5531 ] } ], "v_player_weapon_damage_aggregate": [ - 5369, + 5528, { "distinct_on": [ - 5376, + 5535, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -140566,19 +143766,19 @@ export default { 38 ], "order_by": [ - 5375, + 5534, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5372 + 5531 ] } ], "v_player_weapon_kills": [ - 5386, + 5545, { "distinct_on": [ - 5394, + 5553, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -140588,19 +143788,19 @@ export default { 38 ], "order_by": [ - 5393, + 5552, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5390 + 5549 ] } ], "v_player_weapon_kills_aggregate": [ - 5387, + 5546, { "distinct_on": [ - 5394, + 5553, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -140610,19 +143810,19 @@ export default { 38 ], "order_by": [ - 5393, + 5552, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5390 + 5549 ] } ], "v_pool_maps": [ - 5404, + 5563, { "distinct_on": [ - 5421, + 5580, "[v_pool_maps_select_column!]" ], "limit": [ @@ -140632,19 +143832,19 @@ export default { 38 ], "order_by": [ - 5420, + 5579, "[v_pool_maps_order_by!]" ], "where": [ - 5413 + 5572 ] } ], "v_pool_maps_aggregate": [ - 5405, + 5564, { "distinct_on": [ - 5421, + 5580, "[v_pool_maps_select_column!]" ], "limit": [ @@ -140654,19 +143854,19 @@ export default { 38 ], "order_by": [ - 5420, + 5579, "[v_pool_maps_order_by!]" ], "where": [ - 5413 + 5572 ] } ], "v_steam_account_pool_status": [ - 5428, + 5587, { "distinct_on": [ - 5436, + 5595, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -140676,19 +143876,19 @@ export default { 38 ], "order_by": [ - 5435, + 5594, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5432 + 5591 ] } ], "v_steam_account_pool_status_aggregate": [ - 5429, + 5588, { "distinct_on": [ - 5436, + 5595, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -140698,19 +143898,19 @@ export default { 38 ], "order_by": [ - 5435, + 5594, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5432 + 5591 ] } ], "v_team_ranks": [ - 5446, + 5605, { "distinct_on": [ - 5456, + 5615, "[v_team_ranks_select_column!]" ], "limit": [ @@ -140720,19 +143920,19 @@ export default { 38 ], "order_by": [ - 5455, + 5614, "[v_team_ranks_order_by!]" ], "where": [ - 5450 + 5609 ] } ], "v_team_ranks_aggregate": [ - 5447, + 5606, { "distinct_on": [ - 5456, + 5615, "[v_team_ranks_select_column!]" ], "limit": [ @@ -140742,19 +143942,19 @@ export default { 38 ], "order_by": [ - 5455, + 5614, "[v_team_ranks_order_by!]" ], "where": [ - 5450 + 5609 ] } ], "v_team_reputation": [ - 5466, + 5625, { "distinct_on": [ - 5476, + 5635, "[v_team_reputation_select_column!]" ], "limit": [ @@ -140764,19 +143964,19 @@ export default { 38 ], "order_by": [ - 5475, + 5634, "[v_team_reputation_order_by!]" ], "where": [ - 5470 + 5629 ] } ], "v_team_reputation_aggregate": [ - 5467, + 5626, { "distinct_on": [ - 5476, + 5635, "[v_team_reputation_select_column!]" ], "limit": [ @@ -140786,19 +143986,19 @@ export default { 38 ], "order_by": [ - 5475, + 5634, "[v_team_reputation_order_by!]" ], "where": [ - 5470 + 5629 ] } ], "v_team_stage_results": [ - 5486, + 5645, { "distinct_on": [ - 5518, + 5677, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -140808,19 +144008,19 @@ export default { 38 ], "order_by": [ - 5516, + 5675, "[v_team_stage_results_order_by!]" ], "where": [ - 5505 + 5664 ] } ], "v_team_stage_results_aggregate": [ - 5487, + 5646, { "distinct_on": [ - 5518, + 5677, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -140830,32 +144030,32 @@ export default { 38 ], "order_by": [ - 5516, + 5675, "[v_team_stage_results_order_by!]" ], "where": [ - 5505 + 5664 ] } ], "v_team_stage_results_by_pk": [ - 5486, + 5645, { "tournament_stage_id": [ - 4762, + 4921, "uuid!" ], "tournament_team_id": [ - 4762, + 4921, "uuid!" ] } ], "v_team_tournament_results": [ - 5546, + 5705, { "distinct_on": [ - 5572, + 5731, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -140865,19 +144065,19 @@ export default { 38 ], "order_by": [ - 5571, + 5730, "[v_team_tournament_results_order_by!]" ], "where": [ - 5565 + 5724 ] } ], "v_team_tournament_results_aggregate": [ - 5547, + 5706, { "distinct_on": [ - 5572, + 5731, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -140887,19 +144087,19 @@ export default { 38 ], "order_by": [ - 5571, + 5730, "[v_team_tournament_results_order_by!]" ], "where": [ - 5565 + 5724 ] } ], "v_tournament_player_stats": [ - 5597, + 5756, { "distinct_on": [ - 5623, + 5782, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -140909,19 +144109,19 @@ export default { 38 ], "order_by": [ - 5622, + 5781, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5616 + 5775 ] } ], "v_tournament_player_stats_aggregate": [ - 5598, + 5757, { "distinct_on": [ - 5623, + 5782, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -140931,11 +144131,11 @@ export default { 38 ], "order_by": [ - 5622, + 5781, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5616 + 5775 ] } ], @@ -140948,7 +144148,7 @@ export default { 55, { "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -140957,17 +144157,17 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ], "reset_status": [ 78 ], "scheduled_at": [ - 4324 + 4376 ], "winning_lineup_id": [ - 4762 + 4921 ] } ], @@ -140975,7 +144175,7 @@ export default { 81, { "invite_id": [ - 4762, + 4921, "uuid!" ], "type": [ @@ -140988,7 +144188,7 @@ export default { 81, { "draftGameId": [ - 4762, + 4921, "uuid!" ], "steamId": [ @@ -141027,14 +144227,14 @@ export default { } ], "approve_league_season_movements": [ - 1888, + 1936, { "args": [ 179, "approve_league_season_movements_args!" ], "distinct_on": [ - 1909, + 1957, "[league_team_movements_select_column!]" ], "limit": [ @@ -141044,11 +144244,11 @@ export default { 38 ], "order_by": [ - 1907, + 1955, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1945 ] } ], @@ -141074,7 +144274,7 @@ export default { 81, { "game_server_node_id": [ - 4762, + 4921, "uuid!" ] } @@ -141095,7 +144295,7 @@ export default { 81, { "game_server_node_id": [ - 4762, + 4921, "uuid!" ] } @@ -141104,7 +144304,7 @@ export default { 81, { "job_id": [ - 4762, + 4921, "uuid!" ] } @@ -141113,7 +144313,7 @@ export default { 81, { "match_map_id": [ - 4762, + 4921, "uuid!" ] } @@ -141122,7 +144322,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -141140,7 +144340,7 @@ export default { 81, { "request_id": [ - 4762, + 4921, "uuid!" ] } @@ -141149,7 +144349,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -141158,7 +144358,7 @@ export default { 81, { "match_map_id": [ - 4762, + 4921, "uuid!" ] } @@ -141176,14 +144376,14 @@ export default { } ], "clone_league_season": [ - 1855, + 1903, { "args": [ 235, "clone_league_season_args!" ], "distinct_on": [ - 1875, + 1923, "[league_seasons_select_column!]" ], "limit": [ @@ -141193,11 +144393,11 @@ export default { 38 ], "order_by": [ - 1872, + 1920, "[league_seasons_order_by!]" ], "where": [ - 1860 + 1908 ] } ], @@ -141205,11 +144405,11 @@ export default { 81, { "proposed_scheduled_at": [ - 4324, + 4376, "timestamptz!" ], "request_id": [ - 4762, + 4921, "uuid!" ] } @@ -141230,7 +144430,7 @@ export default { 38 ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "preset": [ @@ -141265,7 +144465,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -141274,7 +144474,7 @@ export default { 14, { "settings": [ - 1652, + 1700, "jsonb!" ] } @@ -141291,7 +144491,7 @@ export default { "ScheduledLineupInput!" ], "options": [ - 1652, + 1700, "jsonb!" ], "scheduled_at": [ @@ -141320,7 +144520,7 @@ export default { 81, { "clip_id": [ - 4762, + 4921, "uuid!" ] } @@ -141338,7 +144538,7 @@ export default { 81, { "id": [ - 4762, + 4921, "uuid!" ] } @@ -141372,7 +144572,7 @@ export default { 81, { "tournament_id": [ - 4762, + 4921, "uuid!" ] } @@ -141390,11 +144590,11 @@ export default { 92, { "map_id": [ - 4762, + 4921, "uuid!" ], "map_pool_id": [ - 4762, + 4921, "uuid!" ] } @@ -141412,7 +144612,7 @@ export default { 111, { "id": [ - 4762, + 4921, "uuid!" ] } @@ -141430,7 +144630,7 @@ export default { 152, { "id": [ - 4762, + 4921, "uuid!" ] } @@ -141448,61 +144648,79 @@ export default { 185, { "id": [ - 4762, + 4921, "uuid!" ] } ], - "delete_db_backups": [ + "delete_custom_pages": [ 247, { "where": [ 241, + "custom_pages_bool_exp!" + ] + } + ], + "delete_custom_pages_by_pk": [ + 237, + { + "id": [ + 4921, + "uuid!" + ] + } + ], + "delete_db_backups": [ + 274, + { + "where": [ + 268, "db_backups_bool_exp!" ] } ], "delete_db_backups_by_pk": [ - 237, + 264, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_draft_game_picks": [ - 283, + 310, { "where": [ - 275, + 302, "draft_game_picks_bool_exp!" ] } ], "delete_draft_game_picks_by_pk": [ - 264, + 291, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_draft_game_players": [ - 328, + 355, { "where": [ - 320, + 347, "draft_game_players_bool_exp!" ] } ], "delete_draft_game_players_by_pk": [ - 309, + 336, { "draft_game_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -141512,34 +144730,34 @@ export default { } ], "delete_draft_games": [ - 373, + 400, { "where": [ - 365, + 392, "draft_games_bool_exp!" ] } ], "delete_draft_games_by_pk": [ - 354, + 381, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_e_check_in_settings": [ - 410, + 437, { "where": [ - 403, + 430, "e_check_in_settings_bool_exp!" ] } ], "delete_e_check_in_settings_by_pk": [ - 400, + 427, { "value": [ 78, @@ -141548,16 +144766,16 @@ export default { } ], "delete_e_draft_game_captain_selection": [ - 430, + 457, { "where": [ - 423, + 450, "e_draft_game_captain_selection_bool_exp!" ] } ], "delete_e_draft_game_captain_selection_by_pk": [ - 420, + 447, { "value": [ 78, @@ -141566,16 +144784,16 @@ export default { } ], "delete_e_draft_game_draft_order": [ - 451, + 478, { "where": [ - 444, + 471, "e_draft_game_draft_order_bool_exp!" ] } ], "delete_e_draft_game_draft_order_by_pk": [ - 441, + 468, { "value": [ 78, @@ -141584,16 +144802,16 @@ export default { } ], "delete_e_draft_game_mode": [ - 472, + 499, { "where": [ - 465, + 492, "e_draft_game_mode_bool_exp!" ] } ], "delete_e_draft_game_mode_by_pk": [ - 462, + 489, { "value": [ 78, @@ -141602,16 +144820,16 @@ export default { } ], "delete_e_draft_game_player_status": [ - 493, + 520, { "where": [ - 486, + 513, "e_draft_game_player_status_bool_exp!" ] } ], "delete_e_draft_game_player_status_by_pk": [ - 483, + 510, { "value": [ 78, @@ -141620,16 +144838,16 @@ export default { } ], "delete_e_draft_game_status": [ - 514, + 541, { "where": [ - 507, + 534, "e_draft_game_status_bool_exp!" ] } ], "delete_e_draft_game_status_by_pk": [ - 504, + 531, { "value": [ 78, @@ -141638,16 +144856,16 @@ export default { } ], "delete_e_event_media_access": [ - 535, + 562, { "where": [ - 528, + 555, "e_event_media_access_bool_exp!" ] } ], "delete_e_event_media_access_by_pk": [ - 525, + 552, { "value": [ 78, @@ -141656,16 +144874,16 @@ export default { } ], "delete_e_event_visibility": [ - 555, + 582, { "where": [ - 548, + 575, "e_event_visibility_bool_exp!" ] } ], "delete_e_event_visibility_by_pk": [ - 545, + 572, { "value": [ 78, @@ -141674,16 +144892,16 @@ export default { } ], "delete_e_friend_status": [ - 575, + 602, { "where": [ - 568, + 595, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 565, + 592, { "value": [ 78, @@ -141692,16 +144910,16 @@ export default { } ], "delete_e_game_cfg_types": [ - 596, + 623, { "where": [ - 589, + 616, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 586, + 613, { "value": [ 78, @@ -141710,16 +144928,16 @@ export default { } ], "delete_e_game_server_node_statuses": [ - 616, + 643, { "where": [ - 609, + 636, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 606, + 633, { "value": [ 78, @@ -141728,16 +144946,16 @@ export default { } ], "delete_e_league_movement_types": [ - 637, + 664, { "where": [ - 630, + 657, "e_league_movement_types_bool_exp!" ] } ], "delete_e_league_movement_types_by_pk": [ - 627, + 654, { "value": [ 78, @@ -141746,16 +144964,16 @@ export default { } ], "delete_e_league_proposal_statuses": [ - 658, + 685, { "where": [ - 651, + 678, "e_league_proposal_statuses_bool_exp!" ] } ], "delete_e_league_proposal_statuses_by_pk": [ - 648, + 675, { "value": [ 78, @@ -141764,16 +144982,16 @@ export default { } ], "delete_e_league_registration_statuses": [ - 679, + 706, { "where": [ - 672, + 699, "e_league_registration_statuses_bool_exp!" ] } ], "delete_e_league_registration_statuses_by_pk": [ - 669, + 696, { "value": [ 78, @@ -141782,16 +145000,16 @@ export default { } ], "delete_e_league_season_statuses": [ - 700, + 727, { "where": [ - 693, + 720, "e_league_season_statuses_bool_exp!" ] } ], "delete_e_league_season_statuses_by_pk": [ - 690, + 717, { "value": [ 78, @@ -141800,16 +145018,16 @@ export default { } ], "delete_e_lobby_access": [ - 721, + 748, { "where": [ - 714, + 741, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 711, + 738, { "value": [ 78, @@ -141818,16 +145036,16 @@ export default { } ], "delete_e_lobby_player_status": [ - 742, + 769, { "where": [ - 735, + 762, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 732, + 759, { "value": [ 78, @@ -141836,16 +145054,16 @@ export default { } ], "delete_e_map_pool_types": [ - 762, + 789, { "where": [ - 755, + 782, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 752, + 779, { "value": [ 78, @@ -141854,16 +145072,16 @@ export default { } ], "delete_e_match_clip_visibility": [ - 783, + 810, { "where": [ - 776, + 803, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 773, + 800, { "value": [ 78, @@ -141872,16 +145090,16 @@ export default { } ], "delete_e_match_map_status": [ - 803, + 830, { "where": [ - 796, + 823, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 793, + 820, { "value": [ 78, @@ -141890,16 +145108,16 @@ export default { } ], "delete_e_match_mode": [ - 824, + 851, { "where": [ - 817, + 844, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 814, + 841, { "value": [ 78, @@ -141908,16 +145126,16 @@ export default { } ], "delete_e_match_status": [ - 844, + 871, { "where": [ - 837, + 864, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 834, + 861, { "value": [ 78, @@ -141926,16 +145144,16 @@ export default { } ], "delete_e_match_types": [ - 865, + 892, { "where": [ - 858, + 885, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 855, + 882, { "value": [ 78, @@ -141944,16 +145162,16 @@ export default { } ], "delete_e_notification_types": [ - 886, + 913, { "where": [ - 879, + 906, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 876, + 903, { "value": [ 78, @@ -141962,16 +145180,16 @@ export default { } ], "delete_e_objective_types": [ - 906, + 933, { "where": [ - 899, + 926, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 896, + 923, { "value": [ 78, @@ -141980,16 +145198,16 @@ export default { } ], "delete_e_player_roles": [ - 926, + 953, { "where": [ - 919, + 946, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 916, + 943, { "value": [ 78, @@ -141998,16 +145216,16 @@ export default { } ], "delete_e_plugin_runtimes": [ - 946, + 973, { "where": [ - 939, + 966, "e_plugin_runtimes_bool_exp!" ] } ], "delete_e_plugin_runtimes_by_pk": [ - 936, + 963, { "value": [ 78, @@ -142016,16 +145234,16 @@ export default { } ], "delete_e_ready_settings": [ - 966, + 993, { "where": [ - 959, + 986, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 956, + 983, { "value": [ 78, @@ -142034,16 +145252,16 @@ export default { } ], "delete_e_sanction_types": [ - 986, + 1013, { "where": [ - 979, + 1006, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 976, + 1003, { "value": [ 78, @@ -142052,16 +145270,16 @@ export default { } ], "delete_e_scrim_request_statuses": [ - 1007, + 1034, { "where": [ - 1000, + 1027, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 997, + 1024, { "value": [ 78, @@ -142070,16 +145288,16 @@ export default { } ], "delete_e_server_types": [ - 1027, + 1054, { "where": [ - 1020, + 1047, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 1017, + 1044, { "value": [ 78, @@ -142088,16 +145306,16 @@ export default { } ], "delete_e_sides": [ - 1047, + 1074, { "where": [ - 1040, + 1067, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 1037, + 1064, { "value": [ 78, @@ -142106,16 +145324,16 @@ export default { } ], "delete_e_system_alert_types": [ - 1067, + 1094, { "where": [ - 1060, + 1087, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 1057, + 1084, { "value": [ 78, @@ -142124,16 +145342,16 @@ export default { } ], "delete_e_team_roles": [ - 1087, + 1114, { "where": [ - 1080, + 1107, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 1077, + 1104, { "value": [ 78, @@ -142142,16 +145360,16 @@ export default { } ], "delete_e_team_roster_statuses": [ - 1108, + 1135, { "where": [ - 1101, + 1128, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 1098, + 1125, { "value": [ 78, @@ -142160,16 +145378,34 @@ export default { } ], "delete_e_timeout_settings": [ - 1128, + 1155, { "where": [ - 1121, + 1148, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 1118, + 1145, + { + "value": [ + 78, + "String!" + ] + } + ], + "delete_e_tournament_categories": [ + 1175, + { + "where": [ + 1168, + "e_tournament_categories_bool_exp!" + ] + } + ], + "delete_e_tournament_categories_by_pk": [ + 1165, { "value": [ 78, @@ -142178,16 +145414,16 @@ export default { } ], "delete_e_tournament_stage_types": [ - 1148, + 1196, { "where": [ - 1141, + 1189, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 1138, + 1186, { "value": [ 78, @@ -142196,16 +145432,16 @@ export default { } ], "delete_e_tournament_status": [ - 1169, + 1217, { "where": [ - 1162, + 1210, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1159, + 1207, { "value": [ 78, @@ -142214,16 +145450,16 @@ export default { } ], "delete_e_utility_types": [ - 1190, + 1238, { "where": [ - 1183, + 1231, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1180, + 1228, { "value": [ 78, @@ -142232,16 +145468,16 @@ export default { } ], "delete_e_veto_pick_types": [ - 1210, + 1258, { "where": [ - 1203, + 1251, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1200, + 1248, { "value": [ 78, @@ -142250,16 +145486,16 @@ export default { } ], "delete_e_winning_reasons": [ - 1230, + 1278, { "where": [ - 1223, + 1271, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1220, + 1268, { "value": [ 78, @@ -142268,59 +145504,59 @@ export default { } ], "delete_event_match_links": [ - 1248, + 1296, { "where": [ - 1243, + 1291, "event_match_links_bool_exp!" ] } ], "delete_event_match_links_by_pk": [ - 1240, + 1288, { "event_id": [ - 4762, + 4921, "uuid!" ], "match_id": [ - 4762, + 4921, "uuid!" ] } ], "delete_event_media": [ - 1275, + 1323, { "where": [ - 1267, + 1315, "event_media_bool_exp!" ] } ], "delete_event_media_by_pk": [ - 1258, + 1306, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_event_media_players": [ - 1297, + 1345, { "where": [ - 1289, + 1337, "event_media_players_bool_exp!" ] } ], "delete_event_media_players_by_pk": [ - 1280, + 1328, { "media_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -142330,19 +145566,19 @@ export default { } ], "delete_event_organizers": [ - 1358, + 1406, { "where": [ - 1350, + 1398, "event_organizers_bool_exp!" ] } ], "delete_event_organizers_by_pk": [ - 1341, + 1389, { "event_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -142352,19 +145588,19 @@ export default { } ], "delete_event_players": [ - 1399, + 1447, { "where": [ - 1391, + 1439, "event_players_bool_exp!" ] } ], "delete_event_players_by_pk": [ - 1382, + 1430, { "event_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -142374,78 +145610,78 @@ export default { } ], "delete_event_teams": [ - 1437, + 1485, { "where": [ - 1430, + 1478, "event_teams_bool_exp!" ] } ], "delete_event_teams_by_pk": [ - 1423, + 1471, { "event_id": [ - 4762, + 4921, "uuid!" ], "team_id": [ - 4762, + 4921, "uuid!" ] } ], "delete_event_tournaments": [ - 1461, + 1509, { "where": [ - 1454, + 1502, "event_tournaments_bool_exp!" ] } ], "delete_event_tournaments_by_pk": [ - 1447, + 1495, { "event_id": [ - 4762, + 4921, "uuid!" ], "tournament_id": [ - 4762, + 4921, "uuid!" ] } ], "delete_events": [ - 1481, + 1529, { "where": [ - 1475, + 1523, "events_bool_exp!" ] } ], "delete_events_by_pk": [ - 1471, + 1519, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_friends": [ - 1511, + 1559, { "where": [ - 1505, + 1553, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1501, + 1549, { "other_player_steam_id": [ 180, @@ -142458,16 +145694,16 @@ export default { } ], "delete_game_server_nodes": [ - 1551, + 1599, { "where": [ - 1540, + 1588, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1528, + 1576, { "id": [ 78, @@ -142476,16 +145712,16 @@ export default { } ], "delete_game_versions": [ - 1593, + 1641, { "where": [ - 1584, + 1632, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1579, + 1627, { "build_id": [ 38, @@ -142494,172 +145730,172 @@ export default { } ], "delete_gamedata_signature_validations": [ - 1626, + 1674, { "where": [ - 1617, + 1665, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1612, + 1660, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1664, + 1712, { "where": [ - 1659, + 1707, "leaderboard_entries_bool_exp!" ] } ], "delete_league_divisions": [ - 1689, + 1737, { "where": [ - 1683, + 1731, "league_divisions_bool_exp!" ] } ], "delete_league_divisions_by_pk": [ - 1679, + 1727, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_league_match_weeks": [ - 1724, + 1772, { "where": [ - 1716, + 1764, "league_match_weeks_bool_exp!" ] } ], "delete_league_match_weeks_by_pk": [ - 1707, + 1755, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_league_relegation_playoffs": [ - 1765, + 1813, { "where": [ - 1757, + 1805, "league_relegation_playoffs_bool_exp!" ] } ], "delete_league_relegation_playoffs_by_pk": [ - 1748, + 1796, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_league_scheduling_proposals": [ - 1806, + 1854, { "where": [ - 1798, + 1846, "league_scheduling_proposals_bool_exp!" ] } ], "delete_league_scheduling_proposals_by_pk": [ - 1789, + 1837, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_league_season_divisions": [ - 1844, + 1892, { "where": [ - 1837, + 1885, "league_season_divisions_bool_exp!" ] } ], "delete_league_season_divisions_by_pk": [ - 1830, + 1878, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_league_seasons": [ - 1869, + 1917, { "where": [ - 1860, + 1908, "league_seasons_bool_exp!" ] } ], "delete_league_seasons_by_pk": [ - 1855, + 1903, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_league_team_movements": [ - 1905, + 1953, { "where": [ - 1897, + 1945, "league_team_movements_bool_exp!" ] } ], "delete_league_team_movements_by_pk": [ - 1888, + 1936, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_league_team_rosters": [ - 1946, + 1994, { "where": [ - 1938, + 1986, "league_team_rosters_bool_exp!" ] } ], "delete_league_team_rosters_by_pk": [ - 1929, + 1977, { "league_team_season_id": [ - 4762, + 4921, "uuid!" ], "player_steam_id": [ @@ -142669,73 +145905,73 @@ export default { } ], "delete_league_team_seasons": [ - 1987, + 2035, { "where": [ - 1979, + 2027, "league_team_seasons_bool_exp!" ] } ], "delete_league_team_seasons_by_pk": [ - 1970, + 2018, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_league_teams": [ - 2020, + 2068, { "where": [ - 2015, + 2063, "league_teams_bool_exp!" ] } ], "delete_league_teams_by_pk": [ - 2012, + 2060, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_lobbies": [ - 2039, + 2087, { "where": [ - 2034, + 2082, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 2031, + 2079, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_lobby_players": [ - 2069, + 2117, { "where": [ - 2061, + 2109, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 2050, + 2098, { "lobby_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -142745,286 +145981,286 @@ export default { } ], "delete_map_pools": [ - 2103, + 2151, { "where": [ - 2098, + 2146, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 2095, + 2143, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_maps": [ - 2130, + 2178, { "where": [ - 2123, + 2171, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 2114, + 2162, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_match_clips": [ - 2160, + 2208, { "where": [ - 2152, + 2200, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 2143, + 2191, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_match_demo_sessions": [ - 2206, + 2254, { "where": [ - 2195, + 2243, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 2185, + 2233, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_match_lineup_players": [ - 2250, + 2298, { "where": [ - 2242, + 2290, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 2231, + 2279, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_match_lineups": [ - 2293, + 2341, { "where": [ - 2285, + 2333, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 2276, + 2324, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_match_map_demos": [ - 2341, + 2389, { "where": [ - 2330, + 2378, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 2318, + 2366, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_match_map_rounds": [ - 2386, + 2434, { "where": [ - 2378, + 2426, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2369, + 2417, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2424, + 2472, { "where": [ - 2417, + 2465, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2410, + 2458, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_match_maps": [ - 2451, + 2499, { "where": [ - 2443, + 2491, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2434, + 2482, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_match_options": [ - 2486, + 2534, { "where": [ - 2480, + 2528, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2476, + 2524, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2518, + 2566, { "where": [ - 2511, + 2559, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2504, + 2552, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_match_streams": [ - 2551, + 2599, { "where": [ - 2540, + 2588, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2528, + 2576, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2586, + 2634, { "where": [ - 2581, + 2629, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2578, + 2626, { "type": [ - 591, + 618, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 2613, + 2661, { "where": [ - 2605, + 2653, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2596, + 2644, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2646, + 2694, { "where": [ - 2641, + 2689, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2638, + 2686, { "name": [ 78, @@ -143033,126 +146269,126 @@ export default { } ], "delete_my_friends": [ - 2678, + 2726, { "where": [ - 2668, + 2716, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2712, + 2760, { "where": [ - 2706, + 2754, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2702, + 2750, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_notifications": [ - 2752, + 2800, { "where": [ - 2741, + 2789, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 2729, + 2777, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_pending_match_import_players": [ - 2799, + 2847, { "where": [ - 2791, + 2839, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 2782, + 2830, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2779, + 2827, "numeric!" ] } ], "delete_pending_match_imports": [ - 2833, + 2881, { "where": [ - 2827, + 2875, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 2823, + 2871, { "valve_match_id": [ - 2779, + 2827, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 2861, + 2909, { "where": [ - 2855, + 2903, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 2851, + 2899, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 2895, + 2943, { "where": [ - 2887, + 2935, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 2878, + 2926, { "match_map_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -143166,16 +146402,16 @@ export default { } ], "delete_player_assists": [ - 2938, + 2986, { "where": [ - 2930, + 2978, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 2919, + 2967, { "attacked_steam_id": [ 180, @@ -143186,55 +146422,55 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "delete_player_damages": [ - 2999, + 3047, { "where": [ - 2991, + 3039, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 2982, + 3030, { "id": [ - 4762, + 4921, "uuid!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "delete_player_elo": [ - 3033, + 3081, { "where": [ - 3027, + 3075, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 3023, + 3071, { "match_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -143242,40 +146478,40 @@ export default { "bigint!" ], "type": [ - 860, + 887, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 3067, + 3115, { "where": [ - 3059, + 3107, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 3050, + 3098, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_player_flashes": [ - 3110, + 3158, { "where": [ - 3102, + 3150, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 3091, + 3139, { "attacked_steam_id": [ 180, @@ -143286,26 +146522,26 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "delete_player_kills": [ - 3196, + 3244, { "where": [ - 3147, + 3195, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 3136, + 3184, { "attacked_steam_id": [ 180, @@ -143316,26 +146552,26 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 3165, + 3213, { "where": [ - 3157, + 3205, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 3148, + 3196, { "player_steam_id": [ 180, @@ -143348,28 +146584,28 @@ export default { } ], "delete_player_leaderboard_rank": [ - 3231, + 3279, { "where": [ - 3226, + 3274, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 3262, + 3310, { "where": [ - 3254, + 3302, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 3245, + 3293, { "match_map_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -143379,19 +146615,19 @@ export default { } ], "delete_player_objectives": [ - 3354, + 3402, { "where": [ - 3346, + 3394, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3337, + 3385, { "match_map_id": [ - 4762, + 4921, "uuid!" ], "player_steam_id": [ @@ -143399,84 +146635,84 @@ export default { "bigint!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3413, + 3461, { "where": [ - 3405, + 3453, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3396, + 3444, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_player_sanctions": [ - 3454, + 3502, { "where": [ - 3446, + 3494, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3437, + 3485, { "created_at": [ - 4324, + 4376, "timestamptz!" ], "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_player_season_stats": [ - 3505, + 3553, { "where": [ - 3497, + 3545, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3478, + 3526, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4762, + 4921, "uuid!" ] } ], "delete_player_stats": [ - 3547, + 3595, { "where": [ - 3541, + 3589, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3537, + 3585, { "player_steam_id": [ 180, @@ -143485,16 +146721,16 @@ export default { } ], "delete_player_steam_bot_friend": [ - 3579, + 3627, { "where": [ - 3570, + 3618, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3565, + 3613, { "steam_id": [ 180, @@ -143503,16 +146739,16 @@ export default { } ], "delete_player_steam_match_auth": [ - 3607, + 3655, { "where": [ - 3601, + 3649, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3597, + 3645, { "steam_id": [ 180, @@ -143521,19 +146757,19 @@ export default { } ], "delete_player_unused_utility": [ - 3641, + 3689, { "where": [ - 3633, + 3681, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3624, + 3672, { "match_map_id": [ - 4762, + 4921, "uuid!" ], "player_steam_id": [ @@ -143543,42 +146779,42 @@ export default { } ], "delete_player_utility": [ - 3682, + 3730, { "where": [ - 3674, + 3722, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3665, + 3713, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "delete_players": [ - 3749, + 3797, { "where": [ - 3743, + 3791, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 3739, + 3787, { "steam_id": [ 180, @@ -143587,19 +146823,19 @@ export default { } ], "delete_plugin_versions": [ - 3777, + 3825, { "where": [ - 3771, + 3819, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 3767, + 3815, { "runtime": [ - 941, + 968, "e_plugin_runtimes_enum!" ], "version": [ @@ -143609,34 +146845,34 @@ export default { } ], "delete_seasons": [ - 3808, + 3856, { "where": [ - 3802, + 3850, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 3798, + 3846, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_server_regions": [ - 3835, + 3883, { "where": [ - 3830, + 3878, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 3826, + 3874, { "value": [ 78, @@ -143645,34 +146881,34 @@ export default { } ], "delete_servers": [ - 3872, + 3920, { "where": [ - 3864, + 3912, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 3853, + 3901, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_settings": [ - 3907, + 3955, { "where": [ - 3902, + 3950, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 3899, + 3947, { "name": [ 78, @@ -143681,467 +146917,529 @@ export default { } ], "delete_steam_account_claims": [ - 3933, + 3981, { "where": [ - 3926, + 3974, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 3919, + 3967, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_steam_accounts": [ - 3953, + 4001, { "where": [ - 3947, + 3995, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 3943, + 3991, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_system_alerts": [ - 3981, + 4029, { "where": [ - 3975, + 4023, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 3971, + 4019, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_team_invites": [ - 4015, + 4063, { "where": [ - 4007, + 4055, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 3998, + 4046, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_team_roster": [ - 4058, + 4106, { "where": [ - 4050, + 4098, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 4039, + 4087, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4762, + 4921, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 4094, + 4142, { "where": [ - 4088, + 4136, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 4084, + 4132, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_team_scrim_availability": [ - 4127, + 4175, { "where": [ - 4120, + 4168, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 4111, + 4159, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 4156, + 4204, { "where": [ - 4148, + 4196, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 4139, + 4187, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_team_scrim_requests": [ - 4199, + 4247, { "where": [ - 4191, + 4239, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 4180, + 4228, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_team_scrim_settings": [ - 4236, + 4284, { "where": [ - 4230, + 4278, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 4226, + 4274, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_team_suggestions": [ - 4264, + 4312, { "where": [ - 4258, + 4306, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 4254, + 4302, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_teams": [ - 4298, + 4348, { "where": [ - 4290, + 4340, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 4281, + 4329, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_tournament_brackets": [ - 4345, + 4397, { "where": [ - 4337, + 4389, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4326, + 4378, { "id": [ - 4762, + 4921, + "uuid!" + ] + } + ], + "delete_tournament_categories": [ + 4438, + { + "where": [ + 4431, + "tournament_categories_bool_exp!" + ] + } + ], + "delete_tournament_categories_by_pk": [ + 4424, + { + "category": [ + 1170, + "e_tournament_categories_enum!" + ], + "tournament_id": [ + 4921, + "uuid!" + ] + } + ], + "delete_tournament_organizer_teams": [ + 4462, + { + "where": [ + 4455, + "tournament_organizer_teams_bool_exp!" + ] + } + ], + "delete_tournament_organizer_teams_by_pk": [ + 4448, + { + "team_id": [ + 4921, + "uuid!" + ], + "tournament_id": [ + 4921, "uuid!" ] } ], "delete_tournament_organizers": [ - 4389, + 4489, { "where": [ - 4381, + 4481, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4372, + 4472, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4762, + 4921, + "uuid!" + ] + } + ], + "delete_tournament_prizes": [ + 4530, + { + "where": [ + 4522, + "tournament_prizes_bool_exp!" + ] + } + ], + "delete_tournament_prizes_by_pk": [ + 4513, + { + "id": [ + 4921, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4430, + 4571, { "where": [ - 4422, + 4563, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4413, + 4554, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_tournament_stages": [ - 4477, + 4618, { "where": [ - 4466, + 4607, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4454, + 4595, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4522, + 4663, { "where": [ - 4514, + 4655, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4505, + 4646, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_tournament_team_roster": [ - 4563, + 4704, { "where": [ - 4555, + 4696, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 4546, + 4687, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4762, + 4921, "uuid!" ] } ], "delete_tournament_teams": [ - 4604, + 4745, { "where": [ - 4596, + 4737, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 4587, + 4728, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_tournament_trophies": [ - 4648, + 4789, { "where": [ - 4640, + 4781, "tournament_trophies_bool_exp!" ] } ], "delete_tournament_trophies_by_pk": [ - 4629, + 4770, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_tournament_trophy_configs": [ - 4691, + 4832, { "where": [ - 4683, + 4824, "tournament_trophy_configs_bool_exp!" ] } ], "delete_tournament_trophy_configs_by_pk": [ - 4674, + 4815, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_tournaments": [ - 4735, + 4886, { "where": [ - 4727, + 4878, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 4716, + 4857, { "id": [ - 4762, + 4921, "uuid!" ] } ], "delete_v_match_captains": [ - 4927, + 5086, { "where": [ - 4922, + 5081, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 5038, + 5197, { "where": [ - 5033, + 5192, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 5260, + 5419, { "where": [ - 5253, + 5412, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5419, + 5578, { "where": [ - 5413, + 5572, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5513, + 5672, { "where": [ - 5505, + 5664, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5486, + 5645, { "tournament_stage_id": [ - 4762, + 4921, "uuid!" ], "tournament_team_id": [ - 4762, + 4921, "uuid!" ] } @@ -144150,7 +147448,7 @@ export default { 81, { "invite_id": [ - 4762, + 4921, "uuid!" ], "type": [ @@ -144163,11 +147461,11 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ], "winning_lineup_id": [ - 4762, + 4921, "uuid!" ] } @@ -144176,7 +147474,7 @@ export default { 43, { "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -144280,3417 +147578,3537 @@ export default { ] } ], - "insert_db_backups": [ + "insert_custom_pages": [ 247, { "objects": [ 244, - "[db_backups_insert_input!]!" + "[custom_pages_insert_input!]!" ], "on_conflict": [ 248 ] } ], - "insert_db_backups_one": [ + "insert_custom_pages_one": [ 237, { "object": [ 244, - "db_backups_insert_input!" + "custom_pages_insert_input!" ], "on_conflict": [ 248 ] } ], + "insert_db_backups": [ + 274, + { + "objects": [ + 271, + "[db_backups_insert_input!]!" + ], + "on_conflict": [ + 275 + ] + } + ], + "insert_db_backups_one": [ + 264, + { + "object": [ + 271, + "db_backups_insert_input!" + ], + "on_conflict": [ + 275 + ] + } + ], "insert_draft_game_picks": [ - 283, + 310, { "objects": [ - 278, + 305, "[draft_game_picks_insert_input!]!" ], "on_conflict": [ - 284 + 311 ] } ], "insert_draft_game_picks_one": [ - 264, + 291, { "object": [ - 278, + 305, "draft_game_picks_insert_input!" ], "on_conflict": [ - 284 + 311 ] } ], "insert_draft_game_players": [ - 328, + 355, { "objects": [ - 323, + 350, "[draft_game_players_insert_input!]!" ], "on_conflict": [ - 329 + 356 ] } ], "insert_draft_game_players_one": [ - 309, + 336, { "object": [ - 323, + 350, "draft_game_players_insert_input!" ], "on_conflict": [ - 329 + 356 ] } ], "insert_draft_games": [ - 373, + 400, { "objects": [ - 368, + 395, "[draft_games_insert_input!]!" ], "on_conflict": [ - 375 + 402 ] } ], "insert_draft_games_one": [ - 354, + 381, { "object": [ - 368, + 395, "draft_games_insert_input!" ], "on_conflict": [ - 375 + 402 ] } ], "insert_e_check_in_settings": [ - 410, + 437, { "objects": [ - 407, + 434, "[e_check_in_settings_insert_input!]!" ], "on_conflict": [ - 411 + 438 ] } ], "insert_e_check_in_settings_one": [ - 400, + 427, { "object": [ - 407, + 434, "e_check_in_settings_insert_input!" ], "on_conflict": [ - 411 + 438 ] } ], "insert_e_draft_game_captain_selection": [ - 430, + 457, { "objects": [ - 427, + 454, "[e_draft_game_captain_selection_insert_input!]!" ], "on_conflict": [ - 432 + 459 ] } ], "insert_e_draft_game_captain_selection_one": [ - 420, + 447, { "object": [ - 427, + 454, "e_draft_game_captain_selection_insert_input!" ], "on_conflict": [ - 432 + 459 ] } ], "insert_e_draft_game_draft_order": [ - 451, + 478, { "objects": [ - 448, + 475, "[e_draft_game_draft_order_insert_input!]!" ], "on_conflict": [ - 453 + 480 ] } ], "insert_e_draft_game_draft_order_one": [ - 441, + 468, { "object": [ - 448, + 475, "e_draft_game_draft_order_insert_input!" ], "on_conflict": [ - 453 + 480 ] } ], "insert_e_draft_game_mode": [ - 472, + 499, { "objects": [ - 469, + 496, "[e_draft_game_mode_insert_input!]!" ], "on_conflict": [ - 474 + 501 ] } ], "insert_e_draft_game_mode_one": [ - 462, + 489, { "object": [ - 469, + 496, "e_draft_game_mode_insert_input!" ], "on_conflict": [ - 474 + 501 ] } ], "insert_e_draft_game_player_status": [ - 493, + 520, { "objects": [ - 490, + 517, "[e_draft_game_player_status_insert_input!]!" ], "on_conflict": [ - 495 + 522 ] } ], "insert_e_draft_game_player_status_one": [ - 483, + 510, { "object": [ - 490, + 517, "e_draft_game_player_status_insert_input!" ], "on_conflict": [ - 495 + 522 ] } ], "insert_e_draft_game_status": [ - 514, + 541, { "objects": [ - 511, + 538, "[e_draft_game_status_insert_input!]!" ], "on_conflict": [ - 516 + 543 ] } ], "insert_e_draft_game_status_one": [ - 504, + 531, { "object": [ - 511, + 538, "e_draft_game_status_insert_input!" ], "on_conflict": [ - 516 + 543 ] } ], "insert_e_event_media_access": [ - 535, + 562, { "objects": [ - 532, + 559, "[e_event_media_access_insert_input!]!" ], "on_conflict": [ - 536 + 563 ] } ], "insert_e_event_media_access_one": [ - 525, + 552, { "object": [ - 532, + 559, "e_event_media_access_insert_input!" ], "on_conflict": [ - 536 + 563 ] } ], "insert_e_event_visibility": [ - 555, + 582, { "objects": [ - 552, + 579, "[e_event_visibility_insert_input!]!" ], "on_conflict": [ - 556 + 583 ] } ], "insert_e_event_visibility_one": [ - 545, + 572, { "object": [ - 552, + 579, "e_event_visibility_insert_input!" ], "on_conflict": [ - 556 + 583 ] } ], "insert_e_friend_status": [ - 575, + 602, { "objects": [ - 572, + 599, "[e_friend_status_insert_input!]!" ], "on_conflict": [ - 577 + 604 ] } ], "insert_e_friend_status_one": [ - 565, + 592, { "object": [ - 572, + 599, "e_friend_status_insert_input!" ], "on_conflict": [ - 577 + 604 ] } ], "insert_e_game_cfg_types": [ - 596, + 623, { "objects": [ - 593, + 620, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 597 + 624 ] } ], "insert_e_game_cfg_types_one": [ - 586, + 613, { "object": [ - 593, + 620, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 597 + 624 ] } ], "insert_e_game_server_node_statuses": [ - 616, + 643, { "objects": [ - 613, + 640, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 618 + 645 ] } ], "insert_e_game_server_node_statuses_one": [ - 606, + 633, { "object": [ - 613, + 640, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 618 + 645 ] } ], "insert_e_league_movement_types": [ - 637, + 664, { "objects": [ - 634, + 661, "[e_league_movement_types_insert_input!]!" ], "on_conflict": [ - 639 + 666 ] } ], "insert_e_league_movement_types_one": [ - 627, + 654, { "object": [ - 634, + 661, "e_league_movement_types_insert_input!" ], "on_conflict": [ - 639 + 666 ] } ], "insert_e_league_proposal_statuses": [ - 658, + 685, { "objects": [ - 655, + 682, "[e_league_proposal_statuses_insert_input!]!" ], "on_conflict": [ - 660 + 687 ] } ], "insert_e_league_proposal_statuses_one": [ - 648, + 675, { "object": [ - 655, + 682, "e_league_proposal_statuses_insert_input!" ], "on_conflict": [ - 660 + 687 ] } ], "insert_e_league_registration_statuses": [ - 679, + 706, { "objects": [ - 676, + 703, "[e_league_registration_statuses_insert_input!]!" ], "on_conflict": [ - 681 + 708 ] } ], "insert_e_league_registration_statuses_one": [ - 669, + 696, { "object": [ - 676, + 703, "e_league_registration_statuses_insert_input!" ], "on_conflict": [ - 681 + 708 ] } ], "insert_e_league_season_statuses": [ - 700, + 727, { "objects": [ - 697, + 724, "[e_league_season_statuses_insert_input!]!" ], "on_conflict": [ - 702 + 729 ] } ], "insert_e_league_season_statuses_one": [ - 690, + 717, { "object": [ - 697, + 724, "e_league_season_statuses_insert_input!" ], "on_conflict": [ - 702 + 729 ] } ], "insert_e_lobby_access": [ - 721, + 748, { "objects": [ - 718, + 745, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 723 + 750 ] } ], "insert_e_lobby_access_one": [ - 711, + 738, { "object": [ - 718, + 745, "e_lobby_access_insert_input!" ], "on_conflict": [ - 723 + 750 ] } ], "insert_e_lobby_player_status": [ - 742, + 769, { "objects": [ - 739, + 766, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 743 + 770 ] } ], "insert_e_lobby_player_status_one": [ - 732, + 759, { "object": [ - 739, + 766, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 743 + 770 ] } ], "insert_e_map_pool_types": [ - 762, + 789, { "objects": [ - 759, + 786, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 764 + 791 ] } ], "insert_e_map_pool_types_one": [ - 752, + 779, { "object": [ - 759, + 786, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 764 + 791 ] } ], "insert_e_match_clip_visibility": [ - 783, + 810, { "objects": [ - 780, + 807, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 784 + 811 ] } ], "insert_e_match_clip_visibility_one": [ - 773, + 800, { "object": [ - 780, + 807, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 784 + 811 ] } ], "insert_e_match_map_status": [ - 803, + 830, { "objects": [ - 800, + 827, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 805 + 832 ] } ], "insert_e_match_map_status_one": [ - 793, + 820, { "object": [ - 800, + 827, "e_match_map_status_insert_input!" ], "on_conflict": [ - 805 + 832 ] } ], "insert_e_match_mode": [ - 824, + 851, { "objects": [ - 821, + 848, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 825 + 852 ] } ], "insert_e_match_mode_one": [ - 814, + 841, { "object": [ - 821, + 848, "e_match_mode_insert_input!" ], "on_conflict": [ - 825 + 852 ] } ], "insert_e_match_status": [ - 844, + 871, { "objects": [ - 841, + 868, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 846 + 873 ] } ], "insert_e_match_status_one": [ - 834, + 861, { "object": [ - 841, + 868, "e_match_status_insert_input!" ], "on_conflict": [ - 846 + 873 ] } ], "insert_e_match_types": [ - 865, + 892, { "objects": [ - 862, + 889, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 867 + 894 ] } ], "insert_e_match_types_one": [ - 855, + 882, { "object": [ - 862, + 889, "e_match_types_insert_input!" ], "on_conflict": [ - 867 + 894 ] } ], "insert_e_notification_types": [ - 886, + 913, { "objects": [ - 883, + 910, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 887 + 914 ] } ], "insert_e_notification_types_one": [ - 876, + 903, { "object": [ - 883, + 910, "e_notification_types_insert_input!" ], "on_conflict": [ - 887 + 914 ] } ], "insert_e_objective_types": [ - 906, + 933, { "objects": [ - 903, + 930, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 907 + 934 ] } ], "insert_e_objective_types_one": [ - 896, + 923, { "object": [ - 903, + 930, "e_objective_types_insert_input!" ], "on_conflict": [ - 907 + 934 ] } ], "insert_e_player_roles": [ - 926, + 953, { "objects": [ - 923, + 950, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 927 + 954 ] } ], "insert_e_player_roles_one": [ - 916, + 943, { "object": [ - 923, + 950, "e_player_roles_insert_input!" ], "on_conflict": [ - 927 + 954 ] } ], "insert_e_plugin_runtimes": [ - 946, + 973, { "objects": [ - 943, + 970, "[e_plugin_runtimes_insert_input!]!" ], "on_conflict": [ - 947 + 974 ] } ], "insert_e_plugin_runtimes_one": [ - 936, + 963, { "object": [ - 943, + 970, "e_plugin_runtimes_insert_input!" ], "on_conflict": [ - 947 + 974 ] } ], "insert_e_ready_settings": [ - 966, + 993, { "objects": [ - 963, + 990, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 967 + 994 ] } ], "insert_e_ready_settings_one": [ - 956, + 983, { "object": [ - 963, + 990, "e_ready_settings_insert_input!" ], "on_conflict": [ - 967 + 994 ] } ], "insert_e_sanction_types": [ - 986, + 1013, { "objects": [ - 983, + 1010, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 988 + 1015 ] } ], "insert_e_sanction_types_one": [ - 976, + 1003, { "object": [ - 983, + 1010, "e_sanction_types_insert_input!" ], "on_conflict": [ - 988 + 1015 ] } ], "insert_e_scrim_request_statuses": [ - 1007, + 1034, { "objects": [ - 1004, + 1031, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 1008 + 1035 ] } ], "insert_e_scrim_request_statuses_one": [ - 997, + 1024, { "object": [ - 1004, + 1031, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 1008 + 1035 ] } ], "insert_e_server_types": [ - 1027, + 1054, { "objects": [ - 1024, + 1051, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 1028 + 1055 ] } ], "insert_e_server_types_one": [ - 1017, + 1044, { "object": [ - 1024, + 1051, "e_server_types_insert_input!" ], "on_conflict": [ - 1028 + 1055 ] } ], "insert_e_sides": [ - 1047, + 1074, { "objects": [ - 1044, + 1071, "[e_sides_insert_input!]!" ], "on_conflict": [ - 1048 + 1075 ] } ], "insert_e_sides_one": [ - 1037, + 1064, { "object": [ - 1044, + 1071, "e_sides_insert_input!" ], "on_conflict": [ - 1048 + 1075 ] } ], "insert_e_system_alert_types": [ - 1067, + 1094, { "objects": [ - 1064, + 1091, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 1068 + 1095 ] } ], "insert_e_system_alert_types_one": [ - 1057, + 1084, { "object": [ - 1064, + 1091, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 1068 + 1095 ] } ], "insert_e_team_roles": [ - 1087, + 1114, { "objects": [ - 1084, + 1111, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 1089 + 1116 ] } ], "insert_e_team_roles_one": [ - 1077, + 1104, { "object": [ - 1084, + 1111, "e_team_roles_insert_input!" ], "on_conflict": [ - 1089 + 1116 ] } ], "insert_e_team_roster_statuses": [ - 1108, + 1135, { "objects": [ - 1105, + 1132, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 1109 + 1136 ] } ], "insert_e_team_roster_statuses_one": [ - 1098, + 1125, { "object": [ - 1105, + 1132, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 1109 + 1136 ] } ], "insert_e_timeout_settings": [ - 1128, + 1155, { "objects": [ - 1125, + 1152, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 1129 + 1156 ] } ], "insert_e_timeout_settings_one": [ - 1118, + 1145, { "object": [ - 1125, + 1152, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 1129 + 1156 + ] + } + ], + "insert_e_tournament_categories": [ + 1175, + { + "objects": [ + 1172, + "[e_tournament_categories_insert_input!]!" + ], + "on_conflict": [ + 1177 + ] + } + ], + "insert_e_tournament_categories_one": [ + 1165, + { + "object": [ + 1172, + "e_tournament_categories_insert_input!" + ], + "on_conflict": [ + 1177 ] } ], "insert_e_tournament_stage_types": [ - 1148, + 1196, { "objects": [ - 1145, + 1193, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 1150 + 1198 ] } ], "insert_e_tournament_stage_types_one": [ - 1138, + 1186, { "object": [ - 1145, + 1193, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 1150 + 1198 ] } ], "insert_e_tournament_status": [ - 1169, + 1217, { "objects": [ - 1166, + 1214, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1171 + 1219 ] } ], "insert_e_tournament_status_one": [ - 1159, + 1207, { "object": [ - 1166, + 1214, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1171 + 1219 ] } ], "insert_e_utility_types": [ - 1190, + 1238, { "objects": [ - 1187, + 1235, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1191 + 1239 ] } ], "insert_e_utility_types_one": [ - 1180, + 1228, { "object": [ - 1187, + 1235, "e_utility_types_insert_input!" ], "on_conflict": [ - 1191 + 1239 ] } ], "insert_e_veto_pick_types": [ - 1210, + 1258, { "objects": [ - 1207, + 1255, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1211 + 1259 ] } ], "insert_e_veto_pick_types_one": [ - 1200, + 1248, { "object": [ - 1207, + 1255, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1211 + 1259 ] } ], "insert_e_winning_reasons": [ - 1230, + 1278, { "objects": [ - 1227, + 1275, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1231 + 1279 ] } ], "insert_e_winning_reasons_one": [ - 1220, + 1268, { "object": [ - 1227, + 1275, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1231 + 1279 ] } ], "insert_event_match_links": [ - 1248, + 1296, { "objects": [ - 1245, + 1293, "[event_match_links_insert_input!]!" ], "on_conflict": [ - 1249 + 1297 ] } ], "insert_event_match_links_one": [ - 1240, + 1288, { "object": [ - 1245, + 1293, "event_match_links_insert_input!" ], "on_conflict": [ - 1249 + 1297 ] } ], "insert_event_media": [ - 1275, + 1323, { "objects": [ - 1270, + 1318, "[event_media_insert_input!]!" ], "on_conflict": [ - 1277 + 1325 ] } ], "insert_event_media_one": [ - 1258, + 1306, { "object": [ - 1270, + 1318, "event_media_insert_input!" ], "on_conflict": [ - 1277 + 1325 ] } ], "insert_event_media_players": [ - 1297, + 1345, { "objects": [ - 1292, + 1340, "[event_media_players_insert_input!]!" ], "on_conflict": [ - 1298 + 1346 ] } ], "insert_event_media_players_one": [ - 1280, + 1328, { "object": [ - 1292, + 1340, "event_media_players_insert_input!" ], "on_conflict": [ - 1298 + 1346 ] } ], "insert_event_organizers": [ - 1358, + 1406, { "objects": [ - 1353, + 1401, "[event_organizers_insert_input!]!" ], "on_conflict": [ - 1359 + 1407 ] } ], "insert_event_organizers_one": [ - 1341, + 1389, { "object": [ - 1353, + 1401, "event_organizers_insert_input!" ], "on_conflict": [ - 1359 + 1407 ] } ], "insert_event_players": [ - 1399, + 1447, { "objects": [ - 1394, + 1442, "[event_players_insert_input!]!" ], "on_conflict": [ - 1400 + 1448 ] } ], "insert_event_players_one": [ - 1382, + 1430, { "object": [ - 1394, + 1442, "event_players_insert_input!" ], "on_conflict": [ - 1400 + 1448 ] } ], "insert_event_teams": [ - 1437, + 1485, { "objects": [ - 1432, + 1480, "[event_teams_insert_input!]!" ], "on_conflict": [ - 1438 + 1486 ] } ], "insert_event_teams_one": [ - 1423, + 1471, { "object": [ - 1432, + 1480, "event_teams_insert_input!" ], "on_conflict": [ - 1438 + 1486 ] } ], "insert_event_tournaments": [ - 1461, + 1509, { "objects": [ - 1456, + 1504, "[event_tournaments_insert_input!]!" ], "on_conflict": [ - 1462 + 1510 ] } ], "insert_event_tournaments_one": [ - 1447, + 1495, { "object": [ - 1456, + 1504, "event_tournaments_insert_input!" ], "on_conflict": [ - 1462 + 1510 ] } ], "insert_events": [ - 1481, + 1529, { "objects": [ - 1478, + 1526, "[events_insert_input!]!" ], "on_conflict": [ - 1483 + 1531 ] } ], "insert_events_one": [ - 1471, + 1519, { "object": [ - 1478, + 1526, "events_insert_input!" ], "on_conflict": [ - 1483 + 1531 ] } ], "insert_friends": [ - 1511, + 1559, { "objects": [ - 1508, + 1556, "[friends_insert_input!]!" ], "on_conflict": [ - 1512 + 1560 ] } ], "insert_friends_one": [ - 1501, + 1549, { "object": [ - 1508, + 1556, "friends_insert_input!" ], "on_conflict": [ - 1512 + 1560 ] } ], "insert_game_server_nodes": [ - 1551, + 1599, { "objects": [ - 1546, + 1594, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1553 + 1601 ] } ], "insert_game_server_nodes_one": [ - 1528, + 1576, { "object": [ - 1546, + 1594, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1553 + 1601 ] } ], "insert_game_versions": [ - 1593, + 1641, { "objects": [ - 1590, + 1638, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1595 + 1643 ] } ], "insert_game_versions_one": [ - 1579, + 1627, { "object": [ - 1590, + 1638, "game_versions_insert_input!" ], "on_conflict": [ - 1595 + 1643 ] } ], "insert_gamedata_signature_validations": [ - 1626, + 1674, { "objects": [ - 1623, + 1671, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1627 + 1675 ] } ], "insert_gamedata_signature_validations_one": [ - 1612, + 1660, { "object": [ - 1623, + 1671, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1627 + 1675 ] } ], "insert_leaderboard_entries": [ - 1664, + 1712, { "objects": [ - 1661, + 1709, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1655, + 1703, { "object": [ - 1661, + 1709, "leaderboard_entries_insert_input!" ] } ], "insert_league_divisions": [ - 1689, + 1737, { "objects": [ - 1686, + 1734, "[league_divisions_insert_input!]!" ], "on_conflict": [ - 1691 + 1739 ] } ], "insert_league_divisions_one": [ - 1679, + 1727, { "object": [ - 1686, + 1734, "league_divisions_insert_input!" ], "on_conflict": [ - 1691 + 1739 ] } ], "insert_league_match_weeks": [ - 1724, + 1772, { "objects": [ - 1719, + 1767, "[league_match_weeks_insert_input!]!" ], "on_conflict": [ - 1725 + 1773 ] } ], "insert_league_match_weeks_one": [ - 1707, + 1755, { "object": [ - 1719, + 1767, "league_match_weeks_insert_input!" ], "on_conflict": [ - 1725 + 1773 ] } ], "insert_league_relegation_playoffs": [ - 1765, + 1813, { "objects": [ - 1760, + 1808, "[league_relegation_playoffs_insert_input!]!" ], "on_conflict": [ - 1766 + 1814 ] } ], "insert_league_relegation_playoffs_one": [ - 1748, + 1796, { "object": [ - 1760, + 1808, "league_relegation_playoffs_insert_input!" ], "on_conflict": [ - 1766 + 1814 ] } ], "insert_league_scheduling_proposals": [ - 1806, + 1854, { "objects": [ - 1801, + 1849, "[league_scheduling_proposals_insert_input!]!" ], "on_conflict": [ - 1807 + 1855 ] } ], "insert_league_scheduling_proposals_one": [ - 1789, + 1837, { "object": [ - 1801, + 1849, "league_scheduling_proposals_insert_input!" ], "on_conflict": [ - 1807 + 1855 ] } ], "insert_league_season_divisions": [ - 1844, + 1892, { "objects": [ - 1839, + 1887, "[league_season_divisions_insert_input!]!" ], "on_conflict": [ - 1846 + 1894 ] } ], "insert_league_season_divisions_one": [ - 1830, + 1878, { "object": [ - 1839, + 1887, "league_season_divisions_insert_input!" ], "on_conflict": [ - 1846 + 1894 ] } ], "insert_league_seasons": [ - 1869, + 1917, { "objects": [ - 1866, + 1914, "[league_seasons_insert_input!]!" ], "on_conflict": [ - 1871 + 1919 ] } ], "insert_league_seasons_one": [ - 1855, + 1903, { "object": [ - 1866, + 1914, "league_seasons_insert_input!" ], "on_conflict": [ - 1871 + 1919 ] } ], "insert_league_team_movements": [ - 1905, + 1953, { "objects": [ - 1900, + 1948, "[league_team_movements_insert_input!]!" ], "on_conflict": [ - 1906 + 1954 ] } ], "insert_league_team_movements_one": [ - 1888, + 1936, { "object": [ - 1900, + 1948, "league_team_movements_insert_input!" ], "on_conflict": [ - 1906 + 1954 ] } ], "insert_league_team_rosters": [ - 1946, + 1994, { "objects": [ - 1941, + 1989, "[league_team_rosters_insert_input!]!" ], "on_conflict": [ - 1947 + 1995 ] } ], "insert_league_team_rosters_one": [ - 1929, + 1977, { "object": [ - 1941, + 1989, "league_team_rosters_insert_input!" ], "on_conflict": [ - 1947 + 1995 ] } ], "insert_league_team_seasons": [ - 1987, + 2035, { "objects": [ - 1982, + 2030, "[league_team_seasons_insert_input!]!" ], "on_conflict": [ - 1989 + 2037 ] } ], "insert_league_team_seasons_one": [ - 1970, + 2018, { "object": [ - 1982, + 2030, "league_team_seasons_insert_input!" ], "on_conflict": [ - 1989 + 2037 ] } ], "insert_league_teams": [ - 2020, + 2068, { "objects": [ - 2017, + 2065, "[league_teams_insert_input!]!" ], "on_conflict": [ - 2022 + 2070 ] } ], "insert_league_teams_one": [ - 2012, + 2060, { "object": [ - 2017, + 2065, "league_teams_insert_input!" ], "on_conflict": [ - 2022 + 2070 ] } ], "insert_lobbies": [ - 2039, + 2087, { "objects": [ - 2036, + 2084, "[lobbies_insert_input!]!" ], "on_conflict": [ - 2041 + 2089 ] } ], "insert_lobbies_one": [ - 2031, + 2079, { "object": [ - 2036, + 2084, "lobbies_insert_input!" ], "on_conflict": [ - 2041 + 2089 ] } ], "insert_lobby_players": [ - 2069, + 2117, { "objects": [ - 2064, + 2112, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 2070 + 2118 ] } ], "insert_lobby_players_one": [ - 2050, + 2098, { "object": [ - 2064, + 2112, "lobby_players_insert_input!" ], "on_conflict": [ - 2070 + 2118 ] } ], "insert_map_pools": [ - 2103, + 2151, { "objects": [ - 2100, + 2148, "[map_pools_insert_input!]!" ], "on_conflict": [ - 2105 + 2153 ] } ], "insert_map_pools_one": [ - 2095, + 2143, { "object": [ - 2100, + 2148, "map_pools_insert_input!" ], "on_conflict": [ - 2105 + 2153 ] } ], "insert_maps": [ - 2130, + 2178, { "objects": [ - 2125, + 2173, "[maps_insert_input!]!" ], "on_conflict": [ - 2132 + 2180 ] } ], "insert_maps_one": [ - 2114, + 2162, { "object": [ - 2125, + 2173, "maps_insert_input!" ], "on_conflict": [ - 2132 + 2180 ] } ], "insert_match_clips": [ - 2160, + 2208, { "objects": [ - 2155, + 2203, "[match_clips_insert_input!]!" ], "on_conflict": [ - 2162 + 2210 ] } ], "insert_match_clips_one": [ - 2143, + 2191, { "object": [ - 2155, + 2203, "match_clips_insert_input!" ], "on_conflict": [ - 2162 + 2210 ] } ], "insert_match_demo_sessions": [ - 2206, + 2254, { "objects": [ - 2201, + 2249, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 2207 + 2255 ] } ], "insert_match_demo_sessions_one": [ - 2185, + 2233, { "object": [ - 2201, + 2249, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 2207 + 2255 ] } ], "insert_match_lineup_players": [ - 2250, + 2298, { "objects": [ - 2245, + 2293, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 2251 + 2299 ] } ], "insert_match_lineup_players_one": [ - 2231, + 2279, { "object": [ - 2245, + 2293, "match_lineup_players_insert_input!" ], "on_conflict": [ - 2251 + 2299 ] } ], "insert_match_lineups": [ - 2293, + 2341, { "objects": [ - 2288, + 2336, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 2295 + 2343 ] } ], "insert_match_lineups_one": [ - 2276, + 2324, { "object": [ - 2288, + 2336, "match_lineups_insert_input!" ], "on_conflict": [ - 2295 + 2343 ] } ], "insert_match_map_demos": [ - 2341, + 2389, { "objects": [ - 2336, + 2384, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2343 + 2391 ] } ], "insert_match_map_demos_one": [ - 2318, + 2366, { "object": [ - 2336, + 2384, "match_map_demos_insert_input!" ], "on_conflict": [ - 2343 + 2391 ] } ], "insert_match_map_rounds": [ - 2386, + 2434, { "objects": [ - 2381, + 2429, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2387 + 2435 ] } ], "insert_match_map_rounds_one": [ - 2369, + 2417, { "object": [ - 2381, + 2429, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2387 + 2435 ] } ], "insert_match_map_veto_picks": [ - 2424, + 2472, { "objects": [ - 2419, + 2467, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2425 + 2473 ] } ], "insert_match_map_veto_picks_one": [ - 2410, + 2458, { "object": [ - 2419, + 2467, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2425 + 2473 ] } ], "insert_match_maps": [ - 2451, + 2499, { "objects": [ - 2446, + 2494, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2453 + 2501 ] } ], "insert_match_maps_one": [ - 2434, + 2482, { "object": [ - 2446, + 2494, "match_maps_insert_input!" ], "on_conflict": [ - 2453 + 2501 ] } ], "insert_match_options": [ - 2486, + 2534, { "objects": [ - 2483, + 2531, "[match_options_insert_input!]!" ], "on_conflict": [ - 2488 + 2536 ] } ], "insert_match_options_one": [ - 2476, + 2524, { "object": [ - 2483, + 2531, "match_options_insert_input!" ], "on_conflict": [ - 2488 + 2536 ] } ], "insert_match_region_veto_picks": [ - 2518, + 2566, { "objects": [ - 2513, + 2561, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2519 + 2567 ] } ], "insert_match_region_veto_picks_one": [ - 2504, + 2552, { "object": [ - 2513, + 2561, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2519 + 2567 ] } ], "insert_match_streams": [ - 2551, + 2599, { "objects": [ - 2546, + 2594, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2552 + 2600 ] } ], "insert_match_streams_one": [ - 2528, + 2576, { "object": [ - 2546, + 2594, "match_streams_insert_input!" ], "on_conflict": [ - 2552 + 2600 ] } ], "insert_match_type_cfgs": [ - 2586, + 2634, { "objects": [ - 2583, + 2631, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2587 + 2635 ] } ], "insert_match_type_cfgs_one": [ - 2578, + 2626, { "object": [ - 2583, + 2631, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2587 + 2635 ] } ], "insert_matches": [ - 2613, + 2661, { "objects": [ - 2608, + 2656, "[matches_insert_input!]!" ], "on_conflict": [ - 2615 + 2663 ] } ], "insert_matches_one": [ - 2596, + 2644, { "object": [ - 2608, + 2656, "matches_insert_input!" ], "on_conflict": [ - 2615 + 2663 ] } ], "insert_migration_hashes_hashes": [ - 2646, + 2694, { "objects": [ - 2643, + 2691, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2647 + 2695 ] } ], "insert_migration_hashes_hashes_one": [ - 2638, + 2686, { "object": [ - 2643, + 2691, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2647 + 2695 ] } ], "insert_my_friends": [ - 2678, + 2726, { "objects": [ - 2673, + 2721, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2656, + 2704, { "object": [ - 2673, + 2721, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2712, + 2760, { "objects": [ - 2709, + 2757, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2713 + 2761 ] } ], "insert_news_articles_one": [ - 2702, + 2750, { "object": [ - 2709, + 2757, "news_articles_insert_input!" ], "on_conflict": [ - 2713 + 2761 ] } ], "insert_notifications": [ - 2752, + 2800, { "objects": [ - 2747, + 2795, "[notifications_insert_input!]!" ], "on_conflict": [ - 2753 + 2801 ] } ], "insert_notifications_one": [ - 2729, + 2777, { "object": [ - 2747, + 2795, "notifications_insert_input!" ], "on_conflict": [ - 2753 + 2801 ] } ], "insert_pending_match_import_players": [ - 2799, + 2847, { "objects": [ - 2794, + 2842, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 2800 + 2848 ] } ], "insert_pending_match_import_players_one": [ - 2782, + 2830, { "object": [ - 2794, + 2842, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 2800 + 2848 ] } ], "insert_pending_match_imports": [ - 2833, + 2881, { "objects": [ - 2830, + 2878, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 2835 + 2883 ] } ], "insert_pending_match_imports_one": [ - 2823, + 2871, { "object": [ - 2830, + 2878, "pending_match_imports_insert_input!" ], "on_conflict": [ - 2835 + 2883 ] } ], "insert_player_aim_stats_demo": [ - 2861, + 2909, { "objects": [ - 2858, + 2906, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 2862 + 2910 ] } ], "insert_player_aim_stats_demo_one": [ - 2851, + 2899, { "object": [ - 2858, + 2906, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 2862 + 2910 ] } ], "insert_player_aim_weapon_stats": [ - 2895, + 2943, { "objects": [ - 2890, + 2938, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 2896 + 2944 ] } ], "insert_player_aim_weapon_stats_one": [ - 2878, + 2926, { "object": [ - 2890, + 2938, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 2896 + 2944 ] } ], "insert_player_assists": [ - 2938, + 2986, { "objects": [ - 2933, + 2981, "[player_assists_insert_input!]!" ], "on_conflict": [ - 2939 + 2987 ] } ], "insert_player_assists_one": [ - 2919, + 2967, { "object": [ - 2933, + 2981, "player_assists_insert_input!" ], "on_conflict": [ - 2939 + 2987 ] } ], "insert_player_damages": [ - 2999, + 3047, { "objects": [ - 2994, + 3042, "[player_damages_insert_input!]!" ], "on_conflict": [ - 3000 + 3048 ] } ], "insert_player_damages_one": [ - 2982, + 3030, { "object": [ - 2994, + 3042, "player_damages_insert_input!" ], "on_conflict": [ - 3000 + 3048 ] } ], "insert_player_elo": [ - 3033, + 3081, { "objects": [ - 3030, + 3078, "[player_elo_insert_input!]!" ], "on_conflict": [ - 3034 + 3082 ] } ], "insert_player_elo_one": [ - 3023, + 3071, { "object": [ - 3030, + 3078, "player_elo_insert_input!" ], "on_conflict": [ - 3034 + 3082 ] } ], "insert_player_faceit_rank_history": [ - 3067, + 3115, { "objects": [ - 3062, + 3110, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 3068 + 3116 ] } ], "insert_player_faceit_rank_history_one": [ - 3050, + 3098, { "object": [ - 3062, + 3110, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 3068 + 3116 ] } ], "insert_player_flashes": [ - 3110, + 3158, { "objects": [ - 3105, + 3153, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 3111 + 3159 ] } ], "insert_player_flashes_one": [ - 3091, + 3139, { "object": [ - 3105, + 3153, "player_flashes_insert_input!" ], "on_conflict": [ - 3111 + 3159 ] } ], "insert_player_kills": [ - 3196, + 3244, { "objects": [ - 3191, + 3239, "[player_kills_insert_input!]!" ], "on_conflict": [ - 3197 + 3245 ] } ], "insert_player_kills_by_weapon": [ - 3165, + 3213, { "objects": [ - 3160, + 3208, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 3166 + 3214 ] } ], "insert_player_kills_by_weapon_one": [ - 3148, + 3196, { "object": [ - 3160, + 3208, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 3166 + 3214 ] } ], "insert_player_kills_one": [ - 3136, + 3184, { "object": [ - 3191, + 3239, "player_kills_insert_input!" ], "on_conflict": [ - 3197 + 3245 ] } ], "insert_player_leaderboard_rank": [ - 3231, + 3279, { "objects": [ - 3228, + 3276, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 3222, + 3270, { "object": [ - 3228, + 3276, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 3262, + 3310, { "objects": [ - 3257, + 3305, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 3263 + 3311 ] } ], "insert_player_match_map_stats_one": [ - 3245, + 3293, { "object": [ - 3257, + 3305, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 3263 + 3311 ] } ], "insert_player_objectives": [ - 3354, + 3402, { "objects": [ - 3349, + 3397, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3355 + 3403 ] } ], "insert_player_objectives_one": [ - 3337, + 3385, { "object": [ - 3349, + 3397, "player_objectives_insert_input!" ], "on_conflict": [ - 3355 + 3403 ] } ], "insert_player_premier_rank_history": [ - 3413, + 3461, { "objects": [ - 3408, + 3456, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3414 + 3462 ] } ], "insert_player_premier_rank_history_one": [ - 3396, + 3444, { "object": [ - 3408, + 3456, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3414 + 3462 ] } ], "insert_player_sanctions": [ - 3454, + 3502, { "objects": [ - 3449, + 3497, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3455 + 3503 ] } ], "insert_player_sanctions_one": [ - 3437, + 3485, { "object": [ - 3449, + 3497, "player_sanctions_insert_input!" ], "on_conflict": [ - 3455 + 3503 ] } ], "insert_player_season_stats": [ - 3505, + 3553, { "objects": [ - 3500, + 3548, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3506 + 3554 ] } ], "insert_player_season_stats_one": [ - 3478, + 3526, { "object": [ - 3500, + 3548, "player_season_stats_insert_input!" ], "on_conflict": [ - 3506 + 3554 ] } ], "insert_player_stats": [ - 3547, + 3595, { "objects": [ - 3544, + 3592, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3549 + 3597 ] } ], "insert_player_stats_one": [ - 3537, + 3585, { "object": [ - 3544, + 3592, "player_stats_insert_input!" ], "on_conflict": [ - 3549 + 3597 ] } ], "insert_player_steam_bot_friend": [ - 3579, + 3627, { "objects": [ - 3576, + 3624, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3580 + 3628 ] } ], "insert_player_steam_bot_friend_one": [ - 3565, + 3613, { "object": [ - 3576, + 3624, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3580 + 3628 ] } ], "insert_player_steam_match_auth": [ - 3607, + 3655, { "objects": [ - 3604, + 3652, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3608 + 3656 ] } ], "insert_player_steam_match_auth_one": [ - 3597, + 3645, { "object": [ - 3604, + 3652, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3608 + 3656 ] } ], "insert_player_unused_utility": [ - 3641, + 3689, { "objects": [ - 3636, + 3684, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3642 + 3690 ] } ], "insert_player_unused_utility_one": [ - 3624, + 3672, { "object": [ - 3636, + 3684, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3642 + 3690 ] } ], "insert_player_utility": [ - 3682, + 3730, { "objects": [ - 3677, + 3725, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3683 + 3731 ] } ], "insert_player_utility_one": [ - 3665, + 3713, { "object": [ - 3677, + 3725, "player_utility_insert_input!" ], "on_conflict": [ - 3683 + 3731 ] } ], "insert_players": [ - 3749, + 3797, { "objects": [ - 3746, + 3794, "[players_insert_input!]!" ], "on_conflict": [ - 3751 + 3799 ] } ], "insert_players_one": [ - 3739, + 3787, { "object": [ - 3746, + 3794, "players_insert_input!" ], "on_conflict": [ - 3751 + 3799 ] } ], "insert_plugin_versions": [ - 3777, + 3825, { "objects": [ - 3774, + 3822, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 3778 + 3826 ] } ], "insert_plugin_versions_one": [ - 3767, + 3815, { "object": [ - 3774, + 3822, "plugin_versions_insert_input!" ], "on_conflict": [ - 3778 + 3826 ] } ], "insert_seasons": [ - 3808, + 3856, { "objects": [ - 3805, + 3853, "[seasons_insert_input!]!" ], "on_conflict": [ - 3810 + 3858 ] } ], "insert_seasons_one": [ - 3798, + 3846, { "object": [ - 3805, + 3853, "seasons_insert_input!" ], "on_conflict": [ - 3810 + 3858 ] } ], "insert_server_regions": [ - 3835, + 3883, { "objects": [ - 3832, + 3880, "[server_regions_insert_input!]!" ], "on_conflict": [ - 3837 + 3885 ] } ], "insert_server_regions_one": [ - 3826, + 3874, { "object": [ - 3832, + 3880, "server_regions_insert_input!" ], "on_conflict": [ - 3837 + 3885 ] } ], "insert_servers": [ - 3872, + 3920, { "objects": [ - 3867, + 3915, "[servers_insert_input!]!" ], "on_conflict": [ - 3874 + 3922 ] } ], "insert_servers_one": [ - 3853, + 3901, { "object": [ - 3867, + 3915, "servers_insert_input!" ], "on_conflict": [ - 3874 + 3922 ] } ], "insert_settings": [ - 3907, + 3955, { "objects": [ - 3904, + 3952, "[settings_insert_input!]!" ], "on_conflict": [ - 3908 + 3956 ] } ], "insert_settings_one": [ - 3899, + 3947, { "object": [ - 3904, + 3952, "settings_insert_input!" ], "on_conflict": [ - 3908 + 3956 ] } ], "insert_steam_account_claims": [ - 3933, + 3981, { "objects": [ - 3928, + 3976, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 3934 + 3982 ] } ], "insert_steam_account_claims_one": [ - 3919, + 3967, { "object": [ - 3928, + 3976, "steam_account_claims_insert_input!" ], "on_conflict": [ - 3934 + 3982 ] } ], "insert_steam_accounts": [ - 3953, + 4001, { "objects": [ - 3950, + 3998, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 3955 + 4003 ] } ], "insert_steam_accounts_one": [ - 3943, + 3991, { "object": [ - 3950, + 3998, "steam_accounts_insert_input!" ], "on_conflict": [ - 3955 + 4003 ] } ], "insert_system_alerts": [ - 3981, + 4029, { "objects": [ - 3978, + 4026, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 3982 + 4030 ] } ], "insert_system_alerts_one": [ - 3971, + 4019, { "object": [ - 3978, + 4026, "system_alerts_insert_input!" ], "on_conflict": [ - 3982 + 4030 ] } ], "insert_team_invites": [ - 4015, + 4063, { "objects": [ - 4010, + 4058, "[team_invites_insert_input!]!" ], "on_conflict": [ - 4016 + 4064 ] } ], "insert_team_invites_one": [ - 3998, + 4046, { "object": [ - 4010, + 4058, "team_invites_insert_input!" ], "on_conflict": [ - 4016 + 4064 ] } ], "insert_team_roster": [ - 4058, + 4106, { "objects": [ - 4053, + 4101, "[team_roster_insert_input!]!" ], "on_conflict": [ - 4059 + 4107 ] } ], "insert_team_roster_one": [ - 4039, + 4087, { "object": [ - 4053, + 4101, "team_roster_insert_input!" ], "on_conflict": [ - 4059 + 4107 ] } ], "insert_team_scrim_alerts": [ - 4094, + 4142, { "objects": [ - 4091, + 4139, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 4095 + 4143 ] } ], "insert_team_scrim_alerts_one": [ - 4084, + 4132, { "object": [ - 4091, + 4139, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 4095 + 4143 ] } ], "insert_team_scrim_availability": [ - 4127, + 4175, { "objects": [ - 4122, + 4170, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 4128 + 4176 ] } ], "insert_team_scrim_availability_one": [ - 4111, + 4159, { "object": [ - 4122, + 4170, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 4128 + 4176 ] } ], "insert_team_scrim_request_proposals": [ - 4156, + 4204, { "objects": [ - 4151, + 4199, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 4157 + 4205 ] } ], "insert_team_scrim_request_proposals_one": [ - 4139, + 4187, { "object": [ - 4151, + 4199, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 4157 + 4205 ] } ], "insert_team_scrim_requests": [ - 4199, + 4247, { "objects": [ - 4194, + 4242, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 4201 + 4249 ] } ], "insert_team_scrim_requests_one": [ - 4180, + 4228, { "object": [ - 4194, + 4242, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 4201 + 4249 ] } ], "insert_team_scrim_settings": [ - 4236, + 4284, { "objects": [ - 4233, + 4281, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 4238 + 4286 ] } ], "insert_team_scrim_settings_one": [ - 4226, + 4274, { "object": [ - 4233, + 4281, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 4238 + 4286 ] } ], "insert_team_suggestions": [ - 4264, + 4312, { "objects": [ - 4261, + 4309, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 4265 + 4313 ] } ], "insert_team_suggestions_one": [ - 4254, + 4302, { "object": [ - 4261, + 4309, "team_suggestions_insert_input!" ], "on_conflict": [ - 4265 + 4313 ] } ], "insert_teams": [ - 4298, + 4348, { "objects": [ - 4293, + 4343, "[teams_insert_input!]!" ], "on_conflict": [ - 4300 + 4350 ] } ], "insert_teams_one": [ - 4281, + 4329, { "object": [ - 4293, + 4343, "teams_insert_input!" ], "on_conflict": [ - 4300 + 4350 ] } ], "insert_tournament_brackets": [ - 4345, + 4397, { "objects": [ - 4340, + 4392, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4347 + 4399 ] } ], "insert_tournament_brackets_one": [ - 4326, + 4378, { "object": [ - 4340, + 4392, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4347 + 4399 + ] + } + ], + "insert_tournament_categories": [ + 4438, + { + "objects": [ + 4433, + "[tournament_categories_insert_input!]!" + ], + "on_conflict": [ + 4439 + ] + } + ], + "insert_tournament_categories_one": [ + 4424, + { + "object": [ + 4433, + "tournament_categories_insert_input!" + ], + "on_conflict": [ + 4439 + ] + } + ], + "insert_tournament_organizer_teams": [ + 4462, + { + "objects": [ + 4457, + "[tournament_organizer_teams_insert_input!]!" + ], + "on_conflict": [ + 4463 + ] + } + ], + "insert_tournament_organizer_teams_one": [ + 4448, + { + "object": [ + 4457, + "tournament_organizer_teams_insert_input!" + ], + "on_conflict": [ + 4463 ] } ], "insert_tournament_organizers": [ - 4389, + 4489, { "objects": [ - 4384, + 4484, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4390 + 4490 ] } ], "insert_tournament_organizers_one": [ - 4372, + 4472, { "object": [ - 4384, + 4484, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4390 + 4490 + ] + } + ], + "insert_tournament_prizes": [ + 4530, + { + "objects": [ + 4525, + "[tournament_prizes_insert_input!]!" + ], + "on_conflict": [ + 4531 + ] + } + ], + "insert_tournament_prizes_one": [ + 4513, + { + "object": [ + 4525, + "tournament_prizes_insert_input!" + ], + "on_conflict": [ + 4531 ] } ], "insert_tournament_stage_windows": [ - 4430, + 4571, { "objects": [ - 4425, + 4566, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4431 + 4572 ] } ], "insert_tournament_stage_windows_one": [ - 4413, + 4554, { "object": [ - 4425, + 4566, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4431 + 4572 ] } ], "insert_tournament_stages": [ - 4477, + 4618, { "objects": [ - 4472, + 4613, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4479 + 4620 ] } ], "insert_tournament_stages_one": [ - 4454, + 4595, { "object": [ - 4472, + 4613, "tournament_stages_insert_input!" ], "on_conflict": [ - 4479 + 4620 ] } ], "insert_tournament_team_invites": [ - 4522, + 4663, { "objects": [ - 4517, + 4658, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 4523 + 4664 ] } ], "insert_tournament_team_invites_one": [ - 4505, + 4646, { "object": [ - 4517, + 4658, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 4523 + 4664 ] } ], "insert_tournament_team_roster": [ - 4563, + 4704, { "objects": [ - 4558, + 4699, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 4564 + 4705 ] } ], "insert_tournament_team_roster_one": [ - 4546, + 4687, { "object": [ - 4558, + 4699, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 4564 + 4705 ] } ], "insert_tournament_teams": [ - 4604, + 4745, { "objects": [ - 4599, + 4740, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 4606 + 4747 ] } ], "insert_tournament_teams_one": [ - 4587, + 4728, { "object": [ - 4599, + 4740, "tournament_teams_insert_input!" ], "on_conflict": [ - 4606 + 4747 ] } ], "insert_tournament_trophies": [ - 4648, + 4789, { "objects": [ - 4643, + 4784, "[tournament_trophies_insert_input!]!" ], "on_conflict": [ - 4649 + 4790 ] } ], "insert_tournament_trophies_one": [ - 4629, + 4770, { "object": [ - 4643, + 4784, "tournament_trophies_insert_input!" ], "on_conflict": [ - 4649 + 4790 ] } ], "insert_tournament_trophy_configs": [ - 4691, + 4832, { "objects": [ - 4686, + 4827, "[tournament_trophy_configs_insert_input!]!" ], "on_conflict": [ - 4693 + 4834 ] } ], "insert_tournament_trophy_configs_one": [ - 4674, + 4815, { "object": [ - 4686, + 4827, "tournament_trophy_configs_insert_input!" ], "on_conflict": [ - 4693 + 4834 ] } ], "insert_tournaments": [ - 4735, + 4886, { "objects": [ - 4730, + 4881, "[tournaments_insert_input!]!" ], "on_conflict": [ - 4737 + 4888 ] } ], "insert_tournaments_one": [ - 4716, + 4857, { "object": [ - 4730, + 4881, "tournaments_insert_input!" ], "on_conflict": [ - 4737 + 4888 ] } ], "insert_v_match_captains": [ - 4927, + 5086, { "objects": [ - 4924, + 5083, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 4918, + 5077, { "object": [ - 4924, + 5083, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 5038, + 5197, { "objects": [ - 5035, + 5194, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 5029, + 5188, { "object": [ - 5035, + 5194, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 5260, + 5419, { "objects": [ - 5255, + 5414, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 5244, + 5403, { "object": [ - 5255, + 5414, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5419, + 5578, { "objects": [ - 5414, + 5573, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5404, + 5563, { "object": [ - 5414, + 5573, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5513, + 5672, { "objects": [ - 5508, + 5667, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5515 + 5674 ] } ], "insert_v_team_stage_results_one": [ - 5486, + 5645, { "object": [ - 5508, + 5667, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5515 + 5674 ] } ], @@ -147698,7 +151116,7 @@ export default { 81, { "draftGameId": [ - 4762, + 4921, "uuid!" ], "inviteCode": [ @@ -147710,7 +151128,7 @@ export default { 81, { "draftGameId": [ - 4762, + 4921, "uuid!" ], "inviteCode": [ @@ -147735,14 +151153,14 @@ export default { } ], "league_award_forfeit": [ - 2596, + 2644, { "args": [ - 1678, + 1726, "league_award_forfeit_args!" ], "distinct_on": [ - 2618, + 2666, "[matches_select_column!]" ], "limit": [ @@ -147752,11 +151170,11 @@ export default { 38 ], "order_by": [ - 2616, + 2664, "[matches_order_by!]" ], "where": [ - 2605 + 2653 ] } ], @@ -147815,7 +151233,7 @@ export default { 81, { "match_map_id": [ - 4762, + 4921, "uuid!" ] } @@ -147827,7 +151245,7 @@ export default { 22, { "draftGameId": [ - 4762, + 4921, "uuid!" ], "inviteCode": [ @@ -147842,7 +151260,7 @@ export default { 38 ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "preset": [ @@ -147868,7 +151286,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -147877,20 +151295,20 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ] } ], "recalculate_tournament_trophies": [ - 4629, + 4770, { "args": [ - 3794, + 3842, "recalculate_tournament_trophies_args!" ], "distinct_on": [ - 4652, + 4793, "[tournament_trophies_select_column!]" ], "limit": [ @@ -147900,11 +151318,11 @@ export default { 38 ], "order_by": [ - 4650, + 4791, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4781 ] } ], @@ -147918,7 +151336,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -147942,7 +151360,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -147969,14 +151387,14 @@ export default { } ], "remove_league_team_from_season": [ - 1970, + 2018, { "args": [ - 3795, + 3843, "remove_league_team_from_season_args!" ], "distinct_on": [ - 1992, + 2040, "[league_team_seasons_select_column!]" ], "limit": [ @@ -147986,11 +151404,11 @@ export default { 38 ], "order_by": [ - 1990, + 2038, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 2027 ] } ], @@ -148015,14 +151433,14 @@ export default { } ], "reorder_league_divisions": [ - 1679, + 1727, { "args": [ - 3796, + 3844, "reorder_league_divisions_args!" ], "distinct_on": [ - 1694, + 1742, "[league_divisions_select_column!]" ], "limit": [ @@ -148032,11 +151450,11 @@ export default { 38 ], "order_by": [ - 1692, + 1740, "[league_divisions_order_by!]" ], "where": [ - 1683 + 1731 ] } ], @@ -148050,7 +151468,7 @@ export default { 81, { "match_map_id": [ - 4762, + 4921, "uuid!" ] } @@ -148059,7 +151477,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -148081,7 +151499,7 @@ export default { 81, { "job_id": [ - 4762, + 4921, "uuid!" ] } @@ -148094,7 +151512,7 @@ export default { "Boolean!" ], "draftGameId": [ - 4762, + 4921, "uuid!" ] } @@ -148107,7 +151525,7 @@ export default { "Boolean!" ], "request_id": [ - 4762, + 4921, "uuid!" ] } @@ -148122,14 +151540,14 @@ export default { } ], "restart_league_season": [ - 1855, + 1903, { "args": [ - 3797, + 3845, "restart_league_season_args!" ], "distinct_on": [ - 1875, + 1923, "[league_seasons_select_column!]" ], "limit": [ @@ -148139,11 +151557,11 @@ export default { 38 ], "order_by": [ - 1872, + 1920, "[league_seasons_order_by!]" ], "where": [ - 1860 + 1908 ] } ], @@ -148151,7 +151569,7 @@ export default { 81, { "match_map_id": [ - 4762, + 4921, "uuid!" ] } @@ -148160,7 +151578,7 @@ export default { 81, { "match_map_id": [ - 4762, + 4921, "uuid!" ], "only_failed": [ @@ -148210,7 +151628,7 @@ export default { 78 ], "id": [ - 4762 + 4921 ], "teaser": [ 78 @@ -148231,11 +151649,11 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324 + 4376 ] } ], @@ -148246,18 +151664,18 @@ export default { 38 ], "from_team_id": [ - 4762, + 4921, "uuid!" ], "proposed_scheduled_at": [ - 4324, + 4376, "timestamptz!" ], "region": [ 78 ], "to_team_id": [ - 4762, + 4921, "uuid!" ] } @@ -148279,7 +151697,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ], "mode": [ @@ -148292,15 +151710,15 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "winning_lineup_id": [ - 4762, + 4921, "uuid!" ] } @@ -148309,11 +151727,11 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ], "winning_lineup_id": [ - 4762, + 4921, "uuid!" ] } @@ -148322,7 +151740,7 @@ export default { 48, { "id": [ - 4762, + 4921, "uuid!" ], "status": [ @@ -148338,7 +151756,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -148351,7 +151769,7 @@ export default { "Boolean!" ], "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -148364,7 +151782,7 @@ export default { "String!" ], "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -148373,7 +151791,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ], "visible": [ @@ -148386,7 +151804,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -148395,7 +151813,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -148408,7 +151826,7 @@ export default { "Int!" ], "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -148417,7 +151835,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ], "show": [ @@ -148430,7 +151848,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ], "slot": [ @@ -148447,7 +151865,7 @@ export default { "Boolean!" ], "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -148456,7 +151874,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ], "mode": [ @@ -148469,11 +151887,11 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ], "server_id": [ - 4762 + 4921 ] } ], @@ -148481,7 +151899,7 @@ export default { 81, { "game_server_node_id": [ - 4762, + 4921, "uuid!" ] } @@ -148490,7 +151908,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -148499,7 +151917,7 @@ export default { 81, { "match_map_id": [ - 4762, + 4921, "uuid!" ] } @@ -148521,7 +151939,7 @@ export default { 81, { "match_id": [ - 4762, + 4921, "uuid!" ] } @@ -148539,7 +151957,7 @@ export default { 81, { "from_match_id": [ - 4762, + 4921, "uuid!" ], "mode": [ @@ -148547,7 +151965,7 @@ export default { "String!" ], "to_match_id": [ - 4762, + 4921, "uuid!" ] } @@ -148587,7 +152005,7 @@ export default { 81, { "clip_id": [ - 4762, + 4921, "uuid!" ], "target_steam_id": [ @@ -148608,7 +152026,7 @@ export default { 78 ], "game_server_node_id": [ - 4762 + 4921 ] } ], @@ -148616,11 +152034,11 @@ export default { 81, { "draftGameId": [ - 4762, + 4921, "uuid!" ], "settings": [ - 1652, + 1700, "jsonb!" ] } @@ -148808,7 +152226,7 @@ export default { ] } ], - "update_db_backups": [ + "update_custom_pages": [ 247, { "_inc": [ @@ -148819,11 +152237,11 @@ export default { ], "where": [ 241, - "db_backups_bool_exp!" + "custom_pages_bool_exp!" ] } ], - "update_db_backups_by_pk": [ + "update_custom_pages_by_pk": [ 237, { "_inc": [ @@ -148834,5457 +152252,5634 @@ export default { ], "pk_columns": [ 250, - "db_backups_pk_columns_input!" + "custom_pages_pk_columns_input!" ] } ], - "update_db_backups_many": [ + "update_custom_pages_many": [ 247, { "updates": [ 260, + "[custom_pages_updates!]!" + ] + } + ], + "update_db_backups": [ + 274, + { + "_inc": [ + 270 + ], + "_set": [ + 279 + ], + "where": [ + 268, + "db_backups_bool_exp!" + ] + } + ], + "update_db_backups_by_pk": [ + 264, + { + "_inc": [ + 270 + ], + "_set": [ + 279 + ], + "pk_columns": [ + 277, + "db_backups_pk_columns_input!" + ] + } + ], + "update_db_backups_many": [ + 274, + { + "updates": [ + 287, "[db_backups_updates!]!" ] } ], "update_draft_game_picks": [ - 283, + 310, { "_inc": [ - 277 + 304 ], "_set": [ - 290 + 317 ], "where": [ - 275, + 302, "draft_game_picks_bool_exp!" ] } ], "update_draft_game_picks_by_pk": [ - 264, + 291, { "_inc": [ - 277 + 304 ], "_set": [ - 290 + 317 ], "pk_columns": [ - 286, + 313, "draft_game_picks_pk_columns_input!" ] } ], "update_draft_game_picks_many": [ - 283, + 310, { "updates": [ - 302, + 329, "[draft_game_picks_updates!]!" ] } ], "update_draft_game_players": [ - 328, + 355, { "_inc": [ - 322 + 349 ], "_set": [ - 335 + 362 ], "where": [ - 320, + 347, "draft_game_players_bool_exp!" ] } ], "update_draft_game_players_by_pk": [ - 309, + 336, { "_inc": [ - 322 + 349 ], "_set": [ - 335 + 362 ], "pk_columns": [ - 331, + 358, "draft_game_players_pk_columns_input!" ] } ], "update_draft_game_players_many": [ - 328, + 355, { "updates": [ - 347, + 374, "[draft_game_players_updates!]!" ] } ], "update_draft_games": [ - 373, + 400, { "_inc": [ - 367 + 394 ], "_set": [ - 381 + 408 ], "where": [ - 365, + 392, "draft_games_bool_exp!" ] } ], "update_draft_games_by_pk": [ - 354, + 381, { "_inc": [ - 367 + 394 ], "_set": [ - 381 + 408 ], "pk_columns": [ - 377, + 404, "draft_games_pk_columns_input!" ] } ], "update_draft_games_many": [ - 373, + 400, { "updates": [ - 393, + 420, "[draft_games_updates!]!" ] } ], "update_e_check_in_settings": [ - 410, + 437, { "_set": [ - 415 + 442 ], "where": [ - 403, + 430, "e_check_in_settings_bool_exp!" ] } ], "update_e_check_in_settings_by_pk": [ - 400, + 427, { "_set": [ - 415 + 442 ], "pk_columns": [ - 413, + 440, "e_check_in_settings_pk_columns_input!" ] } ], "update_e_check_in_settings_many": [ - 410, + 437, { "updates": [ - 419, + 446, "[e_check_in_settings_updates!]!" ] } ], "update_e_draft_game_captain_selection": [ - 430, + 457, { "_set": [ - 436 + 463 ], "where": [ - 423, + 450, "e_draft_game_captain_selection_bool_exp!" ] } ], "update_e_draft_game_captain_selection_by_pk": [ - 420, + 447, { "_set": [ - 436 + 463 ], "pk_columns": [ - 434, + 461, "e_draft_game_captain_selection_pk_columns_input!" ] } ], "update_e_draft_game_captain_selection_many": [ - 430, + 457, { "updates": [ - 440, + 467, "[e_draft_game_captain_selection_updates!]!" ] } ], "update_e_draft_game_draft_order": [ - 451, + 478, { "_set": [ - 457 + 484 ], "where": [ - 444, + 471, "e_draft_game_draft_order_bool_exp!" ] } ], "update_e_draft_game_draft_order_by_pk": [ - 441, + 468, { "_set": [ - 457 + 484 ], "pk_columns": [ - 455, + 482, "e_draft_game_draft_order_pk_columns_input!" ] } ], "update_e_draft_game_draft_order_many": [ - 451, + 478, { "updates": [ - 461, + 488, "[e_draft_game_draft_order_updates!]!" ] } ], "update_e_draft_game_mode": [ - 472, + 499, { "_set": [ - 478 + 505 ], "where": [ - 465, + 492, "e_draft_game_mode_bool_exp!" ] } ], "update_e_draft_game_mode_by_pk": [ - 462, + 489, { "_set": [ - 478 + 505 ], "pk_columns": [ - 476, + 503, "e_draft_game_mode_pk_columns_input!" ] } ], "update_e_draft_game_mode_many": [ - 472, + 499, { "updates": [ - 482, + 509, "[e_draft_game_mode_updates!]!" ] } ], "update_e_draft_game_player_status": [ - 493, + 520, { "_set": [ - 499 + 526 ], "where": [ - 486, + 513, "e_draft_game_player_status_bool_exp!" ] } ], "update_e_draft_game_player_status_by_pk": [ - 483, + 510, { "_set": [ - 499 + 526 ], "pk_columns": [ - 497, + 524, "e_draft_game_player_status_pk_columns_input!" ] } ], "update_e_draft_game_player_status_many": [ - 493, + 520, { "updates": [ - 503, + 530, "[e_draft_game_player_status_updates!]!" ] } ], "update_e_draft_game_status": [ - 514, + 541, { "_set": [ - 520 + 547 ], "where": [ - 507, + 534, "e_draft_game_status_bool_exp!" ] } ], "update_e_draft_game_status_by_pk": [ - 504, + 531, { "_set": [ - 520 + 547 ], "pk_columns": [ - 518, + 545, "e_draft_game_status_pk_columns_input!" ] } ], "update_e_draft_game_status_many": [ - 514, + 541, { "updates": [ - 524, + 551, "[e_draft_game_status_updates!]!" ] } ], "update_e_event_media_access": [ - 535, + 562, { "_set": [ - 540 + 567 ], "where": [ - 528, + 555, "e_event_media_access_bool_exp!" ] } ], "update_e_event_media_access_by_pk": [ - 525, + 552, { "_set": [ - 540 + 567 ], "pk_columns": [ - 538, + 565, "e_event_media_access_pk_columns_input!" ] } ], "update_e_event_media_access_many": [ - 535, + 562, { "updates": [ - 544, + 571, "[e_event_media_access_updates!]!" ] } ], "update_e_event_visibility": [ - 555, + 582, { "_set": [ - 560 + 587 ], "where": [ - 548, + 575, "e_event_visibility_bool_exp!" ] } ], "update_e_event_visibility_by_pk": [ - 545, + 572, { "_set": [ - 560 + 587 ], "pk_columns": [ - 558, + 585, "e_event_visibility_pk_columns_input!" ] } ], "update_e_event_visibility_many": [ - 555, + 582, { "updates": [ - 564, + 591, "[e_event_visibility_updates!]!" ] } ], "update_e_friend_status": [ - 575, + 602, { "_set": [ - 581 + 608 ], "where": [ - 568, + 595, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 565, + 592, { "_set": [ - 581 + 608 ], "pk_columns": [ - 579, + 606, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 575, + 602, { "updates": [ - 585, + 612, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 596, + 623, { "_set": [ - 601 + 628 ], "where": [ - 589, + 616, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 586, + 613, { "_set": [ - 601 + 628 ], "pk_columns": [ - 599, + 626, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 596, + 623, { "updates": [ - 605, + 632, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 616, + 643, { "_set": [ - 622 + 649 ], "where": [ - 609, + 636, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 606, + 633, { "_set": [ - 622 + 649 ], "pk_columns": [ - 620, + 647, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 616, + 643, { "updates": [ - 626, + 653, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_league_movement_types": [ - 637, + 664, { "_set": [ - 643 + 670 ], "where": [ - 630, + 657, "e_league_movement_types_bool_exp!" ] } ], "update_e_league_movement_types_by_pk": [ - 627, + 654, { "_set": [ - 643 + 670 ], "pk_columns": [ - 641, + 668, "e_league_movement_types_pk_columns_input!" ] } ], "update_e_league_movement_types_many": [ - 637, + 664, { "updates": [ - 647, + 674, "[e_league_movement_types_updates!]!" ] } ], "update_e_league_proposal_statuses": [ - 658, + 685, { "_set": [ - 664 + 691 ], "where": [ - 651, + 678, "e_league_proposal_statuses_bool_exp!" ] } ], "update_e_league_proposal_statuses_by_pk": [ - 648, + 675, { "_set": [ - 664 + 691 ], "pk_columns": [ - 662, + 689, "e_league_proposal_statuses_pk_columns_input!" ] } ], "update_e_league_proposal_statuses_many": [ - 658, + 685, { "updates": [ - 668, + 695, "[e_league_proposal_statuses_updates!]!" ] } ], "update_e_league_registration_statuses": [ - 679, + 706, { "_set": [ - 685 + 712 ], "where": [ - 672, + 699, "e_league_registration_statuses_bool_exp!" ] } ], "update_e_league_registration_statuses_by_pk": [ - 669, + 696, { "_set": [ - 685 + 712 ], "pk_columns": [ - 683, + 710, "e_league_registration_statuses_pk_columns_input!" ] } ], "update_e_league_registration_statuses_many": [ - 679, + 706, { "updates": [ - 689, + 716, "[e_league_registration_statuses_updates!]!" ] } ], "update_e_league_season_statuses": [ - 700, + 727, { "_set": [ - 706 + 733 ], "where": [ - 693, + 720, "e_league_season_statuses_bool_exp!" ] } ], "update_e_league_season_statuses_by_pk": [ - 690, + 717, { "_set": [ - 706 + 733 ], "pk_columns": [ - 704, + 731, "e_league_season_statuses_pk_columns_input!" ] } ], "update_e_league_season_statuses_many": [ - 700, + 727, { "updates": [ - 710, + 737, "[e_league_season_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 721, + 748, { "_set": [ - 727 + 754 ], "where": [ - 714, + 741, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 711, + 738, { "_set": [ - 727 + 754 ], "pk_columns": [ - 725, + 752, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 721, + 748, { "updates": [ - 731, + 758, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 742, + 769, { "_set": [ - 747 + 774 ], "where": [ - 735, + 762, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 732, + 759, { "_set": [ - 747 + 774 ], "pk_columns": [ - 745, + 772, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 742, + 769, { "updates": [ - 751, + 778, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 762, + 789, { "_set": [ - 768 + 795 ], "where": [ - 755, + 782, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 752, + 779, { "_set": [ - 768 + 795 ], "pk_columns": [ - 766, + 793, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 762, + 789, { "updates": [ - 772, + 799, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 783, + 810, { "_set": [ - 788 + 815 ], "where": [ - 776, + 803, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 773, + 800, { "_set": [ - 788 + 815 ], "pk_columns": [ - 786, + 813, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 783, + 810, { "updates": [ - 792, + 819, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 803, + 830, { "_set": [ - 809 + 836 ], "where": [ - 796, + 823, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 793, + 820, { "_set": [ - 809 + 836 ], "pk_columns": [ - 807, + 834, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 803, + 830, { "updates": [ - 813, + 840, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 824, + 851, { "_set": [ - 829 + 856 ], "where": [ - 817, + 844, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 814, + 841, { "_set": [ - 829 + 856 ], "pk_columns": [ - 827, + 854, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 824, + 851, { "updates": [ - 833, + 860, "[e_match_mode_updates!]!" ] } ], "update_e_match_status": [ - 844, + 871, { "_set": [ - 850 + 877 ], "where": [ - 837, + 864, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 834, + 861, { "_set": [ - 850 + 877 ], "pk_columns": [ - 848, + 875, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 844, + 871, { "updates": [ - 854, + 881, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 865, + 892, { "_set": [ - 871 + 898 ], "where": [ - 858, + 885, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 855, + 882, { "_set": [ - 871 + 898 ], "pk_columns": [ - 869, + 896, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 865, + 892, { "updates": [ - 875, + 902, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 886, + 913, { "_set": [ - 891 + 918 ], "where": [ - 879, + 906, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 876, + 903, { "_set": [ - 891 + 918 ], "pk_columns": [ - 889, + 916, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 886, + 913, { "updates": [ - 895, + 922, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 906, + 933, { "_set": [ - 911 + 938 ], "where": [ - 899, + 926, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 896, + 923, { "_set": [ - 911 + 938 ], "pk_columns": [ - 909, + 936, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 906, + 933, { "updates": [ - 915, + 942, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 926, + 953, { "_set": [ - 931 + 958 ], "where": [ - 919, + 946, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 916, + 943, { "_set": [ - 931 + 958 ], "pk_columns": [ - 929, + 956, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 926, + 953, { "updates": [ - 935, + 962, "[e_player_roles_updates!]!" ] } ], "update_e_plugin_runtimes": [ - 946, + 973, { "_set": [ - 951 + 978 ], "where": [ - 939, + 966, "e_plugin_runtimes_bool_exp!" ] } ], "update_e_plugin_runtimes_by_pk": [ - 936, + 963, { "_set": [ - 951 + 978 ], "pk_columns": [ - 949, + 976, "e_plugin_runtimes_pk_columns_input!" ] } ], "update_e_plugin_runtimes_many": [ - 946, + 973, { "updates": [ - 955, + 982, "[e_plugin_runtimes_updates!]!" ] } ], "update_e_ready_settings": [ - 966, + 993, { "_set": [ - 971 + 998 ], "where": [ - 959, + 986, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 956, + 983, { "_set": [ - 971 + 998 ], "pk_columns": [ - 969, + 996, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 966, + 993, { "updates": [ - 975, + 1002, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 986, + 1013, { "_set": [ - 992 + 1019 ], "where": [ - 979, + 1006, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 976, + 1003, { "_set": [ - 992 + 1019 ], "pk_columns": [ - 990, + 1017, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 986, + 1013, { "updates": [ - 996, + 1023, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 1007, + 1034, { "_set": [ - 1012 + 1039 ], "where": [ - 1000, + 1027, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 997, + 1024, { "_set": [ - 1012 + 1039 ], "pk_columns": [ - 1010, + 1037, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 1007, + 1034, { "updates": [ - 1016, + 1043, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 1027, + 1054, { "_set": [ - 1032 + 1059 ], "where": [ - 1020, + 1047, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 1017, + 1044, { "_set": [ - 1032 + 1059 ], "pk_columns": [ - 1030, + 1057, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 1027, + 1054, { "updates": [ - 1036, + 1063, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 1047, + 1074, { "_set": [ - 1052 + 1079 ], "where": [ - 1040, + 1067, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 1037, + 1064, { "_set": [ - 1052 + 1079 ], "pk_columns": [ - 1050, + 1077, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 1047, + 1074, { "updates": [ - 1056, + 1083, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 1067, + 1094, { "_set": [ - 1072 + 1099 ], "where": [ - 1060, + 1087, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 1057, + 1084, { "_set": [ - 1072 + 1099 ], "pk_columns": [ - 1070, + 1097, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 1067, + 1094, { "updates": [ - 1076, + 1103, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 1087, + 1114, { "_set": [ - 1093 + 1120 ], "where": [ - 1080, + 1107, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 1077, + 1104, { "_set": [ - 1093 + 1120 ], "pk_columns": [ - 1091, + 1118, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 1087, + 1114, { "updates": [ - 1097, + 1124, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 1108, + 1135, { "_set": [ - 1113 + 1140 ], "where": [ - 1101, + 1128, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 1098, + 1125, { "_set": [ - 1113 + 1140 ], "pk_columns": [ - 1111, + 1138, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 1108, + 1135, { "updates": [ - 1117, + 1144, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 1128, + 1155, { "_set": [ - 1133 + 1160 ], "where": [ - 1121, + 1148, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 1118, + 1145, { "_set": [ - 1133 + 1160 ], "pk_columns": [ - 1131, + 1158, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 1128, + 1155, { "updates": [ - 1137, + 1164, "[e_timeout_settings_updates!]!" ] } ], + "update_e_tournament_categories": [ + 1175, + { + "_set": [ + 1181 + ], + "where": [ + 1168, + "e_tournament_categories_bool_exp!" + ] + } + ], + "update_e_tournament_categories_by_pk": [ + 1165, + { + "_set": [ + 1181 + ], + "pk_columns": [ + 1179, + "e_tournament_categories_pk_columns_input!" + ] + } + ], + "update_e_tournament_categories_many": [ + 1175, + { + "updates": [ + 1185, + "[e_tournament_categories_updates!]!" + ] + } + ], "update_e_tournament_stage_types": [ - 1148, + 1196, { "_set": [ - 1154 + 1202 ], "where": [ - 1141, + 1189, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 1138, + 1186, { "_set": [ - 1154 + 1202 ], "pk_columns": [ - 1152, + 1200, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 1148, + 1196, { "updates": [ - 1158, + 1206, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1169, + 1217, { "_set": [ - 1175 + 1223 ], "where": [ - 1162, + 1210, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1159, + 1207, { "_set": [ - 1175 + 1223 ], "pk_columns": [ - 1173, + 1221, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1169, + 1217, { "updates": [ - 1179, + 1227, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1190, + 1238, { "_set": [ - 1195 + 1243 ], "where": [ - 1183, + 1231, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1180, + 1228, { "_set": [ - 1195 + 1243 ], "pk_columns": [ - 1193, + 1241, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1190, + 1238, { "updates": [ - 1199, + 1247, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1210, + 1258, { "_set": [ - 1215 + 1263 ], "where": [ - 1203, + 1251, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1200, + 1248, { "_set": [ - 1215 + 1263 ], "pk_columns": [ - 1213, + 1261, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1210, + 1258, { "updates": [ - 1219, + 1267, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1230, + 1278, { "_set": [ - 1235 + 1283 ], "where": [ - 1223, + 1271, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1220, + 1268, { "_set": [ - 1235 + 1283 ], "pk_columns": [ - 1233, + 1281, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1230, + 1278, { "updates": [ - 1239, + 1287, "[e_winning_reasons_updates!]!" ] } ], "update_event_match_links": [ - 1248, + 1296, { "_set": [ - 1253 + 1301 ], "where": [ - 1243, + 1291, "event_match_links_bool_exp!" ] } ], "update_event_match_links_by_pk": [ - 1240, + 1288, { "_set": [ - 1253 + 1301 ], "pk_columns": [ - 1251, + 1299, "event_match_links_pk_columns_input!" ] } ], "update_event_match_links_many": [ - 1248, + 1296, { "updates": [ - 1257, + 1305, "[event_match_links_updates!]!" ] } ], "update_event_media": [ - 1275, + 1323, { "_inc": [ - 1269 + 1317 ], "_set": [ - 1322 + 1370 ], "where": [ - 1267, + 1315, "event_media_bool_exp!" ] } ], "update_event_media_by_pk": [ - 1258, + 1306, { "_inc": [ - 1269 + 1317 ], "_set": [ - 1322 + 1370 ], "pk_columns": [ - 1279, + 1327, "event_media_pk_columns_input!" ] } ], "update_event_media_many": [ - 1275, + 1323, { "updates": [ - 1334, + 1382, "[event_media_updates!]!" ] } ], "update_event_media_players": [ - 1297, + 1345, { "_inc": [ - 1291 + 1339 ], "_set": [ - 1302 + 1350 ], "where": [ - 1289, + 1337, "event_media_players_bool_exp!" ] } ], "update_event_media_players_by_pk": [ - 1280, + 1328, { "_inc": [ - 1291 + 1339 ], "_set": [ - 1302 + 1350 ], "pk_columns": [ - 1300, + 1348, "event_media_players_pk_columns_input!" ] } ], "update_event_media_players_many": [ - 1297, + 1345, { "updates": [ - 1314, + 1362, "[event_media_players_updates!]!" ] } ], "update_event_organizers": [ - 1358, + 1406, { "_inc": [ - 1352 + 1400 ], "_set": [ - 1363 + 1411 ], "where": [ - 1350, + 1398, "event_organizers_bool_exp!" ] } ], "update_event_organizers_by_pk": [ - 1341, + 1389, { "_inc": [ - 1352 + 1400 ], "_set": [ - 1363 + 1411 ], "pk_columns": [ - 1361, + 1409, "event_organizers_pk_columns_input!" ] } ], "update_event_organizers_many": [ - 1358, + 1406, { "updates": [ - 1375, + 1423, "[event_organizers_updates!]!" ] } ], "update_event_players": [ - 1399, + 1447, { "_inc": [ - 1393 + 1441 ], "_set": [ - 1404 + 1452 ], "where": [ - 1391, + 1439, "event_players_bool_exp!" ] } ], "update_event_players_by_pk": [ - 1382, + 1430, { "_inc": [ - 1393 + 1441 ], "_set": [ - 1404 + 1452 ], "pk_columns": [ - 1402, + 1450, "event_players_pk_columns_input!" ] } ], "update_event_players_many": [ - 1399, + 1447, { "updates": [ - 1416, + 1464, "[event_players_updates!]!" ] } ], "update_event_teams": [ - 1437, + 1485, { "_set": [ - 1442 + 1490 ], "where": [ - 1430, + 1478, "event_teams_bool_exp!" ] } ], "update_event_teams_by_pk": [ - 1423, + 1471, { "_set": [ - 1442 + 1490 ], "pk_columns": [ - 1440, + 1488, "event_teams_pk_columns_input!" ] } ], "update_event_teams_many": [ - 1437, + 1485, { "updates": [ - 1446, + 1494, "[event_teams_updates!]!" ] } ], "update_event_tournaments": [ - 1461, + 1509, { "_set": [ - 1466 + 1514 ], "where": [ - 1454, + 1502, "event_tournaments_bool_exp!" ] } ], "update_event_tournaments_by_pk": [ - 1447, + 1495, { "_set": [ - 1466 + 1514 ], "pk_columns": [ - 1464, + 1512, "event_tournaments_pk_columns_input!" ] } ], "update_event_tournaments_many": [ - 1461, + 1509, { "updates": [ - 1470, + 1518, "[event_tournaments_updates!]!" ] } ], "update_events": [ - 1481, + 1529, { "_inc": [ - 1477 + 1525 ], "_set": [ - 1487 + 1535 ], "where": [ - 1475, + 1523, "events_bool_exp!" ] } ], "update_events_by_pk": [ - 1471, + 1519, { "_inc": [ - 1477 + 1525 ], "_set": [ - 1487 + 1535 ], "pk_columns": [ - 1485, + 1533, "events_pk_columns_input!" ] } ], "update_events_many": [ - 1481, + 1529, { "updates": [ - 1495, + 1543, "[events_updates!]!" ] } ], "update_friends": [ - 1511, + 1559, { "_inc": [ - 1507 + 1555 ], "_set": [ - 1516 + 1564 ], "where": [ - 1505, + 1553, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1501, + 1549, { "_inc": [ - 1507 + 1555 ], "_set": [ - 1516 + 1564 ], "pk_columns": [ - 1514, + 1562, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1511, + 1559, { "updates": [ - 1524, + 1572, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 1551, + 1599, { "_append": [ - 1536 + 1584 ], "_delete_at_path": [ - 1542 + 1590 ], "_delete_elem": [ - 1543 + 1591 ], "_delete_key": [ - 1544 + 1592 ], "_inc": [ - 1545 + 1593 ], "_prepend": [ - 1556 + 1604 ], "_set": [ - 1560 + 1608 ], "where": [ - 1540, + 1588, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1528, + 1576, { "_append": [ - 1536 + 1584 ], "_delete_at_path": [ - 1542 + 1590 ], "_delete_elem": [ - 1543 + 1591 ], "_delete_key": [ - 1544 + 1592 ], "_inc": [ - 1545 + 1593 ], "_prepend": [ - 1556 + 1604 ], "_set": [ - 1560 + 1608 ], "pk_columns": [ - 1555, + 1603, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1551, + 1599, { "updates": [ - 1572, + 1620, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1593, + 1641, { "_append": [ - 1582 + 1630 ], "_delete_at_path": [ - 1586 + 1634 ], "_delete_elem": [ - 1587 + 1635 ], "_delete_key": [ - 1588 + 1636 ], "_inc": [ - 1589 + 1637 ], "_prepend": [ - 1598 + 1646 ], "_set": [ - 1600 + 1648 ], "where": [ - 1584, + 1632, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1579, + 1627, { "_append": [ - 1582 + 1630 ], "_delete_at_path": [ - 1586 + 1634 ], "_delete_elem": [ - 1587 + 1635 ], "_delete_key": [ - 1588 + 1636 ], "_inc": [ - 1589 + 1637 ], "_prepend": [ - 1598 + 1646 ], "_set": [ - 1600 + 1648 ], "pk_columns": [ - 1597, + 1645, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1593, + 1641, { "updates": [ - 1608, + 1656, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1626, + 1674, { "_append": [ - 1615 + 1663 ], "_delete_at_path": [ - 1619 + 1667 ], "_delete_elem": [ - 1620 + 1668 ], "_delete_key": [ - 1621 + 1669 ], "_inc": [ - 1622 + 1670 ], "_prepend": [ - 1630 + 1678 ], "_set": [ - 1632 + 1680 ], "where": [ - 1617, + 1665, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1612, + 1660, { "_append": [ - 1615 + 1663 ], "_delete_at_path": [ - 1619 + 1667 ], "_delete_elem": [ - 1620 + 1668 ], "_delete_key": [ - 1621 + 1669 ], "_inc": [ - 1622 + 1670 ], "_prepend": [ - 1630 + 1678 ], "_set": [ - 1632 + 1680 ], "pk_columns": [ - 1629, + 1677, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1626, + 1674, { "updates": [ - 1640, + 1688, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1664, + 1712, { "_inc": [ - 1660 + 1708 ], "_set": [ - 1667 + 1715 ], "where": [ - 1659, + 1707, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1664, + 1712, { "updates": [ - 1674, + 1722, "[leaderboard_entries_updates!]!" ] } ], "update_league_divisions": [ - 1689, + 1737, { "_inc": [ - 1685 + 1733 ], "_set": [ - 1695 + 1743 ], "where": [ - 1683, + 1731, "league_divisions_bool_exp!" ] } ], "update_league_divisions_by_pk": [ - 1679, + 1727, { "_inc": [ - 1685 + 1733 ], "_set": [ - 1695 + 1743 ], "pk_columns": [ - 1693, + 1741, "league_divisions_pk_columns_input!" ] } ], "update_league_divisions_many": [ - 1689, + 1737, { "updates": [ - 1703, + 1751, "[league_divisions_updates!]!" ] } ], "update_league_match_weeks": [ - 1724, + 1772, { "_inc": [ - 1718 + 1766 ], "_set": [ - 1729 + 1777 ], "where": [ - 1716, + 1764, "league_match_weeks_bool_exp!" ] } ], "update_league_match_weeks_by_pk": [ - 1707, + 1755, { "_inc": [ - 1718 + 1766 ], "_set": [ - 1729 + 1777 ], "pk_columns": [ - 1727, + 1775, "league_match_weeks_pk_columns_input!" ] } ], "update_league_match_weeks_many": [ - 1724, + 1772, { "updates": [ - 1741, + 1789, "[league_match_weeks_updates!]!" ] } ], "update_league_relegation_playoffs": [ - 1765, + 1813, { "_inc": [ - 1759 + 1807 ], "_set": [ - 1770 + 1818 ], "where": [ - 1757, + 1805, "league_relegation_playoffs_bool_exp!" ] } ], "update_league_relegation_playoffs_by_pk": [ - 1748, + 1796, { "_inc": [ - 1759 + 1807 ], "_set": [ - 1770 + 1818 ], "pk_columns": [ - 1768, + 1816, "league_relegation_playoffs_pk_columns_input!" ] } ], "update_league_relegation_playoffs_many": [ - 1765, + 1813, { "updates": [ - 1782, + 1830, "[league_relegation_playoffs_updates!]!" ] } ], "update_league_scheduling_proposals": [ - 1806, + 1854, { "_inc": [ - 1800 + 1848 ], "_set": [ - 1811 + 1859 ], "where": [ - 1798, + 1846, "league_scheduling_proposals_bool_exp!" ] } ], "update_league_scheduling_proposals_by_pk": [ - 1789, + 1837, { "_inc": [ - 1800 + 1848 ], "_set": [ - 1811 + 1859 ], "pk_columns": [ - 1809, + 1857, "league_scheduling_proposals_pk_columns_input!" ] } ], "update_league_scheduling_proposals_many": [ - 1806, + 1854, { "updates": [ - 1823, + 1871, "[league_scheduling_proposals_updates!]!" ] } ], "update_league_season_divisions": [ - 1844, + 1892, { "_set": [ - 1850 + 1898 ], "where": [ - 1837, + 1885, "league_season_divisions_bool_exp!" ] } ], "update_league_season_divisions_by_pk": [ - 1830, + 1878, { "_set": [ - 1850 + 1898 ], "pk_columns": [ - 1848, + 1896, "league_season_divisions_pk_columns_input!" ] } ], "update_league_season_divisions_many": [ - 1844, + 1892, { "updates": [ - 1854, + 1902, "[league_season_divisions_updates!]!" ] } ], "update_league_seasons": [ - 1869, + 1917, { "_append": [ - 1858 + 1906 ], "_delete_at_path": [ - 1862 + 1910 ], "_delete_elem": [ - 1863 + 1911 ], "_delete_key": [ - 1864 + 1912 ], "_inc": [ - 1865 + 1913 ], "_prepend": [ - 1874 + 1922 ], "_set": [ - 1876 + 1924 ], "where": [ - 1860, + 1908, "league_seasons_bool_exp!" ] } ], "update_league_seasons_by_pk": [ - 1855, + 1903, { "_append": [ - 1858 + 1906 ], "_delete_at_path": [ - 1862 + 1910 ], "_delete_elem": [ - 1863 + 1911 ], "_delete_key": [ - 1864 + 1912 ], "_inc": [ - 1865 + 1913 ], "_prepend": [ - 1874 + 1922 ], "_set": [ - 1876 + 1924 ], "pk_columns": [ - 1873, + 1921, "league_seasons_pk_columns_input!" ] } ], "update_league_seasons_many": [ - 1869, + 1917, { "updates": [ - 1884, + 1932, "[league_seasons_updates!]!" ] } ], "update_league_team_movements": [ - 1905, + 1953, { "_inc": [ - 1899 + 1947 ], "_set": [ - 1910 + 1958 ], "where": [ - 1897, + 1945, "league_team_movements_bool_exp!" ] } ], "update_league_team_movements_by_pk": [ - 1888, + 1936, { "_inc": [ - 1899 + 1947 ], "_set": [ - 1910 + 1958 ], "pk_columns": [ - 1908, + 1956, "league_team_movements_pk_columns_input!" ] } ], "update_league_team_movements_many": [ - 1905, + 1953, { "updates": [ - 1922, + 1970, "[league_team_movements_updates!]!" ] } ], "update_league_team_rosters": [ - 1946, + 1994, { "_inc": [ - 1940 + 1988 ], "_set": [ - 1951 + 1999 ], "where": [ - 1938, + 1986, "league_team_rosters_bool_exp!" ] } ], "update_league_team_rosters_by_pk": [ - 1929, + 1977, { "_inc": [ - 1940 + 1988 ], "_set": [ - 1951 + 1999 ], "pk_columns": [ - 1949, + 1997, "league_team_rosters_pk_columns_input!" ] } ], "update_league_team_rosters_many": [ - 1946, + 1994, { "updates": [ - 1963, + 2011, "[league_team_rosters_updates!]!" ] } ], "update_league_team_seasons": [ - 1987, + 2035, { "_inc": [ - 1981 + 2029 ], "_set": [ - 1993 + 2041 ], "where": [ - 1979, + 2027, "league_team_seasons_bool_exp!" ] } ], "update_league_team_seasons_by_pk": [ - 1970, + 2018, { "_inc": [ - 1981 + 2029 ], "_set": [ - 1993 + 2041 ], "pk_columns": [ - 1991, + 2039, "league_team_seasons_pk_columns_input!" ] } ], "update_league_team_seasons_many": [ - 1987, + 2035, { "updates": [ - 2005, + 2053, "[league_team_seasons_updates!]!" ] } ], "update_league_teams": [ - 2020, + 2068, { "_set": [ - 2026 + 2074 ], "where": [ - 2015, + 2063, "league_teams_bool_exp!" ] } ], "update_league_teams_by_pk": [ - 2012, + 2060, { "_set": [ - 2026 + 2074 ], "pk_columns": [ - 2024, + 2072, "league_teams_pk_columns_input!" ] } ], "update_league_teams_many": [ - 2020, + 2068, { "updates": [ - 2030, + 2078, "[league_teams_updates!]!" ] } ], "update_lobbies": [ - 2039, + 2087, { "_set": [ - 2045 + 2093 ], "where": [ - 2034, + 2082, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 2031, + 2079, { "_set": [ - 2045 + 2093 ], "pk_columns": [ - 2043, + 2091, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 2039, + 2087, { "updates": [ - 2049, + 2097, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 2069, + 2117, { "_inc": [ - 2063 + 2111 ], "_set": [ - 2076 + 2124 ], "where": [ - 2061, + 2109, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 2050, + 2098, { "_inc": [ - 2063 + 2111 ], "_set": [ - 2076 + 2124 ], "pk_columns": [ - 2072, + 2120, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 2069, + 2117, { "updates": [ - 2088, + 2136, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 2103, + 2151, { "_set": [ - 2109 + 2157 ], "where": [ - 2098, + 2146, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 2095, + 2143, { "_set": [ - 2109 + 2157 ], "pk_columns": [ - 2107, + 2155, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 2103, + 2151, { "updates": [ - 2113, + 2161, "[map_pools_updates!]!" ] } ], "update_maps": [ - 2130, + 2178, { "_set": [ - 2138 + 2186 ], "where": [ - 2123, + 2171, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 2114, + 2162, { "_set": [ - 2138 + 2186 ], "pk_columns": [ - 2134, + 2182, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 2130, + 2178, { "updates": [ - 2142, + 2190, "[maps_updates!]!" ] } ], "update_match_clips": [ - 2160, + 2208, { "_inc": [ - 2154 + 2202 ], "_set": [ - 2166 + 2214 ], "where": [ - 2152, + 2200, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 2143, + 2191, { "_inc": [ - 2154 + 2202 ], "_set": [ - 2166 + 2214 ], "pk_columns": [ - 2164, + 2212, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 2160, + 2208, { "updates": [ - 2178, + 2226, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 2206, + 2254, { "_append": [ - 2191 + 2239 ], "_delete_at_path": [ - 2197 + 2245 ], "_delete_elem": [ - 2198 + 2246 ], "_delete_key": [ - 2199 + 2247 ], "_inc": [ - 2200 + 2248 ], "_prepend": [ - 2210 + 2258 ], "_set": [ - 2212 + 2260 ], "where": [ - 2195, + 2243, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 2185, + 2233, { "_append": [ - 2191 + 2239 ], "_delete_at_path": [ - 2197 + 2245 ], "_delete_elem": [ - 2198 + 2246 ], "_delete_key": [ - 2199 + 2247 ], "_inc": [ - 2200 + 2248 ], "_prepend": [ - 2210 + 2258 ], "_set": [ - 2212 + 2260 ], "pk_columns": [ - 2209, + 2257, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 2206, + 2254, { "updates": [ - 2224, + 2272, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 2250, + 2298, { "_inc": [ - 2244 + 2292 ], "_set": [ - 2257 + 2305 ], "where": [ - 2242, + 2290, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 2231, + 2279, { "_inc": [ - 2244 + 2292 ], "_set": [ - 2257 + 2305 ], "pk_columns": [ - 2253, + 2301, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 2250, + 2298, { "updates": [ - 2269, + 2317, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 2293, + 2341, { "_inc": [ - 2287 + 2335 ], "_set": [ - 2299 + 2347 ], "where": [ - 2285, + 2333, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 2276, + 2324, { "_inc": [ - 2287 + 2335 ], "_set": [ - 2299 + 2347 ], "pk_columns": [ - 2297, + 2345, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 2293, + 2341, { "updates": [ - 2311, + 2359, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2341, + 2389, { "_append": [ - 2326 + 2374 ], "_delete_at_path": [ - 2332 + 2380 ], "_delete_elem": [ - 2333 + 2381 ], "_delete_key": [ - 2334 + 2382 ], "_inc": [ - 2335 + 2383 ], "_prepend": [ - 2346 + 2394 ], "_set": [ - 2350 + 2398 ], "where": [ - 2330, + 2378, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 2318, + 2366, { "_append": [ - 2326 + 2374 ], "_delete_at_path": [ - 2332 + 2380 ], "_delete_elem": [ - 2333 + 2381 ], "_delete_key": [ - 2334 + 2382 ], "_inc": [ - 2335 + 2383 ], "_prepend": [ - 2346 + 2394 ], "_set": [ - 2350 + 2398 ], "pk_columns": [ - 2345, + 2393, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2341, + 2389, { "updates": [ - 2362, + 2410, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2386, + 2434, { "_inc": [ - 2380 + 2428 ], "_set": [ - 2391 + 2439 ], "where": [ - 2378, + 2426, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2369, + 2417, { "_inc": [ - 2380 + 2428 ], "_set": [ - 2391 + 2439 ], "pk_columns": [ - 2389, + 2437, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2386, + 2434, { "updates": [ - 2403, + 2451, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2424, + 2472, { "_set": [ - 2429 + 2477 ], "where": [ - 2417, + 2465, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2410, + 2458, { "_set": [ - 2429 + 2477 ], "pk_columns": [ - 2427, + 2475, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2424, + 2472, { "updates": [ - 2433, + 2481, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2451, + 2499, { "_inc": [ - 2445 + 2493 ], "_set": [ - 2457 + 2505 ], "where": [ - 2443, + 2491, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2434, + 2482, { "_inc": [ - 2445 + 2493 ], "_set": [ - 2457 + 2505 ], "pk_columns": [ - 2455, + 2503, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2451, + 2499, { "updates": [ - 2469, + 2517, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2486, + 2534, { "_inc": [ - 2482 + 2530 ], "_set": [ - 2492 + 2540 ], "where": [ - 2480, + 2528, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2476, + 2524, { "_inc": [ - 2482 + 2530 ], "_set": [ - 2492 + 2540 ], "pk_columns": [ - 2490, + 2538, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2486, + 2534, { "updates": [ - 2500, + 2548, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2518, + 2566, { "_set": [ - 2523 + 2571 ], "where": [ - 2511, + 2559, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2504, + 2552, { "_set": [ - 2523 + 2571 ], "pk_columns": [ - 2521, + 2569, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2518, + 2566, { "updates": [ - 2527, + 2575, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2551, + 2599, { "_append": [ - 2536 + 2584 ], "_delete_at_path": [ - 2542 + 2590 ], "_delete_elem": [ - 2543 + 2591 ], "_delete_key": [ - 2544 + 2592 ], "_inc": [ - 2545 + 2593 ], "_prepend": [ - 2555 + 2603 ], "_set": [ - 2559 + 2607 ], "where": [ - 2540, + 2588, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2528, + 2576, { "_append": [ - 2536 + 2584 ], "_delete_at_path": [ - 2542 + 2590 ], "_delete_elem": [ - 2543 + 2591 ], "_delete_key": [ - 2544 + 2592 ], "_inc": [ - 2545 + 2593 ], "_prepend": [ - 2555 + 2603 ], "_set": [ - 2559 + 2607 ], "pk_columns": [ - 2554, + 2602, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2551, + 2599, { "updates": [ - 2571, + 2619, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2586, + 2634, { "_set": [ - 2591 + 2639 ], "where": [ - 2581, + 2629, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2578, + 2626, { "_set": [ - 2591 + 2639 ], "pk_columns": [ - 2589, + 2637, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2586, + 2634, { "updates": [ - 2595, + 2643, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2613, + 2661, { "_inc": [ - 2607 + 2655 ], "_set": [ - 2619 + 2667 ], "where": [ - 2605, + 2653, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2596, + 2644, { "_inc": [ - 2607 + 2655 ], "_set": [ - 2619 + 2667 ], "pk_columns": [ - 2617, + 2665, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2613, + 2661, { "updates": [ - 2631, + 2679, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2646, + 2694, { "_set": [ - 2651 + 2699 ], "where": [ - 2641, + 2689, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2638, + 2686, { "_set": [ - 2651 + 2699 ], "pk_columns": [ - 2649, + 2697, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2646, + 2694, { "updates": [ - 2655, + 2703, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2678, + 2726, { "_append": [ - 2664 + 2712 ], "_delete_at_path": [ - 2669 + 2717 ], "_delete_elem": [ - 2670 + 2718 ], "_delete_key": [ - 2671 + 2719 ], "_inc": [ - 2672 + 2720 ], "_prepend": [ - 2680 + 2728 ], "_set": [ - 2684 + 2732 ], "where": [ - 2668, + 2716, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2678, + 2726, { "updates": [ - 2695, + 2743, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2712, + 2760, { "_inc": [ - 2708 + 2756 ], "_set": [ - 2717 + 2765 ], "where": [ - 2706, + 2754, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2702, + 2750, { "_inc": [ - 2708 + 2756 ], "_set": [ - 2717 + 2765 ], "pk_columns": [ - 2715, + 2763, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2712, + 2760, { "updates": [ - 2725, + 2773, "[news_articles_updates!]!" ] } ], "update_notifications": [ - 2752, + 2800, { "_append": [ - 2737 + 2785 ], "_delete_at_path": [ - 2743 + 2791 ], "_delete_elem": [ - 2744 + 2792 ], "_delete_key": [ - 2745 + 2793 ], "_inc": [ - 2746 + 2794 ], "_prepend": [ - 2756 + 2804 ], "_set": [ - 2760 + 2808 ], "where": [ - 2741, + 2789, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 2729, + 2777, { "_append": [ - 2737 + 2785 ], "_delete_at_path": [ - 2743 + 2791 ], "_delete_elem": [ - 2744 + 2792 ], "_delete_key": [ - 2745 + 2793 ], "_inc": [ - 2746 + 2794 ], "_prepend": [ - 2756 + 2804 ], "_set": [ - 2760 + 2808 ], "pk_columns": [ - 2755, + 2803, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 2752, + 2800, { "updates": [ - 2772, + 2820, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 2799, + 2847, { "_inc": [ - 2793 + 2841 ], "_set": [ - 2804 + 2852 ], "where": [ - 2791, + 2839, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 2782, + 2830, { "_inc": [ - 2793 + 2841 ], "_set": [ - 2804 + 2852 ], "pk_columns": [ - 2802, + 2850, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 2799, + 2847, { "updates": [ - 2816, + 2864, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 2833, + 2881, { "_inc": [ - 2829 + 2877 ], "_set": [ - 2839 + 2887 ], "where": [ - 2827, + 2875, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 2823, + 2871, { "_inc": [ - 2829 + 2877 ], "_set": [ - 2839 + 2887 ], "pk_columns": [ - 2837, + 2885, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 2833, + 2881, { "updates": [ - 2847, + 2895, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 2861, + 2909, { "_inc": [ - 2857 + 2905 ], "_set": [ - 2866 + 2914 ], "where": [ - 2855, + 2903, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 2851, + 2899, { "_inc": [ - 2857 + 2905 ], "_set": [ - 2866 + 2914 ], "pk_columns": [ - 2864, + 2912, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 2861, + 2909, { "updates": [ - 2874, + 2922, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 2895, + 2943, { "_inc": [ - 2889 + 2937 ], "_set": [ - 2900 + 2948 ], "where": [ - 2887, + 2935, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 2878, + 2926, { "_inc": [ - 2889 + 2937 ], "_set": [ - 2900 + 2948 ], "pk_columns": [ - 2898, + 2946, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 2895, + 2943, { "updates": [ - 2912, + 2960, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 2938, + 2986, { "_inc": [ - 2932 + 2980 ], "_set": [ - 2945 + 2993 ], "where": [ - 2930, + 2978, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 2919, + 2967, { "_inc": [ - 2932 + 2980 ], "_set": [ - 2945 + 2993 ], "pk_columns": [ - 2941, + 2989, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 2938, + 2986, { "updates": [ - 2957, + 3005, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 2999, + 3047, { "_inc": [ - 2993 + 3041 ], "_set": [ - 3004 + 3052 ], "where": [ - 2991, + 3039, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 2982, + 3030, { "_inc": [ - 2993 + 3041 ], "_set": [ - 3004 + 3052 ], "pk_columns": [ - 3002, + 3050, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 2999, + 3047, { "updates": [ - 3016, + 3064, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 3033, + 3081, { "_inc": [ - 3029 + 3077 ], "_set": [ - 3038 + 3086 ], "where": [ - 3027, + 3075, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 3023, + 3071, { "_inc": [ - 3029 + 3077 ], "_set": [ - 3038 + 3086 ], "pk_columns": [ - 3036, + 3084, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 3033, + 3081, { "updates": [ - 3046, + 3094, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 3067, + 3115, { "_inc": [ - 3061 + 3109 ], "_set": [ - 3072 + 3120 ], "where": [ - 3059, + 3107, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 3050, + 3098, { "_inc": [ - 3061 + 3109 ], "_set": [ - 3072 + 3120 ], "pk_columns": [ - 3070, + 3118, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 3067, + 3115, { "updates": [ - 3084, + 3132, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 3110, + 3158, { "_inc": [ - 3104 + 3152 ], "_set": [ - 3117 + 3165 ], "where": [ - 3102, + 3150, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 3091, + 3139, { "_inc": [ - 3104 + 3152 ], "_set": [ - 3117 + 3165 ], "pk_columns": [ - 3113, + 3161, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 3110, + 3158, { "updates": [ - 3129, + 3177, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 3196, + 3244, { "_inc": [ - 3190 + 3238 ], "_set": [ - 3203 + 3251 ], "where": [ - 3147, + 3195, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 3136, + 3184, { "_inc": [ - 3190 + 3238 ], "_set": [ - 3203 + 3251 ], "pk_columns": [ - 3199, + 3247, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 3165, + 3213, { "_inc": [ - 3159 + 3207 ], "_set": [ - 3170 + 3218 ], "where": [ - 3157, + 3205, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 3148, + 3196, { "_inc": [ - 3159 + 3207 ], "_set": [ - 3170 + 3218 ], "pk_columns": [ - 3168, + 3216, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 3165, + 3213, { "updates": [ - 3182, + 3230, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 3196, + 3244, { "updates": [ - 3215, + 3263, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 3231, + 3279, { "_inc": [ - 3227 + 3275 ], "_set": [ - 3234 + 3282 ], "where": [ - 3226, + 3274, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 3231, + 3279, { "updates": [ - 3241, + 3289, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 3262, + 3310, { "_inc": [ - 3256 + 3304 ], "_set": [ - 3267 + 3315 ], "where": [ - 3254, + 3302, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 3245, + 3293, { "_inc": [ - 3256 + 3304 ], "_set": [ - 3267 + 3315 ], "pk_columns": [ - 3265, + 3313, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 3262, + 3310, { "updates": [ - 3279, + 3327, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3354, + 3402, { "_inc": [ - 3348 + 3396 ], "_set": [ - 3359 + 3407 ], "where": [ - 3346, + 3394, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3337, + 3385, { "_inc": [ - 3348 + 3396 ], "_set": [ - 3359 + 3407 ], "pk_columns": [ - 3357, + 3405, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3354, + 3402, { "updates": [ - 3371, + 3419, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3413, + 3461, { "_inc": [ - 3407 + 3455 ], "_set": [ - 3418 + 3466 ], "where": [ - 3405, + 3453, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3396, + 3444, { "_inc": [ - 3407 + 3455 ], "_set": [ - 3418 + 3466 ], "pk_columns": [ - 3416, + 3464, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3413, + 3461, { "updates": [ - 3430, + 3478, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3454, + 3502, { "_inc": [ - 3448 + 3496 ], "_set": [ - 3459 + 3507 ], "where": [ - 3446, + 3494, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3437, + 3485, { "_inc": [ - 3448 + 3496 ], "_set": [ - 3459 + 3507 ], "pk_columns": [ - 3457, + 3505, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3454, + 3502, { "updates": [ - 3471, + 3519, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3505, + 3553, { "_inc": [ - 3499 + 3547 ], "_set": [ - 3518 + 3566 ], "where": [ - 3497, + 3545, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3478, + 3526, { "_inc": [ - 3499 + 3547 ], "_set": [ - 3518 + 3566 ], "pk_columns": [ - 3508, + 3556, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3505, + 3553, { "updates": [ - 3530, + 3578, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3547, + 3595, { "_inc": [ - 3543 + 3591 ], "_set": [ - 3553 + 3601 ], "where": [ - 3541, + 3589, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3537, + 3585, { "_inc": [ - 3543 + 3591 ], "_set": [ - 3553 + 3601 ], "pk_columns": [ - 3551, + 3599, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3547, + 3595, { "updates": [ - 3561, + 3609, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3579, + 3627, { "_append": [ - 3568 + 3616 ], "_delete_at_path": [ - 3572 + 3620 ], "_delete_elem": [ - 3573 + 3621 ], "_delete_key": [ - 3574 + 3622 ], "_inc": [ - 3575 + 3623 ], "_prepend": [ - 3583 + 3631 ], "_set": [ - 3585 + 3633 ], "where": [ - 3570, + 3618, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3565, + 3613, { "_append": [ - 3568 + 3616 ], "_delete_at_path": [ - 3572 + 3620 ], "_delete_elem": [ - 3573 + 3621 ], "_delete_key": [ - 3574 + 3622 ], "_inc": [ - 3575 + 3623 ], "_prepend": [ - 3583 + 3631 ], "_set": [ - 3585 + 3633 ], "pk_columns": [ - 3582, + 3630, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3579, + 3627, { "updates": [ - 3593, + 3641, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3607, + 3655, { "_inc": [ - 3603 + 3651 ], "_set": [ - 3612 + 3660 ], "where": [ - 3601, + 3649, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3597, + 3645, { "_inc": [ - 3603 + 3651 ], "_set": [ - 3612 + 3660 ], "pk_columns": [ - 3610, + 3658, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3607, + 3655, { "updates": [ - 3620, + 3668, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3641, + 3689, { "_inc": [ - 3635 + 3683 ], "_set": [ - 3646 + 3694 ], "where": [ - 3633, + 3681, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3624, + 3672, { "_inc": [ - 3635 + 3683 ], "_set": [ - 3646 + 3694 ], "pk_columns": [ - 3644, + 3692, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3641, + 3689, { "updates": [ - 3658, + 3706, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3682, + 3730, { "_inc": [ - 3676 + 3724 ], "_set": [ - 3687 + 3735 ], "where": [ - 3674, + 3722, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3665, + 3713, { "_inc": [ - 3676 + 3724 ], "_set": [ - 3687 + 3735 ], "pk_columns": [ - 3685, + 3733, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3682, + 3730, { "updates": [ - 3699, + 3747, "[player_utility_updates!]!" ] } ], "update_players": [ - 3749, + 3797, { "_inc": [ - 3745 + 3793 ], "_set": [ - 3755 + 3803 ], "where": [ - 3743, + 3791, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 3739, + 3787, { "_inc": [ - 3745 + 3793 ], "_set": [ - 3755 + 3803 ], "pk_columns": [ - 3753, + 3801, "players_pk_columns_input!" ] } ], "update_players_many": [ - 3749, + 3797, { "updates": [ - 3763, + 3811, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 3777, + 3825, { "_inc": [ - 3773 + 3821 ], "_set": [ - 3782 + 3830 ], "where": [ - 3771, + 3819, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 3767, + 3815, { "_inc": [ - 3773 + 3821 ], "_set": [ - 3782 + 3830 ], "pk_columns": [ - 3780, + 3828, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 3777, + 3825, { "updates": [ - 3790, + 3838, "[plugin_versions_updates!]!" ] } ], "update_seasons": [ - 3808, + 3856, { "_inc": [ - 3804 + 3852 ], "_set": [ - 3814 + 3862 ], "where": [ - 3802, + 3850, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 3798, + 3846, { "_inc": [ - 3804 + 3852 ], "_set": [ - 3814 + 3862 ], "pk_columns": [ - 3812, + 3860, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 3808, + 3856, { "updates": [ - 3822, + 3870, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 3835, + 3883, { "_set": [ - 3841 + 3889 ], "where": [ - 3830, + 3878, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 3826, + 3874, { "_set": [ - 3841 + 3889 ], "pk_columns": [ - 3839, + 3887, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 3835, + 3883, { "updates": [ - 3849, + 3897, "[server_regions_updates!]!" ] } ], "update_servers": [ - 3872, + 3920, { "_inc": [ - 3866 + 3914 ], "_set": [ - 3880 + 3928 ], "where": [ - 3864, + 3912, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 3853, + 3901, { "_inc": [ - 3866 + 3914 ], "_set": [ - 3880 + 3928 ], "pk_columns": [ - 3876, + 3924, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 3872, + 3920, { "updates": [ - 3892, + 3940, "[servers_updates!]!" ] } ], "update_settings": [ - 3907, + 3955, { "_set": [ - 3912 + 3960 ], "where": [ - 3902, + 3950, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 3899, + 3947, { "_set": [ - 3912 + 3960 ], "pk_columns": [ - 3910, + 3958, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 3907, + 3955, { "updates": [ - 3916, + 3964, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 3933, + 3981, { "_set": [ - 3938 + 3986 ], "where": [ - 3926, + 3974, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 3919, + 3967, { "_set": [ - 3938 + 3986 ], "pk_columns": [ - 3936, + 3984, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 3933, + 3981, { "updates": [ - 3942, + 3990, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 3953, + 4001, { "_inc": [ - 3949 + 3997 ], "_set": [ - 3959 + 4007 ], "where": [ - 3947, + 3995, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 3943, + 3991, { "_inc": [ - 3949 + 3997 ], "_set": [ - 3959 + 4007 ], "pk_columns": [ - 3957, + 4005, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 3953, + 4001, { "updates": [ - 3967, + 4015, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 3981, + 4029, { "_inc": [ - 3977 + 4025 ], "_set": [ - 3986 + 4034 ], "where": [ - 3975, + 4023, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 3971, + 4019, { "_inc": [ - 3977 + 4025 ], "_set": [ - 3986 + 4034 ], "pk_columns": [ - 3984, + 4032, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 3981, + 4029, { "updates": [ - 3994, + 4042, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 4015, + 4063, { "_inc": [ - 4009 + 4057 ], "_set": [ - 4020 + 4068 ], "where": [ - 4007, + 4055, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 3998, + 4046, { "_inc": [ - 4009 + 4057 ], "_set": [ - 4020 + 4068 ], "pk_columns": [ - 4018, + 4066, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 4015, + 4063, { "updates": [ - 4032, + 4080, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 4058, + 4106, { "_inc": [ - 4052 + 4100 ], "_set": [ - 4065 + 4113 ], "where": [ - 4050, + 4098, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 4039, + 4087, { "_inc": [ - 4052 + 4100 ], "_set": [ - 4065 + 4113 ], "pk_columns": [ - 4061, + 4109, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 4058, + 4106, { "updates": [ - 4077, + 4125, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 4094, + 4142, { "_inc": [ - 4090 + 4138 ], "_set": [ - 4099 + 4147 ], "where": [ - 4088, + 4136, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 4084, + 4132, { "_inc": [ - 4090 + 4138 ], "_set": [ - 4099 + 4147 ], "pk_columns": [ - 4097, + 4145, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 4094, + 4142, { "updates": [ - 4107, + 4155, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 4127, + 4175, { "_set": [ - 4134 + 4182 ], "where": [ - 4120, + 4168, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 4111, + 4159, { "_set": [ - 4134 + 4182 ], "pk_columns": [ - 4130, + 4178, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 4127, + 4175, { "updates": [ - 4138, + 4186, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 4156, + 4204, { "_inc": [ - 4150 + 4198 ], "_set": [ - 4161 + 4209 ], "where": [ - 4148, + 4196, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 4139, + 4187, { "_inc": [ - 4150 + 4198 ], "_set": [ - 4161 + 4209 ], "pk_columns": [ - 4159, + 4207, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 4156, + 4204, { "updates": [ - 4173, + 4221, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 4199, + 4247, { "_inc": [ - 4193 + 4241 ], "_set": [ - 4207 + 4255 ], "where": [ - 4191, + 4239, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 4180, + 4228, { "_inc": [ - 4193 + 4241 ], "_set": [ - 4207 + 4255 ], "pk_columns": [ - 4203, + 4251, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 4199, + 4247, { "updates": [ - 4219, + 4267, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 4236, + 4284, { "_inc": [ - 4232 + 4280 ], "_set": [ - 4242 + 4290 ], "where": [ - 4230, + 4278, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 4226, + 4274, { "_inc": [ - 4232 + 4280 ], "_set": [ - 4242 + 4290 ], "pk_columns": [ - 4240, + 4288, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 4236, + 4284, { "updates": [ - 4250, + 4298, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 4264, + 4312, { "_inc": [ - 4260 + 4308 ], "_set": [ - 4269 + 4317 ], "where": [ - 4258, + 4306, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 4254, + 4302, { "_inc": [ - 4260 + 4308 ], "_set": [ - 4269 + 4317 ], "pk_columns": [ - 4267, + 4315, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 4264, + 4312, { "updates": [ - 4277, + 4325, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 4298, + 4348, { "_inc": [ - 4292 + 4342 ], "_set": [ - 4304 + 4356 ], "where": [ - 4290, + 4340, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 4281, + 4329, { "_inc": [ - 4292 + 4342 ], "_set": [ - 4304 + 4356 ], "pk_columns": [ - 4302, + 4352, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 4298, + 4348, { "updates": [ - 4316, + 4368, "[teams_updates!]!" ] } ], "update_tournament_brackets": [ - 4345, + 4397, { "_inc": [ - 4339 + 4391 ], "_set": [ - 4353 + 4405 ], "where": [ - 4337, + 4389, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4326, + 4378, { "_inc": [ - 4339 + 4391 ], "_set": [ - 4353 + 4405 ], "pk_columns": [ - 4349, + 4401, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4345, + 4397, { "updates": [ - 4365, + 4417, "[tournament_brackets_updates!]!" ] } ], + "update_tournament_categories": [ + 4438, + { + "_set": [ + 4443 + ], + "where": [ + 4431, + "tournament_categories_bool_exp!" + ] + } + ], + "update_tournament_categories_by_pk": [ + 4424, + { + "_set": [ + 4443 + ], + "pk_columns": [ + 4441, + "tournament_categories_pk_columns_input!" + ] + } + ], + "update_tournament_categories_many": [ + 4438, + { + "updates": [ + 4447, + "[tournament_categories_updates!]!" + ] + } + ], + "update_tournament_organizer_teams": [ + 4462, + { + "_set": [ + 4467 + ], + "where": [ + 4455, + "tournament_organizer_teams_bool_exp!" + ] + } + ], + "update_tournament_organizer_teams_by_pk": [ + 4448, + { + "_set": [ + 4467 + ], + "pk_columns": [ + 4465, + "tournament_organizer_teams_pk_columns_input!" + ] + } + ], + "update_tournament_organizer_teams_many": [ + 4462, + { + "updates": [ + 4471, + "[tournament_organizer_teams_updates!]!" + ] + } + ], "update_tournament_organizers": [ - 4389, + 4489, { "_inc": [ - 4383 + 4483 ], "_set": [ - 4394 + 4494 ], "where": [ - 4381, + 4481, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4372, + 4472, { "_inc": [ - 4383 + 4483 ], "_set": [ - 4394 + 4494 ], "pk_columns": [ - 4392, + 4492, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4389, + 4489, { "updates": [ - 4406, + 4506, "[tournament_organizers_updates!]!" ] } ], + "update_tournament_prizes": [ + 4530, + { + "_inc": [ + 4524 + ], + "_set": [ + 4535 + ], + "where": [ + 4522, + "tournament_prizes_bool_exp!" + ] + } + ], + "update_tournament_prizes_by_pk": [ + 4513, + { + "_inc": [ + 4524 + ], + "_set": [ + 4535 + ], + "pk_columns": [ + 4533, + "tournament_prizes_pk_columns_input!" + ] + } + ], + "update_tournament_prizes_many": [ + 4530, + { + "updates": [ + 4547, + "[tournament_prizes_updates!]!" + ] + } + ], "update_tournament_stage_windows": [ - 4430, + 4571, { "_inc": [ - 4424 + 4565 ], "_set": [ - 4435 + 4576 ], "where": [ - 4422, + 4563, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4413, + 4554, { "_inc": [ - 4424 + 4565 ], "_set": [ - 4435 + 4576 ], "pk_columns": [ - 4433, + 4574, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4430, + 4571, { "updates": [ - 4447, + 4588, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4477, + 4618, { "_append": [ - 4462 + 4603 ], "_delete_at_path": [ - 4468 + 4609 ], "_delete_elem": [ - 4469 + 4610 ], "_delete_key": [ - 4470 + 4611 ], "_inc": [ - 4471 + 4612 ], "_prepend": [ - 4482 + 4623 ], "_set": [ - 4486 + 4627 ], "where": [ - 4466, + 4607, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4454, + 4595, { "_append": [ - 4462 + 4603 ], "_delete_at_path": [ - 4468 + 4609 ], "_delete_elem": [ - 4469 + 4610 ], "_delete_key": [ - 4470 + 4611 ], "_inc": [ - 4471 + 4612 ], "_prepend": [ - 4482 + 4623 ], "_set": [ - 4486 + 4627 ], "pk_columns": [ - 4481, + 4622, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4477, + 4618, { "updates": [ - 4498, + 4639, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4522, + 4663, { "_inc": [ - 4516 + 4657 ], "_set": [ - 4527 + 4668 ], "where": [ - 4514, + 4655, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4505, + 4646, { "_inc": [ - 4516 + 4657 ], "_set": [ - 4527 + 4668 ], "pk_columns": [ - 4525, + 4666, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4522, + 4663, { "updates": [ - 4539, + 4680, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 4563, + 4704, { "_inc": [ - 4557 + 4698 ], "_set": [ - 4568 + 4709 ], "where": [ - 4555, + 4696, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 4546, + 4687, { "_inc": [ - 4557 + 4698 ], "_set": [ - 4568 + 4709 ], "pk_columns": [ - 4566, + 4707, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 4563, + 4704, { "updates": [ - 4580, + 4721, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 4604, + 4745, { "_inc": [ - 4598 + 4739 ], "_set": [ - 4610 + 4751 ], "where": [ - 4596, + 4737, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 4587, + 4728, { "_inc": [ - 4598 + 4739 ], "_set": [ - 4610 + 4751 ], "pk_columns": [ - 4608, + 4749, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 4604, + 4745, { "updates": [ - 4622, + 4763, "[tournament_teams_updates!]!" ] } ], "update_tournament_trophies": [ - 4648, + 4789, { "_inc": [ - 4642 + 4783 ], "_set": [ - 4655 + 4796 ], "where": [ - 4640, + 4781, "tournament_trophies_bool_exp!" ] } ], "update_tournament_trophies_by_pk": [ - 4629, + 4770, { "_inc": [ - 4642 + 4783 ], "_set": [ - 4655 + 4796 ], "pk_columns": [ - 4651, + 4792, "tournament_trophies_pk_columns_input!" ] } ], "update_tournament_trophies_many": [ - 4648, + 4789, { "updates": [ - 4667, + 4808, "[tournament_trophies_updates!]!" ] } ], "update_tournament_trophy_configs": [ - 4691, + 4832, { "_inc": [ - 4685 + 4826 ], "_set": [ - 4697 + 4838 ], "where": [ - 4683, + 4824, "tournament_trophy_configs_bool_exp!" ] } ], "update_tournament_trophy_configs_by_pk": [ - 4674, + 4815, { "_inc": [ - 4685 + 4826 ], "_set": [ - 4697 + 4838 ], "pk_columns": [ - 4695, + 4836, "tournament_trophy_configs_pk_columns_input!" ] } ], "update_tournament_trophy_configs_many": [ - 4691, + 4832, { "updates": [ - 4709, + 4850, "[tournament_trophy_configs_updates!]!" ] } ], "update_tournaments": [ - 4735, + 4886, { "_inc": [ - 4729 + 4880 ], "_set": [ - 4743 + 4902 ], "where": [ - 4727, + 4878, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 4716, + 4857, { "_inc": [ - 4729 + 4880 ], "_set": [ - 4743 + 4902 ], "pk_columns": [ - 4739, + 4890, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 4735, + 4886, { "updates": [ - 4755, + 4914, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 4927, + 5086, { "_inc": [ - 4923 + 5082 ], "_set": [ - 4931 + 5090 ], "where": [ - 4922, + 5081, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 4927, + 5086, { "updates": [ - 4938, + 5097, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 5038, + 5197, { "_inc": [ - 5034 + 5193 ], "_set": [ - 5041 + 5200 ], "where": [ - 5033, + 5192, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 5038, + 5197, { "updates": [ - 5048, + 5207, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 5260, + 5419, { "_inc": [ - 5254 + 5413 ], "_set": [ - 5263 + 5422 ], "where": [ - 5253, + 5412, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 5260, + 5419, { "updates": [ - 5274, + 5433, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5419, + 5578, { "_set": [ - 5424 + 5583 ], "where": [ - 5413, + 5572, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5419, + 5578, { "updates": [ - 5427, + 5586, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5513, + 5672, { "_inc": [ - 5507 + 5666 ], "_set": [ - 5527 + 5686 ], "where": [ - 5505, + 5664, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5486, + 5645, { "_inc": [ - 5507 + 5666 ], "_set": [ - 5527 + 5686 ], "pk_columns": [ - 5517, + 5676, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5513, + 5672, { "updates": [ - 5539, + 5698, "[v_team_stage_results_updates!]!" ] } @@ -154293,7 +157888,7 @@ export default { 81, { "game_server_node_id": [ - 4762, + 4921, "uuid!" ] } @@ -154302,10 +157897,10 @@ export default { 91, { "match_map_demo_id": [ - 4762 + 4921 ], "match_map_id": [ - 4762, + 4921, "uuid!" ] } @@ -154383,11 +157978,11 @@ export default { 92, { "map_id": [ - 4762, + 4921, "uuid!" ], "map_pool_id": [ - 4762, + 4921, "uuid!" ] } @@ -154456,7 +158051,7 @@ export default { 111, { "id": [ - 4762, + 4921, "uuid!" ] } @@ -154525,7 +158120,7 @@ export default { 152, { "id": [ - 4762, + 4921, "uuid!" ] } @@ -154594,7 +158189,7 @@ export default { 185, { "id": [ - 4762, + 4921, "uuid!" ] } @@ -154615,12 +158210,12 @@ export default { ] } ], - "db_backups": [ + "custom_pages": [ 237, { "distinct_on": [ 251, - "[db_backups_select_column!]" + "[custom_pages_select_column!]" ], "limit": [ 38 @@ -154630,19 +158225,19 @@ export default { ], "order_by": [ 249, - "[db_backups_order_by!]" + "[custom_pages_order_by!]" ], "where": [ 241 ] } ], - "db_backups_aggregate": [ + "custom_pages_aggregate": [ 238, { "distinct_on": [ 251, - "[db_backups_select_column!]" + "[custom_pages_select_column!]" ], "limit": [ 38 @@ -154652,23 +158247,23 @@ export default { ], "order_by": [ 249, - "[db_backups_order_by!]" + "[custom_pages_order_by!]" ], "where": [ 241 ] } ], - "db_backups_by_pk": [ + "custom_pages_by_pk": [ 237, { "id": [ - 4762, + 4921, "uuid!" ] } ], - "db_backups_stream": [ + "custom_pages_stream": [ 237, { "batch_size": [ @@ -154677,18 +158272,87 @@ export default { ], "cursor": [ 256, - "[db_backups_stream_cursor_input]!" + "[custom_pages_stream_cursor_input]!" ], "where": [ 241 ] } ], - "draft_game_picks": [ + "db_backups": [ 264, { "distinct_on": [ - 287, + 278, + "[db_backups_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 276, + "[db_backups_order_by!]" + ], + "where": [ + 268 + ] + } + ], + "db_backups_aggregate": [ + 265, + { + "distinct_on": [ + 278, + "[db_backups_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 276, + "[db_backups_order_by!]" + ], + "where": [ + 268 + ] + } + ], + "db_backups_by_pk": [ + 264, + { + "id": [ + 4921, + "uuid!" + ] + } + ], + "db_backups_stream": [ + 264, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 283, + "[db_backups_stream_cursor_input]!" + ], + "where": [ + 268 + ] + } + ], + "draft_game_picks": [ + 291, + { + "distinct_on": [ + 314, "[draft_game_picks_select_column!]" ], "limit": [ @@ -154698,19 +158362,19 @@ export default { 38 ], "order_by": [ - 285, + 312, "[draft_game_picks_order_by!]" ], "where": [ - 275 + 302 ] } ], "draft_game_picks_aggregate": [ - 265, + 292, { "distinct_on": [ - 287, + 314, "[draft_game_picks_select_column!]" ], "limit": [ @@ -154720,44 +158384,44 @@ export default { 38 ], "order_by": [ - 285, + 312, "[draft_game_picks_order_by!]" ], "where": [ - 275 + 302 ] } ], "draft_game_picks_by_pk": [ - 264, + 291, { "id": [ - 4762, + 4921, "uuid!" ] } ], "draft_game_picks_stream": [ - 264, + 291, { "batch_size": [ 38, "Int!" ], "cursor": [ - 297, + 324, "[draft_game_picks_stream_cursor_input]!" ], "where": [ - 275 + 302 ] } ], "draft_game_players": [ - 309, + 336, { "distinct_on": [ - 332, + 359, "[draft_game_players_select_column!]" ], "limit": [ @@ -154767,19 +158431,19 @@ export default { 38 ], "order_by": [ - 330, + 357, "[draft_game_players_order_by!]" ], "where": [ - 320 + 347 ] } ], "draft_game_players_aggregate": [ - 310, + 337, { "distinct_on": [ - 332, + 359, "[draft_game_players_select_column!]" ], "limit": [ @@ -154789,19 +158453,19 @@ export default { 38 ], "order_by": [ - 330, + 357, "[draft_game_players_order_by!]" ], "where": [ - 320 + 347 ] } ], "draft_game_players_by_pk": [ - 309, + 336, { "draft_game_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -154811,26 +158475,26 @@ export default { } ], "draft_game_players_stream": [ - 309, + 336, { "batch_size": [ 38, "Int!" ], "cursor": [ - 342, + 369, "[draft_game_players_stream_cursor_input]!" ], "where": [ - 320 + 347 ] } ], "draft_games": [ - 354, + 381, { "distinct_on": [ - 378, + 405, "[draft_games_select_column!]" ], "limit": [ @@ -154840,19 +158504,19 @@ export default { 38 ], "order_by": [ - 376, + 403, "[draft_games_order_by!]" ], "where": [ - 365 + 392 ] } ], "draft_games_aggregate": [ - 355, + 382, { "distinct_on": [ - 378, + 405, "[draft_games_select_column!]" ], "limit": [ @@ -154862,44 +158526,44 @@ export default { 38 ], "order_by": [ - 376, + 403, "[draft_games_order_by!]" ], "where": [ - 365 + 392 ] } ], "draft_games_by_pk": [ - 354, + 381, { "id": [ - 4762, + 4921, "uuid!" ] } ], "draft_games_stream": [ - 354, + 381, { "batch_size": [ 38, "Int!" ], "cursor": [ - 388, + 415, "[draft_games_stream_cursor_input]!" ], "where": [ - 365 + 392 ] } ], "e_check_in_settings": [ - 400, + 427, { "distinct_on": [ - 414, + 441, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -154909,19 +158573,19 @@ export default { 38 ], "order_by": [ - 412, + 439, "[e_check_in_settings_order_by!]" ], "where": [ - 403 + 430 ] } ], "e_check_in_settings_aggregate": [ - 401, + 428, { "distinct_on": [ - 414, + 441, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -154931,16 +158595,16 @@ export default { 38 ], "order_by": [ - 412, + 439, "[e_check_in_settings_order_by!]" ], "where": [ - 403 + 430 ] } ], "e_check_in_settings_by_pk": [ - 400, + 427, { "value": [ 78, @@ -154949,26 +158613,26 @@ export default { } ], "e_check_in_settings_stream": [ - 400, + 427, { "batch_size": [ 38, "Int!" ], "cursor": [ - 416, + 443, "[e_check_in_settings_stream_cursor_input]!" ], "where": [ - 403 + 430 ] } ], "e_draft_game_captain_selection": [ - 420, + 447, { "distinct_on": [ - 435, + 462, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -154978,19 +158642,19 @@ export default { 38 ], "order_by": [ - 433, + 460, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 423 + 450 ] } ], "e_draft_game_captain_selection_aggregate": [ - 421, + 448, { "distinct_on": [ - 435, + 462, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -155000,16 +158664,16 @@ export default { 38 ], "order_by": [ - 433, + 460, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 423 + 450 ] } ], "e_draft_game_captain_selection_by_pk": [ - 420, + 447, { "value": [ 78, @@ -155018,26 +158682,26 @@ export default { } ], "e_draft_game_captain_selection_stream": [ - 420, + 447, { "batch_size": [ 38, "Int!" ], "cursor": [ - 437, + 464, "[e_draft_game_captain_selection_stream_cursor_input]!" ], "where": [ - 423 + 450 ] } ], "e_draft_game_draft_order": [ - 441, + 468, { "distinct_on": [ - 456, + 483, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -155047,19 +158711,19 @@ export default { 38 ], "order_by": [ - 454, + 481, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 444 + 471 ] } ], "e_draft_game_draft_order_aggregate": [ - 442, + 469, { "distinct_on": [ - 456, + 483, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -155069,16 +158733,16 @@ export default { 38 ], "order_by": [ - 454, + 481, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 444 + 471 ] } ], "e_draft_game_draft_order_by_pk": [ - 441, + 468, { "value": [ 78, @@ -155087,26 +158751,26 @@ export default { } ], "e_draft_game_draft_order_stream": [ - 441, + 468, { "batch_size": [ 38, "Int!" ], "cursor": [ - 458, + 485, "[e_draft_game_draft_order_stream_cursor_input]!" ], "where": [ - 444 + 471 ] } ], "e_draft_game_mode": [ - 462, + 489, { "distinct_on": [ - 477, + 504, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -155116,19 +158780,19 @@ export default { 38 ], "order_by": [ - 475, + 502, "[e_draft_game_mode_order_by!]" ], "where": [ - 465 + 492 ] } ], "e_draft_game_mode_aggregate": [ - 463, + 490, { "distinct_on": [ - 477, + 504, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -155138,16 +158802,16 @@ export default { 38 ], "order_by": [ - 475, + 502, "[e_draft_game_mode_order_by!]" ], "where": [ - 465 + 492 ] } ], "e_draft_game_mode_by_pk": [ - 462, + 489, { "value": [ 78, @@ -155156,26 +158820,26 @@ export default { } ], "e_draft_game_mode_stream": [ - 462, + 489, { "batch_size": [ 38, "Int!" ], "cursor": [ - 479, + 506, "[e_draft_game_mode_stream_cursor_input]!" ], "where": [ - 465 + 492 ] } ], "e_draft_game_player_status": [ - 483, + 510, { "distinct_on": [ - 498, + 525, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -155185,19 +158849,19 @@ export default { 38 ], "order_by": [ - 496, + 523, "[e_draft_game_player_status_order_by!]" ], "where": [ - 486 + 513 ] } ], "e_draft_game_player_status_aggregate": [ - 484, + 511, { "distinct_on": [ - 498, + 525, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -155207,16 +158871,16 @@ export default { 38 ], "order_by": [ - 496, + 523, "[e_draft_game_player_status_order_by!]" ], "where": [ - 486 + 513 ] } ], "e_draft_game_player_status_by_pk": [ - 483, + 510, { "value": [ 78, @@ -155225,26 +158889,26 @@ export default { } ], "e_draft_game_player_status_stream": [ - 483, + 510, { "batch_size": [ 38, "Int!" ], "cursor": [ - 500, + 527, "[e_draft_game_player_status_stream_cursor_input]!" ], "where": [ - 486 + 513 ] } ], "e_draft_game_status": [ - 504, + 531, { "distinct_on": [ - 519, + 546, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -155254,19 +158918,19 @@ export default { 38 ], "order_by": [ - 517, + 544, "[e_draft_game_status_order_by!]" ], "where": [ - 507 + 534 ] } ], "e_draft_game_status_aggregate": [ - 505, + 532, { "distinct_on": [ - 519, + 546, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -155276,16 +158940,16 @@ export default { 38 ], "order_by": [ - 517, + 544, "[e_draft_game_status_order_by!]" ], "where": [ - 507 + 534 ] } ], "e_draft_game_status_by_pk": [ - 504, + 531, { "value": [ 78, @@ -155294,26 +158958,26 @@ export default { } ], "e_draft_game_status_stream": [ - 504, + 531, { "batch_size": [ 38, "Int!" ], "cursor": [ - 521, + 548, "[e_draft_game_status_stream_cursor_input]!" ], "where": [ - 507 + 534 ] } ], "e_event_media_access": [ - 525, + 552, { "distinct_on": [ - 539, + 566, "[e_event_media_access_select_column!]" ], "limit": [ @@ -155323,19 +158987,19 @@ export default { 38 ], "order_by": [ - 537, + 564, "[e_event_media_access_order_by!]" ], "where": [ - 528 + 555 ] } ], "e_event_media_access_aggregate": [ - 526, + 553, { "distinct_on": [ - 539, + 566, "[e_event_media_access_select_column!]" ], "limit": [ @@ -155345,16 +159009,16 @@ export default { 38 ], "order_by": [ - 537, + 564, "[e_event_media_access_order_by!]" ], "where": [ - 528 + 555 ] } ], "e_event_media_access_by_pk": [ - 525, + 552, { "value": [ 78, @@ -155363,26 +159027,26 @@ export default { } ], "e_event_media_access_stream": [ - 525, + 552, { "batch_size": [ 38, "Int!" ], "cursor": [ - 541, + 568, "[e_event_media_access_stream_cursor_input]!" ], "where": [ - 528 + 555 ] } ], "e_event_visibility": [ - 545, + 572, { "distinct_on": [ - 559, + 586, "[e_event_visibility_select_column!]" ], "limit": [ @@ -155392,19 +159056,19 @@ export default { 38 ], "order_by": [ - 557, + 584, "[e_event_visibility_order_by!]" ], "where": [ - 548 + 575 ] } ], "e_event_visibility_aggregate": [ - 546, + 573, { "distinct_on": [ - 559, + 586, "[e_event_visibility_select_column!]" ], "limit": [ @@ -155414,16 +159078,16 @@ export default { 38 ], "order_by": [ - 557, + 584, "[e_event_visibility_order_by!]" ], "where": [ - 548 + 575 ] } ], "e_event_visibility_by_pk": [ - 545, + 572, { "value": [ 78, @@ -155432,26 +159096,26 @@ export default { } ], "e_event_visibility_stream": [ - 545, + 572, { "batch_size": [ 38, "Int!" ], "cursor": [ - 561, + 588, "[e_event_visibility_stream_cursor_input]!" ], "where": [ - 548 + 575 ] } ], "e_friend_status": [ - 565, + 592, { "distinct_on": [ - 580, + 607, "[e_friend_status_select_column!]" ], "limit": [ @@ -155461,19 +159125,19 @@ export default { 38 ], "order_by": [ - 578, + 605, "[e_friend_status_order_by!]" ], "where": [ - 568 + 595 ] } ], "e_friend_status_aggregate": [ - 566, + 593, { "distinct_on": [ - 580, + 607, "[e_friend_status_select_column!]" ], "limit": [ @@ -155483,16 +159147,16 @@ export default { 38 ], "order_by": [ - 578, + 605, "[e_friend_status_order_by!]" ], "where": [ - 568 + 595 ] } ], "e_friend_status_by_pk": [ - 565, + 592, { "value": [ 78, @@ -155501,26 +159165,26 @@ export default { } ], "e_friend_status_stream": [ - 565, + 592, { "batch_size": [ 38, "Int!" ], "cursor": [ - 582, + 609, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 568 + 595 ] } ], "e_game_cfg_types": [ - 586, + 613, { "distinct_on": [ - 600, + 627, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -155530,19 +159194,19 @@ export default { 38 ], "order_by": [ - 598, + 625, "[e_game_cfg_types_order_by!]" ], "where": [ - 589 + 616 ] } ], "e_game_cfg_types_aggregate": [ - 587, + 614, { "distinct_on": [ - 600, + 627, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -155552,16 +159216,16 @@ export default { 38 ], "order_by": [ - 598, + 625, "[e_game_cfg_types_order_by!]" ], "where": [ - 589 + 616 ] } ], "e_game_cfg_types_by_pk": [ - 586, + 613, { "value": [ 78, @@ -155570,26 +159234,26 @@ export default { } ], "e_game_cfg_types_stream": [ - 586, + 613, { "batch_size": [ 38, "Int!" ], "cursor": [ - 602, + 629, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 589 + 616 ] } ], "e_game_server_node_statuses": [ - 606, + 633, { "distinct_on": [ - 621, + 648, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -155599,19 +159263,19 @@ export default { 38 ], "order_by": [ - 619, + 646, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 609 + 636 ] } ], "e_game_server_node_statuses_aggregate": [ - 607, + 634, { "distinct_on": [ - 621, + 648, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -155621,16 +159285,16 @@ export default { 38 ], "order_by": [ - 619, + 646, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 609 + 636 ] } ], "e_game_server_node_statuses_by_pk": [ - 606, + 633, { "value": [ 78, @@ -155639,26 +159303,26 @@ export default { } ], "e_game_server_node_statuses_stream": [ - 606, + 633, { "batch_size": [ 38, "Int!" ], "cursor": [ - 623, + 650, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 609 + 636 ] } ], "e_league_movement_types": [ - 627, + 654, { "distinct_on": [ - 642, + 669, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -155668,19 +159332,19 @@ export default { 38 ], "order_by": [ - 640, + 667, "[e_league_movement_types_order_by!]" ], "where": [ - 630 + 657 ] } ], "e_league_movement_types_aggregate": [ - 628, + 655, { "distinct_on": [ - 642, + 669, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -155690,16 +159354,16 @@ export default { 38 ], "order_by": [ - 640, + 667, "[e_league_movement_types_order_by!]" ], "where": [ - 630 + 657 ] } ], "e_league_movement_types_by_pk": [ - 627, + 654, { "value": [ 78, @@ -155708,26 +159372,26 @@ export default { } ], "e_league_movement_types_stream": [ - 627, + 654, { "batch_size": [ 38, "Int!" ], "cursor": [ - 644, + 671, "[e_league_movement_types_stream_cursor_input]!" ], "where": [ - 630 + 657 ] } ], "e_league_proposal_statuses": [ - 648, + 675, { "distinct_on": [ - 663, + 690, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -155737,19 +159401,19 @@ export default { 38 ], "order_by": [ - 661, + 688, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 651 + 678 ] } ], "e_league_proposal_statuses_aggregate": [ - 649, + 676, { "distinct_on": [ - 663, + 690, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -155759,16 +159423,16 @@ export default { 38 ], "order_by": [ - 661, + 688, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 651 + 678 ] } ], "e_league_proposal_statuses_by_pk": [ - 648, + 675, { "value": [ 78, @@ -155777,26 +159441,26 @@ export default { } ], "e_league_proposal_statuses_stream": [ - 648, + 675, { "batch_size": [ 38, "Int!" ], "cursor": [ - 665, + 692, "[e_league_proposal_statuses_stream_cursor_input]!" ], "where": [ - 651 + 678 ] } ], "e_league_registration_statuses": [ - 669, + 696, { "distinct_on": [ - 684, + 711, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -155806,19 +159470,19 @@ export default { 38 ], "order_by": [ - 682, + 709, "[e_league_registration_statuses_order_by!]" ], "where": [ - 672 + 699 ] } ], "e_league_registration_statuses_aggregate": [ - 670, + 697, { "distinct_on": [ - 684, + 711, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -155828,16 +159492,16 @@ export default { 38 ], "order_by": [ - 682, + 709, "[e_league_registration_statuses_order_by!]" ], "where": [ - 672 + 699 ] } ], "e_league_registration_statuses_by_pk": [ - 669, + 696, { "value": [ 78, @@ -155846,26 +159510,26 @@ export default { } ], "e_league_registration_statuses_stream": [ - 669, + 696, { "batch_size": [ 38, "Int!" ], "cursor": [ - 686, + 713, "[e_league_registration_statuses_stream_cursor_input]!" ], "where": [ - 672 + 699 ] } ], "e_league_season_statuses": [ - 690, + 717, { "distinct_on": [ - 705, + 732, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -155875,19 +159539,19 @@ export default { 38 ], "order_by": [ - 703, + 730, "[e_league_season_statuses_order_by!]" ], "where": [ - 693 + 720 ] } ], "e_league_season_statuses_aggregate": [ - 691, + 718, { "distinct_on": [ - 705, + 732, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -155897,16 +159561,16 @@ export default { 38 ], "order_by": [ - 703, + 730, "[e_league_season_statuses_order_by!]" ], "where": [ - 693 + 720 ] } ], "e_league_season_statuses_by_pk": [ - 690, + 717, { "value": [ 78, @@ -155915,26 +159579,26 @@ export default { } ], "e_league_season_statuses_stream": [ - 690, + 717, { "batch_size": [ 38, "Int!" ], "cursor": [ - 707, + 734, "[e_league_season_statuses_stream_cursor_input]!" ], "where": [ - 693 + 720 ] } ], "e_lobby_access": [ - 711, + 738, { "distinct_on": [ - 726, + 753, "[e_lobby_access_select_column!]" ], "limit": [ @@ -155944,19 +159608,19 @@ export default { 38 ], "order_by": [ - 724, + 751, "[e_lobby_access_order_by!]" ], "where": [ - 714 + 741 ] } ], "e_lobby_access_aggregate": [ - 712, + 739, { "distinct_on": [ - 726, + 753, "[e_lobby_access_select_column!]" ], "limit": [ @@ -155966,16 +159630,16 @@ export default { 38 ], "order_by": [ - 724, + 751, "[e_lobby_access_order_by!]" ], "where": [ - 714 + 741 ] } ], "e_lobby_access_by_pk": [ - 711, + 738, { "value": [ 78, @@ -155984,26 +159648,26 @@ export default { } ], "e_lobby_access_stream": [ - 711, + 738, { "batch_size": [ 38, "Int!" ], "cursor": [ - 728, + 755, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 714 + 741 ] } ], "e_lobby_player_status": [ - 732, + 759, { "distinct_on": [ - 746, + 773, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -156013,19 +159677,19 @@ export default { 38 ], "order_by": [ - 744, + 771, "[e_lobby_player_status_order_by!]" ], "where": [ - 735 + 762 ] } ], "e_lobby_player_status_aggregate": [ - 733, + 760, { "distinct_on": [ - 746, + 773, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -156035,16 +159699,16 @@ export default { 38 ], "order_by": [ - 744, + 771, "[e_lobby_player_status_order_by!]" ], "where": [ - 735 + 762 ] } ], "e_lobby_player_status_by_pk": [ - 732, + 759, { "value": [ 78, @@ -156053,26 +159717,26 @@ export default { } ], "e_lobby_player_status_stream": [ - 732, + 759, { "batch_size": [ 38, "Int!" ], "cursor": [ - 748, + 775, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 735 + 762 ] } ], "e_map_pool_types": [ - 752, + 779, { "distinct_on": [ - 767, + 794, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -156082,19 +159746,19 @@ export default { 38 ], "order_by": [ - 765, + 792, "[e_map_pool_types_order_by!]" ], "where": [ - 755 + 782 ] } ], "e_map_pool_types_aggregate": [ - 753, + 780, { "distinct_on": [ - 767, + 794, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -156104,16 +159768,16 @@ export default { 38 ], "order_by": [ - 765, + 792, "[e_map_pool_types_order_by!]" ], "where": [ - 755 + 782 ] } ], "e_map_pool_types_by_pk": [ - 752, + 779, { "value": [ 78, @@ -156122,26 +159786,26 @@ export default { } ], "e_map_pool_types_stream": [ - 752, + 779, { "batch_size": [ 38, "Int!" ], "cursor": [ - 769, + 796, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 755 + 782 ] } ], "e_match_clip_visibility": [ - 773, + 800, { "distinct_on": [ - 787, + 814, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -156151,19 +159815,19 @@ export default { 38 ], "order_by": [ - 785, + 812, "[e_match_clip_visibility_order_by!]" ], "where": [ - 776 + 803 ] } ], "e_match_clip_visibility_aggregate": [ - 774, + 801, { "distinct_on": [ - 787, + 814, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -156173,16 +159837,16 @@ export default { 38 ], "order_by": [ - 785, + 812, "[e_match_clip_visibility_order_by!]" ], "where": [ - 776 + 803 ] } ], "e_match_clip_visibility_by_pk": [ - 773, + 800, { "value": [ 78, @@ -156191,26 +159855,26 @@ export default { } ], "e_match_clip_visibility_stream": [ - 773, + 800, { "batch_size": [ 38, "Int!" ], "cursor": [ - 789, + 816, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 776 + 803 ] } ], "e_match_map_status": [ - 793, + 820, { "distinct_on": [ - 808, + 835, "[e_match_map_status_select_column!]" ], "limit": [ @@ -156220,19 +159884,19 @@ export default { 38 ], "order_by": [ - 806, + 833, "[e_match_map_status_order_by!]" ], "where": [ - 796 + 823 ] } ], "e_match_map_status_aggregate": [ - 794, + 821, { "distinct_on": [ - 808, + 835, "[e_match_map_status_select_column!]" ], "limit": [ @@ -156242,16 +159906,16 @@ export default { 38 ], "order_by": [ - 806, + 833, "[e_match_map_status_order_by!]" ], "where": [ - 796 + 823 ] } ], "e_match_map_status_by_pk": [ - 793, + 820, { "value": [ 78, @@ -156260,26 +159924,26 @@ export default { } ], "e_match_map_status_stream": [ - 793, + 820, { "batch_size": [ 38, "Int!" ], "cursor": [ - 810, + 837, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 796 + 823 ] } ], "e_match_mode": [ - 814, + 841, { "distinct_on": [ - 828, + 855, "[e_match_mode_select_column!]" ], "limit": [ @@ -156289,19 +159953,19 @@ export default { 38 ], "order_by": [ - 826, + 853, "[e_match_mode_order_by!]" ], "where": [ - 817 + 844 ] } ], "e_match_mode_aggregate": [ - 815, + 842, { "distinct_on": [ - 828, + 855, "[e_match_mode_select_column!]" ], "limit": [ @@ -156311,16 +159975,16 @@ export default { 38 ], "order_by": [ - 826, + 853, "[e_match_mode_order_by!]" ], "where": [ - 817 + 844 ] } ], "e_match_mode_by_pk": [ - 814, + 841, { "value": [ 78, @@ -156329,26 +159993,26 @@ export default { } ], "e_match_mode_stream": [ - 814, + 841, { "batch_size": [ 38, "Int!" ], "cursor": [ - 830, + 857, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 817 + 844 ] } ], "e_match_status": [ - 834, + 861, { "distinct_on": [ - 849, + 876, "[e_match_status_select_column!]" ], "limit": [ @@ -156358,19 +160022,19 @@ export default { 38 ], "order_by": [ - 847, + 874, "[e_match_status_order_by!]" ], "where": [ - 837 + 864 ] } ], "e_match_status_aggregate": [ - 835, + 862, { "distinct_on": [ - 849, + 876, "[e_match_status_select_column!]" ], "limit": [ @@ -156380,16 +160044,16 @@ export default { 38 ], "order_by": [ - 847, + 874, "[e_match_status_order_by!]" ], "where": [ - 837 + 864 ] } ], "e_match_status_by_pk": [ - 834, + 861, { "value": [ 78, @@ -156398,26 +160062,26 @@ export default { } ], "e_match_status_stream": [ - 834, + 861, { "batch_size": [ 38, "Int!" ], "cursor": [ - 851, + 878, "[e_match_status_stream_cursor_input]!" ], "where": [ - 837 + 864 ] } ], "e_match_types": [ - 855, + 882, { "distinct_on": [ - 870, + 897, "[e_match_types_select_column!]" ], "limit": [ @@ -156427,19 +160091,19 @@ export default { 38 ], "order_by": [ - 868, + 895, "[e_match_types_order_by!]" ], "where": [ - 858 + 885 ] } ], "e_match_types_aggregate": [ - 856, + 883, { "distinct_on": [ - 870, + 897, "[e_match_types_select_column!]" ], "limit": [ @@ -156449,16 +160113,16 @@ export default { 38 ], "order_by": [ - 868, + 895, "[e_match_types_order_by!]" ], "where": [ - 858 + 885 ] } ], "e_match_types_by_pk": [ - 855, + 882, { "value": [ 78, @@ -156467,26 +160131,26 @@ export default { } ], "e_match_types_stream": [ - 855, + 882, { "batch_size": [ 38, "Int!" ], "cursor": [ - 872, + 899, "[e_match_types_stream_cursor_input]!" ], "where": [ - 858 + 885 ] } ], "e_notification_types": [ - 876, + 903, { "distinct_on": [ - 890, + 917, "[e_notification_types_select_column!]" ], "limit": [ @@ -156496,19 +160160,19 @@ export default { 38 ], "order_by": [ - 888, + 915, "[e_notification_types_order_by!]" ], "where": [ - 879 + 906 ] } ], "e_notification_types_aggregate": [ - 877, + 904, { "distinct_on": [ - 890, + 917, "[e_notification_types_select_column!]" ], "limit": [ @@ -156518,16 +160182,16 @@ export default { 38 ], "order_by": [ - 888, + 915, "[e_notification_types_order_by!]" ], "where": [ - 879 + 906 ] } ], "e_notification_types_by_pk": [ - 876, + 903, { "value": [ 78, @@ -156536,26 +160200,26 @@ export default { } ], "e_notification_types_stream": [ - 876, + 903, { "batch_size": [ 38, "Int!" ], "cursor": [ - 892, + 919, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 879 + 906 ] } ], "e_objective_types": [ - 896, + 923, { "distinct_on": [ - 910, + 937, "[e_objective_types_select_column!]" ], "limit": [ @@ -156565,19 +160229,19 @@ export default { 38 ], "order_by": [ - 908, + 935, "[e_objective_types_order_by!]" ], "where": [ - 899 + 926 ] } ], "e_objective_types_aggregate": [ - 897, + 924, { "distinct_on": [ - 910, + 937, "[e_objective_types_select_column!]" ], "limit": [ @@ -156587,16 +160251,16 @@ export default { 38 ], "order_by": [ - 908, + 935, "[e_objective_types_order_by!]" ], "where": [ - 899 + 926 ] } ], "e_objective_types_by_pk": [ - 896, + 923, { "value": [ 78, @@ -156605,26 +160269,26 @@ export default { } ], "e_objective_types_stream": [ - 896, + 923, { "batch_size": [ 38, "Int!" ], "cursor": [ - 912, + 939, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 899 + 926 ] } ], "e_player_roles": [ - 916, + 943, { "distinct_on": [ - 930, + 957, "[e_player_roles_select_column!]" ], "limit": [ @@ -156634,19 +160298,19 @@ export default { 38 ], "order_by": [ - 928, + 955, "[e_player_roles_order_by!]" ], "where": [ - 919 + 946 ] } ], "e_player_roles_aggregate": [ - 917, + 944, { "distinct_on": [ - 930, + 957, "[e_player_roles_select_column!]" ], "limit": [ @@ -156656,16 +160320,16 @@ export default { 38 ], "order_by": [ - 928, + 955, "[e_player_roles_order_by!]" ], "where": [ - 919 + 946 ] } ], "e_player_roles_by_pk": [ - 916, + 943, { "value": [ 78, @@ -156674,26 +160338,26 @@ export default { } ], "e_player_roles_stream": [ - 916, + 943, { "batch_size": [ 38, "Int!" ], "cursor": [ - 932, + 959, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 919 + 946 ] } ], "e_plugin_runtimes": [ - 936, + 963, { "distinct_on": [ - 950, + 977, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -156703,19 +160367,19 @@ export default { 38 ], "order_by": [ - 948, + 975, "[e_plugin_runtimes_order_by!]" ], "where": [ - 939 + 966 ] } ], "e_plugin_runtimes_aggregate": [ - 937, + 964, { "distinct_on": [ - 950, + 977, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -156725,16 +160389,16 @@ export default { 38 ], "order_by": [ - 948, + 975, "[e_plugin_runtimes_order_by!]" ], "where": [ - 939 + 966 ] } ], "e_plugin_runtimes_by_pk": [ - 936, + 963, { "value": [ 78, @@ -156743,26 +160407,26 @@ export default { } ], "e_plugin_runtimes_stream": [ - 936, + 963, { "batch_size": [ 38, "Int!" ], "cursor": [ - 952, + 979, "[e_plugin_runtimes_stream_cursor_input]!" ], "where": [ - 939 + 966 ] } ], "e_ready_settings": [ - 956, + 983, { "distinct_on": [ - 970, + 997, "[e_ready_settings_select_column!]" ], "limit": [ @@ -156772,19 +160436,19 @@ export default { 38 ], "order_by": [ - 968, + 995, "[e_ready_settings_order_by!]" ], "where": [ - 959 + 986 ] } ], "e_ready_settings_aggregate": [ - 957, + 984, { "distinct_on": [ - 970, + 997, "[e_ready_settings_select_column!]" ], "limit": [ @@ -156794,16 +160458,16 @@ export default { 38 ], "order_by": [ - 968, + 995, "[e_ready_settings_order_by!]" ], "where": [ - 959 + 986 ] } ], "e_ready_settings_by_pk": [ - 956, + 983, { "value": [ 78, @@ -156812,26 +160476,26 @@ export default { } ], "e_ready_settings_stream": [ - 956, + 983, { "batch_size": [ 38, "Int!" ], "cursor": [ - 972, + 999, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 959 + 986 ] } ], "e_sanction_types": [ - 976, + 1003, { "distinct_on": [ - 991, + 1018, "[e_sanction_types_select_column!]" ], "limit": [ @@ -156841,19 +160505,19 @@ export default { 38 ], "order_by": [ - 989, + 1016, "[e_sanction_types_order_by!]" ], "where": [ - 979 + 1006 ] } ], "e_sanction_types_aggregate": [ - 977, + 1004, { "distinct_on": [ - 991, + 1018, "[e_sanction_types_select_column!]" ], "limit": [ @@ -156863,16 +160527,16 @@ export default { 38 ], "order_by": [ - 989, + 1016, "[e_sanction_types_order_by!]" ], "where": [ - 979 + 1006 ] } ], "e_sanction_types_by_pk": [ - 976, + 1003, { "value": [ 78, @@ -156881,26 +160545,26 @@ export default { } ], "e_sanction_types_stream": [ - 976, + 1003, { "batch_size": [ 38, "Int!" ], "cursor": [ - 993, + 1020, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 979 + 1006 ] } ], "e_scrim_request_statuses": [ - 997, + 1024, { "distinct_on": [ - 1011, + 1038, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -156910,19 +160574,19 @@ export default { 38 ], "order_by": [ - 1009, + 1036, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1000 + 1027 ] } ], "e_scrim_request_statuses_aggregate": [ - 998, + 1025, { "distinct_on": [ - 1011, + 1038, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -156932,16 +160596,16 @@ export default { 38 ], "order_by": [ - 1009, + 1036, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1000 + 1027 ] } ], "e_scrim_request_statuses_by_pk": [ - 997, + 1024, { "value": [ 78, @@ -156950,26 +160614,26 @@ export default { } ], "e_scrim_request_statuses_stream": [ - 997, + 1024, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1013, + 1040, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 1000 + 1027 ] } ], "e_server_types": [ - 1017, + 1044, { "distinct_on": [ - 1031, + 1058, "[e_server_types_select_column!]" ], "limit": [ @@ -156979,19 +160643,19 @@ export default { 38 ], "order_by": [ - 1029, + 1056, "[e_server_types_order_by!]" ], "where": [ - 1020 + 1047 ] } ], "e_server_types_aggregate": [ - 1018, + 1045, { "distinct_on": [ - 1031, + 1058, "[e_server_types_select_column!]" ], "limit": [ @@ -157001,16 +160665,16 @@ export default { 38 ], "order_by": [ - 1029, + 1056, "[e_server_types_order_by!]" ], "where": [ - 1020 + 1047 ] } ], "e_server_types_by_pk": [ - 1017, + 1044, { "value": [ 78, @@ -157019,26 +160683,26 @@ export default { } ], "e_server_types_stream": [ - 1017, + 1044, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1033, + 1060, "[e_server_types_stream_cursor_input]!" ], "where": [ - 1020 + 1047 ] } ], "e_sides": [ - 1037, + 1064, { "distinct_on": [ - 1051, + 1078, "[e_sides_select_column!]" ], "limit": [ @@ -157048,19 +160712,19 @@ export default { 38 ], "order_by": [ - 1049, + 1076, "[e_sides_order_by!]" ], "where": [ - 1040 + 1067 ] } ], "e_sides_aggregate": [ - 1038, + 1065, { "distinct_on": [ - 1051, + 1078, "[e_sides_select_column!]" ], "limit": [ @@ -157070,16 +160734,16 @@ export default { 38 ], "order_by": [ - 1049, + 1076, "[e_sides_order_by!]" ], "where": [ - 1040 + 1067 ] } ], "e_sides_by_pk": [ - 1037, + 1064, { "value": [ 78, @@ -157088,26 +160752,26 @@ export default { } ], "e_sides_stream": [ - 1037, + 1064, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1053, + 1080, "[e_sides_stream_cursor_input]!" ], "where": [ - 1040 + 1067 ] } ], "e_system_alert_types": [ - 1057, + 1084, { "distinct_on": [ - 1071, + 1098, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -157117,19 +160781,19 @@ export default { 38 ], "order_by": [ - 1069, + 1096, "[e_system_alert_types_order_by!]" ], "where": [ - 1060 + 1087 ] } ], "e_system_alert_types_aggregate": [ - 1058, + 1085, { "distinct_on": [ - 1071, + 1098, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -157139,16 +160803,16 @@ export default { 38 ], "order_by": [ - 1069, + 1096, "[e_system_alert_types_order_by!]" ], "where": [ - 1060 + 1087 ] } ], "e_system_alert_types_by_pk": [ - 1057, + 1084, { "value": [ 78, @@ -157157,26 +160821,26 @@ export default { } ], "e_system_alert_types_stream": [ - 1057, + 1084, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1073, + 1100, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 1060 + 1087 ] } ], "e_team_roles": [ - 1077, + 1104, { "distinct_on": [ - 1092, + 1119, "[e_team_roles_select_column!]" ], "limit": [ @@ -157186,19 +160850,19 @@ export default { 38 ], "order_by": [ - 1090, + 1117, "[e_team_roles_order_by!]" ], "where": [ - 1080 + 1107 ] } ], "e_team_roles_aggregate": [ - 1078, + 1105, { "distinct_on": [ - 1092, + 1119, "[e_team_roles_select_column!]" ], "limit": [ @@ -157208,16 +160872,16 @@ export default { 38 ], "order_by": [ - 1090, + 1117, "[e_team_roles_order_by!]" ], "where": [ - 1080 + 1107 ] } ], "e_team_roles_by_pk": [ - 1077, + 1104, { "value": [ 78, @@ -157226,26 +160890,26 @@ export default { } ], "e_team_roles_stream": [ - 1077, + 1104, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1094, + 1121, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 1080 + 1107 ] } ], "e_team_roster_statuses": [ - 1098, + 1125, { "distinct_on": [ - 1112, + 1139, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -157255,19 +160919,19 @@ export default { 38 ], "order_by": [ - 1110, + 1137, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1101 + 1128 ] } ], "e_team_roster_statuses_aggregate": [ - 1099, + 1126, { "distinct_on": [ - 1112, + 1139, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -157277,16 +160941,16 @@ export default { 38 ], "order_by": [ - 1110, + 1137, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1101 + 1128 ] } ], "e_team_roster_statuses_by_pk": [ - 1098, + 1125, { "value": [ 78, @@ -157295,26 +160959,26 @@ export default { } ], "e_team_roster_statuses_stream": [ - 1098, + 1125, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1114, + 1141, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 1101 + 1128 ] } ], "e_timeout_settings": [ - 1118, + 1145, { "distinct_on": [ - 1132, + 1159, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -157324,19 +160988,19 @@ export default { 38 ], "order_by": [ - 1130, + 1157, "[e_timeout_settings_order_by!]" ], "where": [ - 1121 + 1148 ] } ], "e_timeout_settings_aggregate": [ - 1119, + 1146, { "distinct_on": [ - 1132, + 1159, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -157346,16 +161010,16 @@ export default { 38 ], "order_by": [ - 1130, + 1157, "[e_timeout_settings_order_by!]" ], "where": [ - 1121 + 1148 ] } ], "e_timeout_settings_by_pk": [ - 1118, + 1145, { "value": [ 78, @@ -157364,26 +161028,95 @@ export default { } ], "e_timeout_settings_stream": [ - 1118, + 1145, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1134, + 1161, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 1121 + 1148 + ] + } + ], + "e_tournament_categories": [ + 1165, + { + "distinct_on": [ + 1180, + "[e_tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1178, + "[e_tournament_categories_order_by!]" + ], + "where": [ + 1168 + ] + } + ], + "e_tournament_categories_aggregate": [ + 1166, + { + "distinct_on": [ + 1180, + "[e_tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1178, + "[e_tournament_categories_order_by!]" + ], + "where": [ + 1168 + ] + } + ], + "e_tournament_categories_by_pk": [ + 1165, + { + "value": [ + 78, + "String!" + ] + } + ], + "e_tournament_categories_stream": [ + 1165, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 1182, + "[e_tournament_categories_stream_cursor_input]!" + ], + "where": [ + 1168 ] } ], "e_tournament_stage_types": [ - 1138, + 1186, { "distinct_on": [ - 1153, + 1201, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -157393,19 +161126,19 @@ export default { 38 ], "order_by": [ - 1151, + 1199, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1141 + 1189 ] } ], "e_tournament_stage_types_aggregate": [ - 1139, + 1187, { "distinct_on": [ - 1153, + 1201, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -157415,16 +161148,16 @@ export default { 38 ], "order_by": [ - 1151, + 1199, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1141 + 1189 ] } ], "e_tournament_stage_types_by_pk": [ - 1138, + 1186, { "value": [ 78, @@ -157433,26 +161166,26 @@ export default { } ], "e_tournament_stage_types_stream": [ - 1138, + 1186, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1155, + 1203, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 1141 + 1189 ] } ], "e_tournament_status": [ - 1159, + 1207, { "distinct_on": [ - 1174, + 1222, "[e_tournament_status_select_column!]" ], "limit": [ @@ -157462,19 +161195,19 @@ export default { 38 ], "order_by": [ - 1172, + 1220, "[e_tournament_status_order_by!]" ], "where": [ - 1162 + 1210 ] } ], "e_tournament_status_aggregate": [ - 1160, + 1208, { "distinct_on": [ - 1174, + 1222, "[e_tournament_status_select_column!]" ], "limit": [ @@ -157484,16 +161217,16 @@ export default { 38 ], "order_by": [ - 1172, + 1220, "[e_tournament_status_order_by!]" ], "where": [ - 1162 + 1210 ] } ], "e_tournament_status_by_pk": [ - 1159, + 1207, { "value": [ 78, @@ -157502,26 +161235,26 @@ export default { } ], "e_tournament_status_stream": [ - 1159, + 1207, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1176, + 1224, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1162 + 1210 ] } ], "e_utility_types": [ - 1180, + 1228, { "distinct_on": [ - 1194, + 1242, "[e_utility_types_select_column!]" ], "limit": [ @@ -157531,19 +161264,19 @@ export default { 38 ], "order_by": [ - 1192, + 1240, "[e_utility_types_order_by!]" ], "where": [ - 1183 + 1231 ] } ], "e_utility_types_aggregate": [ - 1181, + 1229, { "distinct_on": [ - 1194, + 1242, "[e_utility_types_select_column!]" ], "limit": [ @@ -157553,16 +161286,16 @@ export default { 38 ], "order_by": [ - 1192, + 1240, "[e_utility_types_order_by!]" ], "where": [ - 1183 + 1231 ] } ], "e_utility_types_by_pk": [ - 1180, + 1228, { "value": [ 78, @@ -157571,26 +161304,26 @@ export default { } ], "e_utility_types_stream": [ - 1180, + 1228, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1196, + 1244, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1183 + 1231 ] } ], "e_veto_pick_types": [ - 1200, + 1248, { "distinct_on": [ - 1214, + 1262, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -157600,19 +161333,19 @@ export default { 38 ], "order_by": [ - 1212, + 1260, "[e_veto_pick_types_order_by!]" ], "where": [ - 1203 + 1251 ] } ], "e_veto_pick_types_aggregate": [ - 1201, + 1249, { "distinct_on": [ - 1214, + 1262, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -157622,16 +161355,16 @@ export default { 38 ], "order_by": [ - 1212, + 1260, "[e_veto_pick_types_order_by!]" ], "where": [ - 1203 + 1251 ] } ], "e_veto_pick_types_by_pk": [ - 1200, + 1248, { "value": [ 78, @@ -157640,26 +161373,26 @@ export default { } ], "e_veto_pick_types_stream": [ - 1200, + 1248, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1216, + 1264, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1203 + 1251 ] } ], "e_winning_reasons": [ - 1220, + 1268, { "distinct_on": [ - 1234, + 1282, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -157669,19 +161402,19 @@ export default { 38 ], "order_by": [ - 1232, + 1280, "[e_winning_reasons_order_by!]" ], "where": [ - 1223 + 1271 ] } ], "e_winning_reasons_aggregate": [ - 1221, + 1269, { "distinct_on": [ - 1234, + 1282, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -157691,16 +161424,16 @@ export default { 38 ], "order_by": [ - 1232, + 1280, "[e_winning_reasons_order_by!]" ], "where": [ - 1223 + 1271 ] } ], "e_winning_reasons_by_pk": [ - 1220, + 1268, { "value": [ 78, @@ -157709,26 +161442,26 @@ export default { } ], "e_winning_reasons_stream": [ - 1220, + 1268, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1236, + 1284, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1223 + 1271 ] } ], "event_match_links": [ - 1240, + 1288, { "distinct_on": [ - 1252, + 1300, "[event_match_links_select_column!]" ], "limit": [ @@ -157738,19 +161471,19 @@ export default { 38 ], "order_by": [ - 1250, + 1298, "[event_match_links_order_by!]" ], "where": [ - 1243 + 1291 ] } ], "event_match_links_aggregate": [ - 1241, + 1289, { "distinct_on": [ - 1252, + 1300, "[event_match_links_select_column!]" ], "limit": [ @@ -157760,48 +161493,48 @@ export default { 38 ], "order_by": [ - 1250, + 1298, "[event_match_links_order_by!]" ], "where": [ - 1243 + 1291 ] } ], "event_match_links_by_pk": [ - 1240, + 1288, { "event_id": [ - 4762, + 4921, "uuid!" ], "match_id": [ - 4762, + 4921, "uuid!" ] } ], "event_match_links_stream": [ - 1240, + 1288, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1254, + 1302, "[event_match_links_stream_cursor_input]!" ], "where": [ - 1243 + 1291 ] } ], "event_media": [ - 1258, + 1306, { "distinct_on": [ - 1321, + 1369, "[event_media_select_column!]" ], "limit": [ @@ -157811,19 +161544,19 @@ export default { 38 ], "order_by": [ - 1278, + 1326, "[event_media_order_by!]" ], "where": [ - 1267 + 1315 ] } ], "event_media_aggregate": [ - 1259, + 1307, { "distinct_on": [ - 1321, + 1369, "[event_media_select_column!]" ], "limit": [ @@ -157833,28 +161566,28 @@ export default { 38 ], "order_by": [ - 1278, + 1326, "[event_media_order_by!]" ], "where": [ - 1267 + 1315 ] } ], "event_media_by_pk": [ - 1258, + 1306, { "id": [ - 4762, + 4921, "uuid!" ] } ], "event_media_players": [ - 1280, + 1328, { "distinct_on": [ - 1301, + 1349, "[event_media_players_select_column!]" ], "limit": [ @@ -157864,19 +161597,19 @@ export default { 38 ], "order_by": [ - 1299, + 1347, "[event_media_players_order_by!]" ], "where": [ - 1289 + 1337 ] } ], "event_media_players_aggregate": [ - 1281, + 1329, { "distinct_on": [ - 1301, + 1349, "[event_media_players_select_column!]" ], "limit": [ @@ -157886,19 +161619,19 @@ export default { 38 ], "order_by": [ - 1299, + 1347, "[event_media_players_order_by!]" ], "where": [ - 1289 + 1337 ] } ], "event_media_players_by_pk": [ - 1280, + 1328, { "media_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -157908,42 +161641,42 @@ export default { } ], "event_media_players_stream": [ - 1280, + 1328, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1309, + 1357, "[event_media_players_stream_cursor_input]!" ], "where": [ - 1289 + 1337 ] } ], "event_media_stream": [ - 1258, + 1306, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1329, + 1377, "[event_media_stream_cursor_input]!" ], "where": [ - 1267 + 1315 ] } ], "event_organizers": [ - 1341, + 1389, { "distinct_on": [ - 1362, + 1410, "[event_organizers_select_column!]" ], "limit": [ @@ -157953,19 +161686,19 @@ export default { 38 ], "order_by": [ - 1360, + 1408, "[event_organizers_order_by!]" ], "where": [ - 1350 + 1398 ] } ], "event_organizers_aggregate": [ - 1342, + 1390, { "distinct_on": [ - 1362, + 1410, "[event_organizers_select_column!]" ], "limit": [ @@ -157975,19 +161708,19 @@ export default { 38 ], "order_by": [ - 1360, + 1408, "[event_organizers_order_by!]" ], "where": [ - 1350 + 1398 ] } ], "event_organizers_by_pk": [ - 1341, + 1389, { "event_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -157997,26 +161730,26 @@ export default { } ], "event_organizers_stream": [ - 1341, + 1389, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1370, + 1418, "[event_organizers_stream_cursor_input]!" ], "where": [ - 1350 + 1398 ] } ], "event_players": [ - 1382, + 1430, { "distinct_on": [ - 1403, + 1451, "[event_players_select_column!]" ], "limit": [ @@ -158026,19 +161759,19 @@ export default { 38 ], "order_by": [ - 1401, + 1449, "[event_players_order_by!]" ], "where": [ - 1391 + 1439 ] } ], "event_players_aggregate": [ - 1383, + 1431, { "distinct_on": [ - 1403, + 1451, "[event_players_select_column!]" ], "limit": [ @@ -158048,19 +161781,19 @@ export default { 38 ], "order_by": [ - 1401, + 1449, "[event_players_order_by!]" ], "where": [ - 1391 + 1439 ] } ], "event_players_by_pk": [ - 1382, + 1430, { "event_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -158070,26 +161803,26 @@ export default { } ], "event_players_stream": [ - 1382, + 1430, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1411, + 1459, "[event_players_stream_cursor_input]!" ], "where": [ - 1391 + 1439 ] } ], "event_teams": [ - 1423, + 1471, { "distinct_on": [ - 1441, + 1489, "[event_teams_select_column!]" ], "limit": [ @@ -158099,19 +161832,19 @@ export default { 38 ], "order_by": [ - 1439, + 1487, "[event_teams_order_by!]" ], "where": [ - 1430 + 1478 ] } ], "event_teams_aggregate": [ - 1424, + 1472, { "distinct_on": [ - 1441, + 1489, "[event_teams_select_column!]" ], "limit": [ @@ -158121,48 +161854,48 @@ export default { 38 ], "order_by": [ - 1439, + 1487, "[event_teams_order_by!]" ], "where": [ - 1430 + 1478 ] } ], "event_teams_by_pk": [ - 1423, + 1471, { "event_id": [ - 4762, + 4921, "uuid!" ], "team_id": [ - 4762, + 4921, "uuid!" ] } ], "event_teams_stream": [ - 1423, + 1471, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1443, + 1491, "[event_teams_stream_cursor_input]!" ], "where": [ - 1430 + 1478 ] } ], "event_tournaments": [ - 1447, + 1495, { "distinct_on": [ - 1465, + 1513, "[event_tournaments_select_column!]" ], "limit": [ @@ -158172,19 +161905,19 @@ export default { 38 ], "order_by": [ - 1463, + 1511, "[event_tournaments_order_by!]" ], "where": [ - 1454 + 1502 ] } ], "event_tournaments_aggregate": [ - 1448, + 1496, { "distinct_on": [ - 1465, + 1513, "[event_tournaments_select_column!]" ], "limit": [ @@ -158194,48 +161927,48 @@ export default { 38 ], "order_by": [ - 1463, + 1511, "[event_tournaments_order_by!]" ], "where": [ - 1454 + 1502 ] } ], "event_tournaments_by_pk": [ - 1447, + 1495, { "event_id": [ - 4762, + 4921, "uuid!" ], "tournament_id": [ - 4762, + 4921, "uuid!" ] } ], "event_tournaments_stream": [ - 1447, + 1495, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1467, + 1515, "[event_tournaments_stream_cursor_input]!" ], "where": [ - 1454 + 1502 ] } ], "events": [ - 1471, + 1519, { "distinct_on": [ - 1486, + 1534, "[events_select_column!]" ], "limit": [ @@ -158245,19 +161978,19 @@ export default { 38 ], "order_by": [ - 1484, + 1532, "[events_order_by!]" ], "where": [ - 1475 + 1523 ] } ], "events_aggregate": [ - 1472, + 1520, { "distinct_on": [ - 1486, + 1534, "[events_select_column!]" ], "limit": [ @@ -158267,44 +162000,44 @@ export default { 38 ], "order_by": [ - 1484, + 1532, "[events_order_by!]" ], "where": [ - 1475 + 1523 ] } ], "events_by_pk": [ - 1471, + 1519, { "id": [ - 4762, + 4921, "uuid!" ] } ], "events_stream": [ - 1471, + 1519, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1491, + 1539, "[events_stream_cursor_input]!" ], "where": [ - 1475 + 1523 ] } ], "friends": [ - 1501, + 1549, { "distinct_on": [ - 1515, + 1563, "[friends_select_column!]" ], "limit": [ @@ -158314,19 +162047,19 @@ export default { 38 ], "order_by": [ - 1513, + 1561, "[friends_order_by!]" ], "where": [ - 1505 + 1553 ] } ], "friends_aggregate": [ - 1502, + 1550, { "distinct_on": [ - 1515, + 1563, "[friends_select_column!]" ], "limit": [ @@ -158336,16 +162069,16 @@ export default { 38 ], "order_by": [ - 1513, + 1561, "[friends_order_by!]" ], "where": [ - 1505 + 1553 ] } ], "friends_by_pk": [ - 1501, + 1549, { "other_player_steam_id": [ 180, @@ -158358,26 +162091,26 @@ export default { } ], "friends_stream": [ - 1501, + 1549, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1520, + 1568, "[friends_stream_cursor_input]!" ], "where": [ - 1505 + 1553 ] } ], "game_server_nodes": [ - 1528, + 1576, { "distinct_on": [ - 1557, + 1605, "[game_server_nodes_select_column!]" ], "limit": [ @@ -158387,19 +162120,19 @@ export default { 38 ], "order_by": [ - 1554, + 1602, "[game_server_nodes_order_by!]" ], "where": [ - 1540 + 1588 ] } ], "game_server_nodes_aggregate": [ - 1529, + 1577, { "distinct_on": [ - 1557, + 1605, "[game_server_nodes_select_column!]" ], "limit": [ @@ -158409,16 +162142,16 @@ export default { 38 ], "order_by": [ - 1554, + 1602, "[game_server_nodes_order_by!]" ], "where": [ - 1540 + 1588 ] } ], "game_server_nodes_by_pk": [ - 1528, + 1576, { "id": [ 78, @@ -158427,26 +162160,26 @@ export default { } ], "game_server_nodes_stream": [ - 1528, + 1576, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1567, + 1615, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1540 + 1588 ] } ], "game_versions": [ - 1579, + 1627, { "distinct_on": [ - 1599, + 1647, "[game_versions_select_column!]" ], "limit": [ @@ -158456,19 +162189,19 @@ export default { 38 ], "order_by": [ - 1596, + 1644, "[game_versions_order_by!]" ], "where": [ - 1584 + 1632 ] } ], "game_versions_aggregate": [ - 1580, + 1628, { "distinct_on": [ - 1599, + 1647, "[game_versions_select_column!]" ], "limit": [ @@ -158478,16 +162211,16 @@ export default { 38 ], "order_by": [ - 1596, + 1644, "[game_versions_order_by!]" ], "where": [ - 1584 + 1632 ] } ], "game_versions_by_pk": [ - 1579, + 1627, { "build_id": [ 38, @@ -158496,26 +162229,26 @@ export default { } ], "game_versions_stream": [ - 1579, + 1627, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1604, + 1652, "[game_versions_stream_cursor_input]!" ], "where": [ - 1584 + 1632 ] } ], "gamedata_signature_validations": [ - 1612, + 1660, { "distinct_on": [ - 1631, + 1679, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -158525,19 +162258,19 @@ export default { 38 ], "order_by": [ - 1628, + 1676, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1617 + 1665 ] } ], "gamedata_signature_validations_aggregate": [ - 1613, + 1661, { "distinct_on": [ - 1631, + 1679, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -158547,48 +162280,48 @@ export default { 38 ], "order_by": [ - 1628, + 1676, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1617 + 1665 ] } ], "gamedata_signature_validations_by_pk": [ - 1612, + 1660, { "id": [ - 4762, + 4921, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1612, + 1660, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1636, + 1684, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1617 + 1665 ] } ], "get_event_leaderboard": [ - 1655, + 1703, { "args": [ - 1644, + 1692, "get_event_leaderboard_args!" ], "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158598,23 +162331,23 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "get_event_leaderboard_aggregate": [ - 1656, + 1704, { "args": [ - 1644, + 1692, "get_event_leaderboard_args!" ], "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158624,23 +162357,23 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "get_leaderboard": [ - 1655, + 1703, { "args": [ - 1645, + 1693, "get_leaderboard_args!" ], "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158650,23 +162383,23 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "get_leaderboard_aggregate": [ - 1656, + 1704, { "args": [ - 1645, + 1693, "get_leaderboard_args!" ], "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158676,23 +162409,23 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "get_league_season_leaderboard": [ - 1655, + 1703, { "args": [ - 1646, + 1694, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158702,23 +162435,23 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "get_league_season_leaderboard_aggregate": [ - 1656, + 1704, { "args": [ - 1646, + 1694, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158728,23 +162461,23 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "get_player_leaderboard_rank": [ - 3222, + 3270, { "args": [ - 1647, + 1695, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3233, + 3281, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -158754,23 +162487,23 @@ export default { 38 ], "order_by": [ - 3232, + 3280, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 3274 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3223, + 3271, { "args": [ - 1647, + 1695, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3233, + 3281, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -158780,19 +162513,19 @@ export default { 38 ], "order_by": [ - 3232, + 3280, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 3274 ] } ], "leaderboard_entries": [ - 1655, + 1703, { "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158802,19 +162535,19 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "leaderboard_entries_aggregate": [ - 1656, + 1704, { "distinct_on": [ - 1666, + 1714, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158824,35 +162557,35 @@ export default { 38 ], "order_by": [ - 1665, + 1713, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1707 ] } ], "leaderboard_entries_stream": [ - 1655, + 1703, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1671, + 1719, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1659 + 1707 ] } ], "league_divisions": [ - 1679, + 1727, { "distinct_on": [ - 1694, + 1742, "[league_divisions_select_column!]" ], "limit": [ @@ -158862,19 +162595,19 @@ export default { 38 ], "order_by": [ - 1692, + 1740, "[league_divisions_order_by!]" ], "where": [ - 1683 + 1731 ] } ], "league_divisions_aggregate": [ - 1680, + 1728, { "distinct_on": [ - 1694, + 1742, "[league_divisions_select_column!]" ], "limit": [ @@ -158884,44 +162617,44 @@ export default { 38 ], "order_by": [ - 1692, + 1740, "[league_divisions_order_by!]" ], "where": [ - 1683 + 1731 ] } ], "league_divisions_by_pk": [ - 1679, + 1727, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_divisions_stream": [ - 1679, + 1727, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1699, + 1747, "[league_divisions_stream_cursor_input]!" ], "where": [ - 1683 + 1731 ] } ], "league_match_weeks": [ - 1707, + 1755, { "distinct_on": [ - 1728, + 1776, "[league_match_weeks_select_column!]" ], "limit": [ @@ -158931,19 +162664,19 @@ export default { 38 ], "order_by": [ - 1726, + 1774, "[league_match_weeks_order_by!]" ], "where": [ - 1716 + 1764 ] } ], "league_match_weeks_aggregate": [ - 1708, + 1756, { "distinct_on": [ - 1728, + 1776, "[league_match_weeks_select_column!]" ], "limit": [ @@ -158953,44 +162686,44 @@ export default { 38 ], "order_by": [ - 1726, + 1774, "[league_match_weeks_order_by!]" ], "where": [ - 1716 + 1764 ] } ], "league_match_weeks_by_pk": [ - 1707, + 1755, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_match_weeks_stream": [ - 1707, + 1755, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1736, + 1784, "[league_match_weeks_stream_cursor_input]!" ], "where": [ - 1716 + 1764 ] } ], "league_relegation_playoffs": [ - 1748, + 1796, { "distinct_on": [ - 1769, + 1817, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -159000,19 +162733,19 @@ export default { 38 ], "order_by": [ - 1767, + 1815, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1757 + 1805 ] } ], "league_relegation_playoffs_aggregate": [ - 1749, + 1797, { "distinct_on": [ - 1769, + 1817, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -159022,44 +162755,44 @@ export default { 38 ], "order_by": [ - 1767, + 1815, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1757 + 1805 ] } ], "league_relegation_playoffs_by_pk": [ - 1748, + 1796, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_relegation_playoffs_stream": [ - 1748, + 1796, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1777, + 1825, "[league_relegation_playoffs_stream_cursor_input]!" ], "where": [ - 1757 + 1805 ] } ], "league_scheduling_proposals": [ - 1789, + 1837, { "distinct_on": [ - 1810, + 1858, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -159069,19 +162802,19 @@ export default { 38 ], "order_by": [ - 1808, + 1856, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1798 + 1846 ] } ], "league_scheduling_proposals_aggregate": [ - 1790, + 1838, { "distinct_on": [ - 1810, + 1858, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -159091,44 +162824,44 @@ export default { 38 ], "order_by": [ - 1808, + 1856, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1798 + 1846 ] } ], "league_scheduling_proposals_by_pk": [ - 1789, + 1837, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_scheduling_proposals_stream": [ - 1789, + 1837, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1818, + 1866, "[league_scheduling_proposals_stream_cursor_input]!" ], "where": [ - 1798 + 1846 ] } ], "league_season_divisions": [ - 1830, + 1878, { "distinct_on": [ - 1849, + 1897, "[league_season_divisions_select_column!]" ], "limit": [ @@ -159138,19 +162871,19 @@ export default { 38 ], "order_by": [ - 1847, + 1895, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1885 ] } ], "league_season_divisions_aggregate": [ - 1831, + 1879, { "distinct_on": [ - 1849, + 1897, "[league_season_divisions_select_column!]" ], "limit": [ @@ -159160,44 +162893,44 @@ export default { 38 ], "order_by": [ - 1847, + 1895, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1885 ] } ], "league_season_divisions_by_pk": [ - 1830, + 1878, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_season_divisions_stream": [ - 1830, + 1878, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1851, + 1899, "[league_season_divisions_stream_cursor_input]!" ], "where": [ - 1837 + 1885 ] } ], "league_seasons": [ - 1855, + 1903, { "distinct_on": [ - 1875, + 1923, "[league_seasons_select_column!]" ], "limit": [ @@ -159207,19 +162940,19 @@ export default { 38 ], "order_by": [ - 1872, + 1920, "[league_seasons_order_by!]" ], "where": [ - 1860 + 1908 ] } ], "league_seasons_aggregate": [ - 1856, + 1904, { "distinct_on": [ - 1875, + 1923, "[league_seasons_select_column!]" ], "limit": [ @@ -159229,44 +162962,44 @@ export default { 38 ], "order_by": [ - 1872, + 1920, "[league_seasons_order_by!]" ], "where": [ - 1860 + 1908 ] } ], "league_seasons_by_pk": [ - 1855, + 1903, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_seasons_stream": [ - 1855, + 1903, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1880, + 1928, "[league_seasons_stream_cursor_input]!" ], "where": [ - 1860 + 1908 ] } ], "league_team_movements": [ - 1888, + 1936, { "distinct_on": [ - 1909, + 1957, "[league_team_movements_select_column!]" ], "limit": [ @@ -159276,19 +163009,19 @@ export default { 38 ], "order_by": [ - 1907, + 1955, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1945 ] } ], "league_team_movements_aggregate": [ - 1889, + 1937, { "distinct_on": [ - 1909, + 1957, "[league_team_movements_select_column!]" ], "limit": [ @@ -159298,44 +163031,44 @@ export default { 38 ], "order_by": [ - 1907, + 1955, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1945 ] } ], "league_team_movements_by_pk": [ - 1888, + 1936, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_team_movements_stream": [ - 1888, + 1936, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1917, + 1965, "[league_team_movements_stream_cursor_input]!" ], "where": [ - 1897 + 1945 ] } ], "league_team_rosters": [ - 1929, + 1977, { "distinct_on": [ - 1950, + 1998, "[league_team_rosters_select_column!]" ], "limit": [ @@ -159345,19 +163078,19 @@ export default { 38 ], "order_by": [ - 1948, + 1996, "[league_team_rosters_order_by!]" ], "where": [ - 1938 + 1986 ] } ], "league_team_rosters_aggregate": [ - 1930, + 1978, { "distinct_on": [ - 1950, + 1998, "[league_team_rosters_select_column!]" ], "limit": [ @@ -159367,19 +163100,19 @@ export default { 38 ], "order_by": [ - 1948, + 1996, "[league_team_rosters_order_by!]" ], "where": [ - 1938 + 1986 ] } ], "league_team_rosters_by_pk": [ - 1929, + 1977, { "league_team_season_id": [ - 4762, + 4921, "uuid!" ], "player_steam_id": [ @@ -159389,26 +163122,26 @@ export default { } ], "league_team_rosters_stream": [ - 1929, + 1977, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1958, + 2006, "[league_team_rosters_stream_cursor_input]!" ], "where": [ - 1938 + 1986 ] } ], "league_team_seasons": [ - 1970, + 2018, { "distinct_on": [ - 1992, + 2040, "[league_team_seasons_select_column!]" ], "limit": [ @@ -159418,19 +163151,19 @@ export default { 38 ], "order_by": [ - 1990, + 2038, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 2027 ] } ], "league_team_seasons_aggregate": [ - 1971, + 2019, { "distinct_on": [ - 1992, + 2040, "[league_team_seasons_select_column!]" ], "limit": [ @@ -159440,44 +163173,44 @@ export default { 38 ], "order_by": [ - 1990, + 2038, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 2027 ] } ], "league_team_seasons_by_pk": [ - 1970, + 2018, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_team_seasons_stream": [ - 1970, + 2018, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2000, + 2048, "[league_team_seasons_stream_cursor_input]!" ], "where": [ - 1979 + 2027 ] } ], "league_teams": [ - 2012, + 2060, { "distinct_on": [ - 2025, + 2073, "[league_teams_select_column!]" ], "limit": [ @@ -159487,19 +163220,19 @@ export default { 38 ], "order_by": [ - 2023, + 2071, "[league_teams_order_by!]" ], "where": [ - 2015 + 2063 ] } ], "league_teams_aggregate": [ - 2013, + 2061, { "distinct_on": [ - 2025, + 2073, "[league_teams_select_column!]" ], "limit": [ @@ -159509,44 +163242,44 @@ export default { 38 ], "order_by": [ - 2023, + 2071, "[league_teams_order_by!]" ], "where": [ - 2015 + 2063 ] } ], "league_teams_by_pk": [ - 2012, + 2060, { "id": [ - 4762, + 4921, "uuid!" ] } ], "league_teams_stream": [ - 2012, + 2060, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2027, + 2075, "[league_teams_stream_cursor_input]!" ], "where": [ - 2015 + 2063 ] } ], "lobbies": [ - 2031, + 2079, { "distinct_on": [ - 2044, + 2092, "[lobbies_select_column!]" ], "limit": [ @@ -159556,19 +163289,19 @@ export default { 38 ], "order_by": [ - 2042, + 2090, "[lobbies_order_by!]" ], "where": [ - 2034 + 2082 ] } ], "lobbies_aggregate": [ - 2032, + 2080, { "distinct_on": [ - 2044, + 2092, "[lobbies_select_column!]" ], "limit": [ @@ -159578,44 +163311,44 @@ export default { 38 ], "order_by": [ - 2042, + 2090, "[lobbies_order_by!]" ], "where": [ - 2034 + 2082 ] } ], "lobbies_by_pk": [ - 2031, + 2079, { "id": [ - 4762, + 4921, "uuid!" ] } ], "lobbies_stream": [ - 2031, + 2079, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2046, + 2094, "[lobbies_stream_cursor_input]!" ], "where": [ - 2034 + 2082 ] } ], "lobby_players": [ - 2050, + 2098, { "distinct_on": [ - 2073, + 2121, "[lobby_players_select_column!]" ], "limit": [ @@ -159625,19 +163358,19 @@ export default { 38 ], "order_by": [ - 2071, + 2119, "[lobby_players_order_by!]" ], "where": [ - 2061 + 2109 ] } ], "lobby_players_aggregate": [ - 2051, + 2099, { "distinct_on": [ - 2073, + 2121, "[lobby_players_select_column!]" ], "limit": [ @@ -159647,19 +163380,19 @@ export default { 38 ], "order_by": [ - 2071, + 2119, "[lobby_players_order_by!]" ], "where": [ - 2061 + 2109 ] } ], "lobby_players_by_pk": [ - 2050, + 2098, { "lobby_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -159669,26 +163402,26 @@ export default { } ], "lobby_players_stream": [ - 2050, + 2098, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2083, + 2131, "[lobby_players_stream_cursor_input]!" ], "where": [ - 2061 + 2109 ] } ], "map_pools": [ - 2095, + 2143, { "distinct_on": [ - 2108, + 2156, "[map_pools_select_column!]" ], "limit": [ @@ -159698,19 +163431,19 @@ export default { 38 ], "order_by": [ - 2106, + 2154, "[map_pools_order_by!]" ], "where": [ - 2098 + 2146 ] } ], "map_pools_aggregate": [ - 2096, + 2144, { "distinct_on": [ - 2108, + 2156, "[map_pools_select_column!]" ], "limit": [ @@ -159720,44 +163453,44 @@ export default { 38 ], "order_by": [ - 2106, + 2154, "[map_pools_order_by!]" ], "where": [ - 2098 + 2146 ] } ], "map_pools_by_pk": [ - 2095, + 2143, { "id": [ - 4762, + 4921, "uuid!" ] } ], "map_pools_stream": [ - 2095, + 2143, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2110, + 2158, "[map_pools_stream_cursor_input]!" ], "where": [ - 2098 + 2146 ] } ], "maps": [ - 2114, + 2162, { "distinct_on": [ - 2135, + 2183, "[maps_select_column!]" ], "limit": [ @@ -159767,19 +163500,19 @@ export default { 38 ], "order_by": [ - 2133, + 2181, "[maps_order_by!]" ], "where": [ - 2123 + 2171 ] } ], "maps_aggregate": [ - 2115, + 2163, { "distinct_on": [ - 2135, + 2183, "[maps_select_column!]" ], "limit": [ @@ -159789,44 +163522,44 @@ export default { 38 ], "order_by": [ - 2133, + 2181, "[maps_order_by!]" ], "where": [ - 2123 + 2171 ] } ], "maps_by_pk": [ - 2114, + 2162, { "id": [ - 4762, + 4921, "uuid!" ] } ], "maps_stream": [ - 2114, + 2162, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2139, + 2187, "[maps_stream_cursor_input]!" ], "where": [ - 2123 + 2171 ] } ], "match_clips": [ - 2143, + 2191, { "distinct_on": [ - 2165, + 2213, "[match_clips_select_column!]" ], "limit": [ @@ -159836,19 +163569,19 @@ export default { 38 ], "order_by": [ - 2163, + 2211, "[match_clips_order_by!]" ], "where": [ - 2152 + 2200 ] } ], "match_clips_aggregate": [ - 2144, + 2192, { "distinct_on": [ - 2165, + 2213, "[match_clips_select_column!]" ], "limit": [ @@ -159858,44 +163591,44 @@ export default { 38 ], "order_by": [ - 2163, + 2211, "[match_clips_order_by!]" ], "where": [ - 2152 + 2200 ] } ], "match_clips_by_pk": [ - 2143, + 2191, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_clips_stream": [ - 2143, + 2191, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2173, + 2221, "[match_clips_stream_cursor_input]!" ], "where": [ - 2152 + 2200 ] } ], "match_demo_sessions": [ - 2185, + 2233, { "distinct_on": [ - 2211, + 2259, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -159905,19 +163638,19 @@ export default { 38 ], "order_by": [ - 2208, + 2256, "[match_demo_sessions_order_by!]" ], "where": [ - 2195 + 2243 ] } ], "match_demo_sessions_aggregate": [ - 2186, + 2234, { "distinct_on": [ - 2211, + 2259, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -159927,44 +163660,44 @@ export default { 38 ], "order_by": [ - 2208, + 2256, "[match_demo_sessions_order_by!]" ], "where": [ - 2195 + 2243 ] } ], "match_demo_sessions_by_pk": [ - 2185, + 2233, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_demo_sessions_stream": [ - 2185, + 2233, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2219, + 2267, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 2195 + 2243 ] } ], "match_lineup_players": [ - 2231, + 2279, { "distinct_on": [ - 2254, + 2302, "[match_lineup_players_select_column!]" ], "limit": [ @@ -159974,19 +163707,19 @@ export default { 38 ], "order_by": [ - 2252, + 2300, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 2290 ] } ], "match_lineup_players_aggregate": [ - 2232, + 2280, { "distinct_on": [ - 2254, + 2302, "[match_lineup_players_select_column!]" ], "limit": [ @@ -159996,44 +163729,44 @@ export default { 38 ], "order_by": [ - 2252, + 2300, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 2290 ] } ], "match_lineup_players_by_pk": [ - 2231, + 2279, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_lineup_players_stream": [ - 2231, + 2279, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2264, + 2312, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 2242 + 2290 ] } ], "match_lineups": [ - 2276, + 2324, { "distinct_on": [ - 2298, + 2346, "[match_lineups_select_column!]" ], "limit": [ @@ -160043,19 +163776,19 @@ export default { 38 ], "order_by": [ - 2296, + 2344, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2333 ] } ], "match_lineups_aggregate": [ - 2277, + 2325, { "distinct_on": [ - 2298, + 2346, "[match_lineups_select_column!]" ], "limit": [ @@ -160065,44 +163798,44 @@ export default { 38 ], "order_by": [ - 2296, + 2344, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2333 ] } ], "match_lineups_by_pk": [ - 2276, + 2324, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_lineups_stream": [ - 2276, + 2324, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2306, + 2354, "[match_lineups_stream_cursor_input]!" ], "where": [ - 2285 + 2333 ] } ], "match_map_demos": [ - 2318, + 2366, { "distinct_on": [ - 2347, + 2395, "[match_map_demos_select_column!]" ], "limit": [ @@ -160112,19 +163845,19 @@ export default { 38 ], "order_by": [ - 2344, + 2392, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2378 ] } ], "match_map_demos_aggregate": [ - 2319, + 2367, { "distinct_on": [ - 2347, + 2395, "[match_map_demos_select_column!]" ], "limit": [ @@ -160134,44 +163867,44 @@ export default { 38 ], "order_by": [ - 2344, + 2392, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2378 ] } ], "match_map_demos_by_pk": [ - 2318, + 2366, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_map_demos_stream": [ - 2318, + 2366, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2357, + 2405, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2330 + 2378 ] } ], "match_map_rounds": [ - 2369, + 2417, { "distinct_on": [ - 2390, + 2438, "[match_map_rounds_select_column!]" ], "limit": [ @@ -160181,19 +163914,19 @@ export default { 38 ], "order_by": [ - 2388, + 2436, "[match_map_rounds_order_by!]" ], "where": [ - 2378 + 2426 ] } ], "match_map_rounds_aggregate": [ - 2370, + 2418, { "distinct_on": [ - 2390, + 2438, "[match_map_rounds_select_column!]" ], "limit": [ @@ -160203,44 +163936,44 @@ export default { 38 ], "order_by": [ - 2388, + 2436, "[match_map_rounds_order_by!]" ], "where": [ - 2378 + 2426 ] } ], "match_map_rounds_by_pk": [ - 2369, + 2417, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_map_rounds_stream": [ - 2369, + 2417, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2398, + 2446, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2378 + 2426 ] } ], "match_map_veto_picks": [ - 2410, + 2458, { "distinct_on": [ - 2428, + 2476, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -160250,19 +163983,19 @@ export default { 38 ], "order_by": [ - 2426, + 2474, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2465 ] } ], "match_map_veto_picks_aggregate": [ - 2411, + 2459, { "distinct_on": [ - 2428, + 2476, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -160272,44 +164005,44 @@ export default { 38 ], "order_by": [ - 2426, + 2474, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2465 ] } ], "match_map_veto_picks_by_pk": [ - 2410, + 2458, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2410, + 2458, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2430, + 2478, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2417 + 2465 ] } ], "match_maps": [ - 2434, + 2482, { "distinct_on": [ - 2456, + 2504, "[match_maps_select_column!]" ], "limit": [ @@ -160319,19 +164052,19 @@ export default { 38 ], "order_by": [ - 2454, + 2502, "[match_maps_order_by!]" ], "where": [ - 2443 + 2491 ] } ], "match_maps_aggregate": [ - 2435, + 2483, { "distinct_on": [ - 2456, + 2504, "[match_maps_select_column!]" ], "limit": [ @@ -160341,44 +164074,44 @@ export default { 38 ], "order_by": [ - 2454, + 2502, "[match_maps_order_by!]" ], "where": [ - 2443 + 2491 ] } ], "match_maps_by_pk": [ - 2434, + 2482, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_maps_stream": [ - 2434, + 2482, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2464, + 2512, "[match_maps_stream_cursor_input]!" ], "where": [ - 2443 + 2491 ] } ], "match_options": [ - 2476, + 2524, { "distinct_on": [ - 2491, + 2539, "[match_options_select_column!]" ], "limit": [ @@ -160388,19 +164121,19 @@ export default { 38 ], "order_by": [ - 2489, + 2537, "[match_options_order_by!]" ], "where": [ - 2480 + 2528 ] } ], "match_options_aggregate": [ - 2477, + 2525, { "distinct_on": [ - 2491, + 2539, "[match_options_select_column!]" ], "limit": [ @@ -160410,44 +164143,44 @@ export default { 38 ], "order_by": [ - 2489, + 2537, "[match_options_order_by!]" ], "where": [ - 2480 + 2528 ] } ], "match_options_by_pk": [ - 2476, + 2524, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_options_stream": [ - 2476, + 2524, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2496, + 2544, "[match_options_stream_cursor_input]!" ], "where": [ - 2480 + 2528 ] } ], "match_region_veto_picks": [ - 2504, + 2552, { "distinct_on": [ - 2522, + 2570, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -160457,19 +164190,19 @@ export default { 38 ], "order_by": [ - 2520, + 2568, "[match_region_veto_picks_order_by!]" ], "where": [ - 2511 + 2559 ] } ], "match_region_veto_picks_aggregate": [ - 2505, + 2553, { "distinct_on": [ - 2522, + 2570, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -160479,44 +164212,44 @@ export default { 38 ], "order_by": [ - 2520, + 2568, "[match_region_veto_picks_order_by!]" ], "where": [ - 2511 + 2559 ] } ], "match_region_veto_picks_by_pk": [ - 2504, + 2552, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2504, + 2552, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2524, + 2572, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2511 + 2559 ] } ], "match_streams": [ - 2528, + 2576, { "distinct_on": [ - 2556, + 2604, "[match_streams_select_column!]" ], "limit": [ @@ -160526,19 +164259,19 @@ export default { 38 ], "order_by": [ - 2553, + 2601, "[match_streams_order_by!]" ], "where": [ - 2540 + 2588 ] } ], "match_streams_aggregate": [ - 2529, + 2577, { "distinct_on": [ - 2556, + 2604, "[match_streams_select_column!]" ], "limit": [ @@ -160548,44 +164281,44 @@ export default { 38 ], "order_by": [ - 2553, + 2601, "[match_streams_order_by!]" ], "where": [ - 2540 + 2588 ] } ], "match_streams_by_pk": [ - 2528, + 2576, { "id": [ - 4762, + 4921, "uuid!" ] } ], "match_streams_stream": [ - 2528, + 2576, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2566, + 2614, "[match_streams_stream_cursor_input]!" ], "where": [ - 2540 + 2588 ] } ], "match_type_cfgs": [ - 2578, + 2626, { "distinct_on": [ - 2590, + 2638, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -160595,19 +164328,19 @@ export default { 38 ], "order_by": [ - 2588, + 2636, "[match_type_cfgs_order_by!]" ], "where": [ - 2581 + 2629 ] } ], "match_type_cfgs_aggregate": [ - 2579, + 2627, { "distinct_on": [ - 2590, + 2638, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -160617,44 +164350,44 @@ export default { 38 ], "order_by": [ - 2588, + 2636, "[match_type_cfgs_order_by!]" ], "where": [ - 2581 + 2629 ] } ], "match_type_cfgs_by_pk": [ - 2578, + 2626, { "type": [ - 591, + 618, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 2578, + 2626, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2592, + 2640, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2581 + 2629 ] } ], "matches": [ - 2596, + 2644, { "distinct_on": [ - 2618, + 2666, "[matches_select_column!]" ], "limit": [ @@ -160664,19 +164397,19 @@ export default { 38 ], "order_by": [ - 2616, + 2664, "[matches_order_by!]" ], "where": [ - 2605 + 2653 ] } ], "matches_aggregate": [ - 2597, + 2645, { "distinct_on": [ - 2618, + 2666, "[matches_select_column!]" ], "limit": [ @@ -160686,44 +164419,44 @@ export default { 38 ], "order_by": [ - 2616, + 2664, "[matches_order_by!]" ], "where": [ - 2605 + 2653 ] } ], "matches_by_pk": [ - 2596, + 2644, { "id": [ - 4762, + 4921, "uuid!" ] } ], "matches_stream": [ - 2596, + 2644, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2626, + 2674, "[matches_stream_cursor_input]!" ], "where": [ - 2605 + 2653 ] } ], "migration_hashes_hashes": [ - 2638, + 2686, { "distinct_on": [ - 2650, + 2698, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -160733,19 +164466,19 @@ export default { 38 ], "order_by": [ - 2648, + 2696, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2641 + 2689 ] } ], "migration_hashes_hashes_aggregate": [ - 2639, + 2687, { "distinct_on": [ - 2650, + 2698, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -160755,16 +164488,16 @@ export default { 38 ], "order_by": [ - 2648, + 2696, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2641 + 2689 ] } ], "migration_hashes_hashes_by_pk": [ - 2638, + 2686, { "name": [ 78, @@ -160773,26 +164506,26 @@ export default { } ], "migration_hashes_hashes_stream": [ - 2638, + 2686, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2652, + 2700, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2641 + 2689 ] } ], "my_friends": [ - 2656, + 2704, { "distinct_on": [ - 2681, + 2729, "[my_friends_select_column!]" ], "limit": [ @@ -160802,19 +164535,19 @@ export default { 38 ], "order_by": [ - 2679, + 2727, "[my_friends_order_by!]" ], "where": [ - 2668 + 2716 ] } ], "my_friends_aggregate": [ - 2657, + 2705, { "distinct_on": [ - 2681, + 2729, "[my_friends_select_column!]" ], "limit": [ @@ -160824,35 +164557,35 @@ export default { 38 ], "order_by": [ - 2679, + 2727, "[my_friends_order_by!]" ], "where": [ - 2668 + 2716 ] } ], "my_friends_stream": [ - 2656, + 2704, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2691, + 2739, "[my_friends_stream_cursor_input]!" ], "where": [ - 2668 + 2716 ] } ], "news_articles": [ - 2702, + 2750, { "distinct_on": [ - 2716, + 2764, "[news_articles_select_column!]" ], "limit": [ @@ -160862,19 +164595,19 @@ export default { 38 ], "order_by": [ - 2714, + 2762, "[news_articles_order_by!]" ], "where": [ - 2706 + 2754 ] } ], "news_articles_aggregate": [ - 2703, + 2751, { "distinct_on": [ - 2716, + 2764, "[news_articles_select_column!]" ], "limit": [ @@ -160884,44 +164617,44 @@ export default { 38 ], "order_by": [ - 2714, + 2762, "[news_articles_order_by!]" ], "where": [ - 2706 + 2754 ] } ], "news_articles_by_pk": [ - 2702, + 2750, { "id": [ - 4762, + 4921, "uuid!" ] } ], "news_articles_stream": [ - 2702, + 2750, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2721, + 2769, "[news_articles_stream_cursor_input]!" ], "where": [ - 2706 + 2754 ] } ], "notifications": [ - 2729, + 2777, { "distinct_on": [ - 2757, + 2805, "[notifications_select_column!]" ], "limit": [ @@ -160931,19 +164664,19 @@ export default { 38 ], "order_by": [ - 2754, + 2802, "[notifications_order_by!]" ], "where": [ - 2741 + 2789 ] } ], "notifications_aggregate": [ - 2730, + 2778, { "distinct_on": [ - 2757, + 2805, "[notifications_select_column!]" ], "limit": [ @@ -160953,44 +164686,44 @@ export default { 38 ], "order_by": [ - 2754, + 2802, "[notifications_order_by!]" ], "where": [ - 2741 + 2789 ] } ], "notifications_by_pk": [ - 2729, + 2777, { "id": [ - 4762, + 4921, "uuid!" ] } ], "notifications_stream": [ - 2729, + 2777, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2767, + 2815, "[notifications_stream_cursor_input]!" ], "where": [ - 2741 + 2789 ] } ], "pending_match_import_players": [ - 2782, + 2830, { "distinct_on": [ - 2803, + 2851, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -161000,19 +164733,19 @@ export default { 38 ], "order_by": [ - 2801, + 2849, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2839 ] } ], "pending_match_import_players_aggregate": [ - 2783, + 2831, { "distinct_on": [ - 2803, + 2851, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -161022,48 +164755,48 @@ export default { 38 ], "order_by": [ - 2801, + 2849, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2839 ] } ], "pending_match_import_players_by_pk": [ - 2782, + 2830, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2779, + 2827, "numeric!" ] } ], "pending_match_import_players_stream": [ - 2782, + 2830, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2811, + 2859, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 2791 + 2839 ] } ], "pending_match_imports": [ - 2823, + 2871, { "distinct_on": [ - 2838, + 2886, "[pending_match_imports_select_column!]" ], "limit": [ @@ -161073,19 +164806,19 @@ export default { 38 ], "order_by": [ - 2836, + 2884, "[pending_match_imports_order_by!]" ], "where": [ - 2827 + 2875 ] } ], "pending_match_imports_aggregate": [ - 2824, + 2872, { "distinct_on": [ - 2838, + 2886, "[pending_match_imports_select_column!]" ], "limit": [ @@ -161095,44 +164828,44 @@ export default { 38 ], "order_by": [ - 2836, + 2884, "[pending_match_imports_order_by!]" ], "where": [ - 2827 + 2875 ] } ], "pending_match_imports_by_pk": [ - 2823, + 2871, { "valve_match_id": [ - 2779, + 2827, "numeric!" ] } ], "pending_match_imports_stream": [ - 2823, + 2871, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2843, + 2891, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 2827 + 2875 ] } ], "player_aim_stats_demo": [ - 2851, + 2899, { "distinct_on": [ - 2865, + 2913, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -161142,19 +164875,19 @@ export default { 38 ], "order_by": [ - 2863, + 2911, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2855 + 2903 ] } ], "player_aim_stats_demo_aggregate": [ - 2852, + 2900, { "distinct_on": [ - 2865, + 2913, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -161164,48 +164897,48 @@ export default { 38 ], "order_by": [ - 2863, + 2911, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2855 + 2903 ] } ], "player_aim_stats_demo_by_pk": [ - 2851, + 2899, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 2851, + 2899, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2870, + 2918, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 2855 + 2903 ] } ], "player_aim_weapon_stats": [ - 2878, + 2926, { "distinct_on": [ - 2899, + 2947, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -161215,19 +164948,19 @@ export default { 38 ], "order_by": [ - 2897, + 2945, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2887 + 2935 ] } ], "player_aim_weapon_stats_aggregate": [ - 2879, + 2927, { "distinct_on": [ - 2899, + 2947, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -161237,19 +164970,19 @@ export default { 38 ], "order_by": [ - 2897, + 2945, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2887 + 2935 ] } ], "player_aim_weapon_stats_by_pk": [ - 2878, + 2926, { "match_map_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -161263,26 +164996,26 @@ export default { } ], "player_aim_weapon_stats_stream": [ - 2878, + 2926, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2907, + 2955, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 2887 + 2935 ] } ], "player_assists": [ - 2919, + 2967, { "distinct_on": [ - 2942, + 2990, "[player_assists_select_column!]" ], "limit": [ @@ -161292,19 +165025,19 @@ export default { 38 ], "order_by": [ - 2940, + 2988, "[player_assists_order_by!]" ], "where": [ - 2930 + 2978 ] } ], "player_assists_aggregate": [ - 2920, + 2968, { "distinct_on": [ - 2942, + 2990, "[player_assists_select_column!]" ], "limit": [ @@ -161314,16 +165047,16 @@ export default { 38 ], "order_by": [ - 2940, + 2988, "[player_assists_order_by!]" ], "where": [ - 2930 + 2978 ] } ], "player_assists_by_pk": [ - 2919, + 2967, { "attacked_steam_id": [ 180, @@ -161334,36 +165067,36 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "player_assists_stream": [ - 2919, + 2967, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2952, + 3000, "[player_assists_stream_cursor_input]!" ], "where": [ - 2930 + 2978 ] } ], "player_career_stats_v": [ - 2964, + 3012, { "distinct_on": [ - 2972, + 3020, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -161373,19 +165106,19 @@ export default { 38 ], "order_by": [ - 2971, + 3019, "[player_career_stats_v_order_by!]" ], "where": [ - 2968 + 3016 ] } ], "player_career_stats_v_aggregate": [ - 2965, + 3013, { "distinct_on": [ - 2972, + 3020, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -161395,35 +165128,35 @@ export default { 38 ], "order_by": [ - 2971, + 3019, "[player_career_stats_v_order_by!]" ], "where": [ - 2968 + 3016 ] } ], "player_career_stats_v_stream": [ - 2964, + 3012, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2976, + 3024, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 2968 + 3016 ] } ], "player_damages": [ - 2982, + 3030, { "distinct_on": [ - 3003, + 3051, "[player_damages_select_column!]" ], "limit": [ @@ -161433,19 +165166,19 @@ export default { 38 ], "order_by": [ - 3001, + 3049, "[player_damages_order_by!]" ], "where": [ - 2991 + 3039 ] } ], "player_damages_aggregate": [ - 2983, + 3031, { "distinct_on": [ - 3003, + 3051, "[player_damages_select_column!]" ], "limit": [ @@ -161455,52 +165188,52 @@ export default { 38 ], "order_by": [ - 3001, + 3049, "[player_damages_order_by!]" ], "where": [ - 2991 + 3039 ] } ], "player_damages_by_pk": [ - 2982, + 3030, { "id": [ - 4762, + 4921, "uuid!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "player_damages_stream": [ - 2982, + 3030, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3011, + 3059, "[player_damages_stream_cursor_input]!" ], "where": [ - 2991 + 3039 ] } ], "player_elo": [ - 3023, + 3071, { "distinct_on": [ - 3037, + 3085, "[player_elo_select_column!]" ], "limit": [ @@ -161510,19 +165243,19 @@ export default { 38 ], "order_by": [ - 3035, + 3083, "[player_elo_order_by!]" ], "where": [ - 3027 + 3075 ] } ], "player_elo_aggregate": [ - 3024, + 3072, { "distinct_on": [ - 3037, + 3085, "[player_elo_select_column!]" ], "limit": [ @@ -161532,19 +165265,19 @@ export default { 38 ], "order_by": [ - 3035, + 3083, "[player_elo_order_by!]" ], "where": [ - 3027 + 3075 ] } ], "player_elo_by_pk": [ - 3023, + 3071, { "match_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -161552,32 +165285,32 @@ export default { "bigint!" ], "type": [ - 860, + 887, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 3023, + 3071, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3042, + 3090, "[player_elo_stream_cursor_input]!" ], "where": [ - 3027 + 3075 ] } ], "player_faceit_rank_history": [ - 3050, + 3098, { "distinct_on": [ - 3071, + 3119, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -161587,19 +165320,19 @@ export default { 38 ], "order_by": [ - 3069, + 3117, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3059 + 3107 ] } ], "player_faceit_rank_history_aggregate": [ - 3051, + 3099, { "distinct_on": [ - 3071, + 3119, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -161609,44 +165342,44 @@ export default { 38 ], "order_by": [ - 3069, + 3117, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3059 + 3107 ] } ], "player_faceit_rank_history_by_pk": [ - 3050, + 3098, { "id": [ - 4762, + 4921, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 3050, + 3098, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3079, + 3127, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 3059 + 3107 ] } ], "player_flashes": [ - 3091, + 3139, { "distinct_on": [ - 3114, + 3162, "[player_flashes_select_column!]" ], "limit": [ @@ -161656,19 +165389,19 @@ export default { 38 ], "order_by": [ - 3112, + 3160, "[player_flashes_order_by!]" ], "where": [ - 3102 + 3150 ] } ], "player_flashes_aggregate": [ - 3092, + 3140, { "distinct_on": [ - 3114, + 3162, "[player_flashes_select_column!]" ], "limit": [ @@ -161678,16 +165411,16 @@ export default { 38 ], "order_by": [ - 3112, + 3160, "[player_flashes_order_by!]" ], "where": [ - 3102 + 3150 ] } ], "player_flashes_by_pk": [ - 3091, + 3139, { "attacked_steam_id": [ 180, @@ -161698,36 +165431,36 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "player_flashes_stream": [ - 3091, + 3139, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3124, + 3172, "[player_flashes_stream_cursor_input]!" ], "where": [ - 3102 + 3150 ] } ], "player_kills": [ - 3136, + 3184, { "distinct_on": [ - 3200, + 3248, "[player_kills_select_column!]" ], "limit": [ @@ -161737,19 +165470,19 @@ export default { 38 ], "order_by": [ - 3198, + 3246, "[player_kills_order_by!]" ], "where": [ - 3147 + 3195 ] } ], "player_kills_aggregate": [ - 3137, + 3185, { "distinct_on": [ - 3200, + 3248, "[player_kills_select_column!]" ], "limit": [ @@ -161759,16 +165492,16 @@ export default { 38 ], "order_by": [ - 3198, + 3246, "[player_kills_order_by!]" ], "where": [ - 3147 + 3195 ] } ], "player_kills_by_pk": [ - 3136, + 3184, { "attacked_steam_id": [ 180, @@ -161779,20 +165512,20 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3148, + 3196, { "distinct_on": [ - 3169, + 3217, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -161802,19 +165535,19 @@ export default { 38 ], "order_by": [ - 3167, + 3215, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3157 + 3205 ] } ], "player_kills_by_weapon_aggregate": [ - 3149, + 3197, { "distinct_on": [ - 3169, + 3217, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -161824,16 +165557,16 @@ export default { 38 ], "order_by": [ - 3167, + 3215, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3157 + 3205 ] } ], "player_kills_by_weapon_by_pk": [ - 3148, + 3196, { "player_steam_id": [ 180, @@ -161846,42 +165579,42 @@ export default { } ], "player_kills_by_weapon_stream": [ - 3148, + 3196, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3177, + 3225, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 3157 + 3205 ] } ], "player_kills_stream": [ - 3136, + 3184, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3210, + 3258, "[player_kills_stream_cursor_input]!" ], "where": [ - 3147 + 3195 ] } ], "player_leaderboard_rank": [ - 3222, + 3270, { "distinct_on": [ - 3233, + 3281, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -161891,19 +165624,19 @@ export default { 38 ], "order_by": [ - 3232, + 3280, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 3274 ] } ], "player_leaderboard_rank_aggregate": [ - 3223, + 3271, { "distinct_on": [ - 3233, + 3281, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -161913,35 +165646,35 @@ export default { 38 ], "order_by": [ - 3232, + 3280, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 3274 ] } ], "player_leaderboard_rank_stream": [ - 3222, + 3270, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3238, + 3286, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 3226 + 3274 ] } ], "player_match_map_stats": [ - 3245, + 3293, { "distinct_on": [ - 3266, + 3314, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -161951,19 +165684,19 @@ export default { 38 ], "order_by": [ - 3264, + 3312, "[player_match_map_stats_order_by!]" ], "where": [ - 3254 + 3302 ] } ], "player_match_map_stats_aggregate": [ - 3246, + 3294, { "distinct_on": [ - 3266, + 3314, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -161973,19 +165706,19 @@ export default { 38 ], "order_by": [ - 3264, + 3312, "[player_match_map_stats_order_by!]" ], "where": [ - 3254 + 3302 ] } ], "player_match_map_stats_by_pk": [ - 3245, + 3293, { "match_map_id": [ - 4762, + 4921, "uuid!" ], "steam_id": [ @@ -161995,26 +165728,26 @@ export default { } ], "player_match_map_stats_stream": [ - 3245, + 3293, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3274, + 3322, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 3254 + 3302 ] } ], "player_match_performance_v": [ - 3286, + 3334, { "distinct_on": [ - 3294, + 3342, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -162024,19 +165757,19 @@ export default { 38 ], "order_by": [ - 3293, + 3341, "[player_match_performance_v_order_by!]" ], "where": [ - 3290 + 3338 ] } ], "player_match_performance_v_aggregate": [ - 3287, + 3335, { "distinct_on": [ - 3294, + 3342, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -162046,35 +165779,35 @@ export default { 38 ], "order_by": [ - 3293, + 3341, "[player_match_performance_v_order_by!]" ], "where": [ - 3290 + 3338 ] } ], "player_match_performance_v_stream": [ - 3286, + 3334, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3298, + 3346, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 3290 + 3338 ] } ], "player_match_stats_v": [ - 3304, + 3352, { "distinct_on": [ - 3320, + 3368, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -162084,19 +165817,19 @@ export default { 38 ], "order_by": [ - 3319, + 3367, "[player_match_stats_v_order_by!]" ], "where": [ - 3313 + 3361 ] } ], "player_match_stats_v_aggregate": [ - 3305, + 3353, { "distinct_on": [ - 3320, + 3368, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -162106,35 +165839,35 @@ export default { 38 ], "order_by": [ - 3319, + 3367, "[player_match_stats_v_order_by!]" ], "where": [ - 3313 + 3361 ] } ], "player_match_stats_v_stream": [ - 3304, + 3352, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3327, + 3375, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3313 + 3361 ] } ], "player_objectives": [ - 3337, + 3385, { "distinct_on": [ - 3358, + 3406, "[player_objectives_select_column!]" ], "limit": [ @@ -162144,19 +165877,19 @@ export default { 38 ], "order_by": [ - 3356, + 3404, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3394 ] } ], "player_objectives_aggregate": [ - 3338, + 3386, { "distinct_on": [ - 3358, + 3406, "[player_objectives_select_column!]" ], "limit": [ @@ -162166,19 +165899,19 @@ export default { 38 ], "order_by": [ - 3356, + 3404, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3394 ] } ], "player_objectives_by_pk": [ - 3337, + 3385, { "match_map_id": [ - 4762, + 4921, "uuid!" ], "player_steam_id": [ @@ -162186,32 +165919,32 @@ export default { "bigint!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "player_objectives_stream": [ - 3337, + 3385, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3366, + 3414, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3346 + 3394 ] } ], "player_performance_v": [ - 3378, + 3426, { "distinct_on": [ - 3386, + 3434, "[player_performance_v_select_column!]" ], "limit": [ @@ -162221,19 +165954,19 @@ export default { 38 ], "order_by": [ - 3385, + 3433, "[player_performance_v_order_by!]" ], "where": [ - 3382 + 3430 ] } ], "player_performance_v_aggregate": [ - 3379, + 3427, { "distinct_on": [ - 3386, + 3434, "[player_performance_v_select_column!]" ], "limit": [ @@ -162243,35 +165976,35 @@ export default { 38 ], "order_by": [ - 3385, + 3433, "[player_performance_v_order_by!]" ], "where": [ - 3382 + 3430 ] } ], "player_performance_v_stream": [ - 3378, + 3426, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3390, + 3438, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3382 + 3430 ] } ], "player_premier_rank_history": [ - 3396, + 3444, { "distinct_on": [ - 3417, + 3465, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -162281,19 +166014,19 @@ export default { 38 ], "order_by": [ - 3415, + 3463, "[player_premier_rank_history_order_by!]" ], "where": [ - 3405 + 3453 ] } ], "player_premier_rank_history_aggregate": [ - 3397, + 3445, { "distinct_on": [ - 3417, + 3465, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -162303,44 +166036,44 @@ export default { 38 ], "order_by": [ - 3415, + 3463, "[player_premier_rank_history_order_by!]" ], "where": [ - 3405 + 3453 ] } ], "player_premier_rank_history_by_pk": [ - 3396, + 3444, { "id": [ - 4762, + 4921, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3396, + 3444, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3425, + 3473, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3405 + 3453 ] } ], "player_sanctions": [ - 3437, + 3485, { "distinct_on": [ - 3458, + 3506, "[player_sanctions_select_column!]" ], "limit": [ @@ -162350,19 +166083,19 @@ export default { 38 ], "order_by": [ - 3456, + 3504, "[player_sanctions_order_by!]" ], "where": [ - 3446 + 3494 ] } ], "player_sanctions_aggregate": [ - 3438, + 3486, { "distinct_on": [ - 3458, + 3506, "[player_sanctions_select_column!]" ], "limit": [ @@ -162372,48 +166105,48 @@ export default { 38 ], "order_by": [ - 3456, + 3504, "[player_sanctions_order_by!]" ], "where": [ - 3446 + 3494 ] } ], "player_sanctions_by_pk": [ - 3437, + 3485, { "created_at": [ - 4324, + 4376, "timestamptz!" ], "id": [ - 4762, + 4921, "uuid!" ] } ], "player_sanctions_stream": [ - 3437, + 3485, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3466, + 3514, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3446 + 3494 ] } ], "player_season_stats": [ - 3478, + 3526, { "distinct_on": [ - 3509, + 3557, "[player_season_stats_select_column!]" ], "limit": [ @@ -162423,19 +166156,19 @@ export default { 38 ], "order_by": [ - 3507, + 3555, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3545 ] } ], "player_season_stats_aggregate": [ - 3479, + 3527, { "distinct_on": [ - 3509, + 3557, "[player_season_stats_select_column!]" ], "limit": [ @@ -162445,48 +166178,48 @@ export default { 38 ], "order_by": [ - 3507, + 3555, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3545 ] } ], "player_season_stats_by_pk": [ - 3478, + 3526, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4762, + 4921, "uuid!" ] } ], "player_season_stats_stream": [ - 3478, + 3526, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3525, + 3573, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3497 + 3545 ] } ], "player_stats": [ - 3537, + 3585, { "distinct_on": [ - 3552, + 3600, "[player_stats_select_column!]" ], "limit": [ @@ -162496,19 +166229,19 @@ export default { 38 ], "order_by": [ - 3550, + 3598, "[player_stats_order_by!]" ], "where": [ - 3541 + 3589 ] } ], "player_stats_aggregate": [ - 3538, + 3586, { "distinct_on": [ - 3552, + 3600, "[player_stats_select_column!]" ], "limit": [ @@ -162518,16 +166251,16 @@ export default { 38 ], "order_by": [ - 3550, + 3598, "[player_stats_order_by!]" ], "where": [ - 3541 + 3589 ] } ], "player_stats_by_pk": [ - 3537, + 3585, { "player_steam_id": [ 180, @@ -162536,26 +166269,26 @@ export default { } ], "player_stats_stream": [ - 3537, + 3585, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3557, + 3605, "[player_stats_stream_cursor_input]!" ], "where": [ - 3541 + 3589 ] } ], "player_steam_bot_friend": [ - 3565, + 3613, { "distinct_on": [ - 3584, + 3632, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -162565,19 +166298,19 @@ export default { 38 ], "order_by": [ - 3581, + 3629, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3570 + 3618 ] } ], "player_steam_bot_friend_aggregate": [ - 3566, + 3614, { "distinct_on": [ - 3584, + 3632, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -162587,16 +166320,16 @@ export default { 38 ], "order_by": [ - 3581, + 3629, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3570 + 3618 ] } ], "player_steam_bot_friend_by_pk": [ - 3565, + 3613, { "steam_id": [ 180, @@ -162605,26 +166338,26 @@ export default { } ], "player_steam_bot_friend_stream": [ - 3565, + 3613, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3589, + 3637, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3570 + 3618 ] } ], "player_steam_match_auth": [ - 3597, + 3645, { "distinct_on": [ - 3611, + 3659, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -162634,19 +166367,19 @@ export default { 38 ], "order_by": [ - 3609, + 3657, "[player_steam_match_auth_order_by!]" ], "where": [ - 3601 + 3649 ] } ], "player_steam_match_auth_aggregate": [ - 3598, + 3646, { "distinct_on": [ - 3611, + 3659, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -162656,16 +166389,16 @@ export default { 38 ], "order_by": [ - 3609, + 3657, "[player_steam_match_auth_order_by!]" ], "where": [ - 3601 + 3649 ] } ], "player_steam_match_auth_by_pk": [ - 3597, + 3645, { "steam_id": [ 180, @@ -162674,26 +166407,26 @@ export default { } ], "player_steam_match_auth_stream": [ - 3597, + 3645, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3616, + 3664, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3601 + 3649 ] } ], "player_unused_utility": [ - 3624, + 3672, { "distinct_on": [ - 3645, + 3693, "[player_unused_utility_select_column!]" ], "limit": [ @@ -162703,19 +166436,19 @@ export default { 38 ], "order_by": [ - 3643, + 3691, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3681 ] } ], "player_unused_utility_aggregate": [ - 3625, + 3673, { "distinct_on": [ - 3645, + 3693, "[player_unused_utility_select_column!]" ], "limit": [ @@ -162725,19 +166458,19 @@ export default { 38 ], "order_by": [ - 3643, + 3691, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3681 ] } ], "player_unused_utility_by_pk": [ - 3624, + 3672, { "match_map_id": [ - 4762, + 4921, "uuid!" ], "player_steam_id": [ @@ -162747,26 +166480,26 @@ export default { } ], "player_unused_utility_stream": [ - 3624, + 3672, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3653, + 3701, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3633 + 3681 ] } ], "player_utility": [ - 3665, + 3713, { "distinct_on": [ - 3686, + 3734, "[player_utility_select_column!]" ], "limit": [ @@ -162776,19 +166509,19 @@ export default { 38 ], "order_by": [ - 3684, + 3732, "[player_utility_order_by!]" ], "where": [ - 3674 + 3722 ] } ], "player_utility_aggregate": [ - 3666, + 3714, { "distinct_on": [ - 3686, + 3734, "[player_utility_select_column!]" ], "limit": [ @@ -162798,52 +166531,52 @@ export default { 38 ], "order_by": [ - 3684, + 3732, "[player_utility_order_by!]" ], "where": [ - 3674 + 3722 ] } ], "player_utility_by_pk": [ - 3665, + 3713, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4762, + 4921, "uuid!" ], "time": [ - 4324, + 4376, "timestamptz!" ] } ], "player_utility_stream": [ - 3665, + 3713, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3694, + 3742, "[player_utility_stream_cursor_input]!" ], "where": [ - 3674 + 3722 ] } ], "player_weapon_stats_v": [ - 3706, + 3754, { "distinct_on": [ - 3722, + 3770, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -162853,19 +166586,19 @@ export default { 38 ], "order_by": [ - 3721, + 3769, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3715 + 3763 ] } ], "player_weapon_stats_v_aggregate": [ - 3707, + 3755, { "distinct_on": [ - 3722, + 3770, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -162875,35 +166608,35 @@ export default { 38 ], "order_by": [ - 3721, + 3769, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3715 + 3763 ] } ], "player_weapon_stats_v_stream": [ - 3706, + 3754, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3729, + 3777, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 3715 + 3763 ] } ], "players": [ - 3739, + 3787, { "distinct_on": [ - 3754, + 3802, "[players_select_column!]" ], "limit": [ @@ -162913,19 +166646,19 @@ export default { 38 ], "order_by": [ - 3752, + 3800, "[players_order_by!]" ], "where": [ - 3743 + 3791 ] } ], "players_aggregate": [ - 3740, + 3788, { "distinct_on": [ - 3754, + 3802, "[players_select_column!]" ], "limit": [ @@ -162935,16 +166668,16 @@ export default { 38 ], "order_by": [ - 3752, + 3800, "[players_order_by!]" ], "where": [ - 3743 + 3791 ] } ], "players_by_pk": [ - 3739, + 3787, { "steam_id": [ 180, @@ -162953,26 +166686,26 @@ export default { } ], "players_stream": [ - 3739, + 3787, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3759, + 3807, "[players_stream_cursor_input]!" ], "where": [ - 3743 + 3791 ] } ], "plugin_versions": [ - 3767, + 3815, { "distinct_on": [ - 3781, + 3829, "[plugin_versions_select_column!]" ], "limit": [ @@ -162982,19 +166715,19 @@ export default { 38 ], "order_by": [ - 3779, + 3827, "[plugin_versions_order_by!]" ], "where": [ - 3771 + 3819 ] } ], "plugin_versions_aggregate": [ - 3768, + 3816, { "distinct_on": [ - 3781, + 3829, "[plugin_versions_select_column!]" ], "limit": [ @@ -163004,19 +166737,19 @@ export default { 38 ], "order_by": [ - 3779, + 3827, "[plugin_versions_order_by!]" ], "where": [ - 3771 + 3819 ] } ], "plugin_versions_by_pk": [ - 3767, + 3815, { "runtime": [ - 941, + 968, "e_plugin_runtimes_enum!" ], "version": [ @@ -163026,26 +166759,26 @@ export default { } ], "plugin_versions_stream": [ - 3767, + 3815, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3786, + 3834, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 3771 + 3819 ] } ], "seasons": [ - 3798, + 3846, { "distinct_on": [ - 3813, + 3861, "[seasons_select_column!]" ], "limit": [ @@ -163055,19 +166788,19 @@ export default { 38 ], "order_by": [ - 3811, + 3859, "[seasons_order_by!]" ], "where": [ - 3802 + 3850 ] } ], "seasons_aggregate": [ - 3799, + 3847, { "distinct_on": [ - 3813, + 3861, "[seasons_select_column!]" ], "limit": [ @@ -163077,44 +166810,44 @@ export default { 38 ], "order_by": [ - 3811, + 3859, "[seasons_order_by!]" ], "where": [ - 3802 + 3850 ] } ], "seasons_by_pk": [ - 3798, + 3846, { "id": [ - 4762, + 4921, "uuid!" ] } ], "seasons_stream": [ - 3798, + 3846, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3818, + 3866, "[seasons_stream_cursor_input]!" ], "where": [ - 3802 + 3850 ] } ], "server_regions": [ - 3826, + 3874, { "distinct_on": [ - 3840, + 3888, "[server_regions_select_column!]" ], "limit": [ @@ -163124,19 +166857,19 @@ export default { 38 ], "order_by": [ - 3838, + 3886, "[server_regions_order_by!]" ], "where": [ - 3830 + 3878 ] } ], "server_regions_aggregate": [ - 3827, + 3875, { "distinct_on": [ - 3840, + 3888, "[server_regions_select_column!]" ], "limit": [ @@ -163146,16 +166879,16 @@ export default { 38 ], "order_by": [ - 3838, + 3886, "[server_regions_order_by!]" ], "where": [ - 3830 + 3878 ] } ], "server_regions_by_pk": [ - 3826, + 3874, { "value": [ 78, @@ -163164,26 +166897,26 @@ export default { } ], "server_regions_stream": [ - 3826, + 3874, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3845, + 3893, "[server_regions_stream_cursor_input]!" ], "where": [ - 3830 + 3878 ] } ], "servers": [ - 3853, + 3901, { "distinct_on": [ - 3877, + 3925, "[servers_select_column!]" ], "limit": [ @@ -163193,19 +166926,19 @@ export default { 38 ], "order_by": [ - 3875, + 3923, "[servers_order_by!]" ], "where": [ - 3864 + 3912 ] } ], "servers_aggregate": [ - 3854, + 3902, { "distinct_on": [ - 3877, + 3925, "[servers_select_column!]" ], "limit": [ @@ -163215,44 +166948,44 @@ export default { 38 ], "order_by": [ - 3875, + 3923, "[servers_order_by!]" ], "where": [ - 3864 + 3912 ] } ], "servers_by_pk": [ - 3853, + 3901, { "id": [ - 4762, + 4921, "uuid!" ] } ], "servers_stream": [ - 3853, + 3901, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3887, + 3935, "[servers_stream_cursor_input]!" ], "where": [ - 3864 + 3912 ] } ], "settings": [ - 3899, + 3947, { "distinct_on": [ - 3911, + 3959, "[settings_select_column!]" ], "limit": [ @@ -163262,19 +166995,19 @@ export default { 38 ], "order_by": [ - 3909, + 3957, "[settings_order_by!]" ], "where": [ - 3902 + 3950 ] } ], "settings_aggregate": [ - 3900, + 3948, { "distinct_on": [ - 3911, + 3959, "[settings_select_column!]" ], "limit": [ @@ -163284,16 +167017,16 @@ export default { 38 ], "order_by": [ - 3909, + 3957, "[settings_order_by!]" ], "where": [ - 3902 + 3950 ] } ], "settings_by_pk": [ - 3899, + 3947, { "name": [ 78, @@ -163302,26 +167035,26 @@ export default { } ], "settings_stream": [ - 3899, + 3947, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3913, + 3961, "[settings_stream_cursor_input]!" ], "where": [ - 3902 + 3950 ] } ], "steam_account_claims": [ - 3919, + 3967, { "distinct_on": [ - 3937, + 3985, "[steam_account_claims_select_column!]" ], "limit": [ @@ -163331,19 +167064,19 @@ export default { 38 ], "order_by": [ - 3935, + 3983, "[steam_account_claims_order_by!]" ], "where": [ - 3926 + 3974 ] } ], "steam_account_claims_aggregate": [ - 3920, + 3968, { "distinct_on": [ - 3937, + 3985, "[steam_account_claims_select_column!]" ], "limit": [ @@ -163353,44 +167086,44 @@ export default { 38 ], "order_by": [ - 3935, + 3983, "[steam_account_claims_order_by!]" ], "where": [ - 3926 + 3974 ] } ], "steam_account_claims_by_pk": [ - 3919, + 3967, { "id": [ - 4762, + 4921, "uuid!" ] } ], "steam_account_claims_stream": [ - 3919, + 3967, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3939, + 3987, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 3926 + 3974 ] } ], "steam_accounts": [ - 3943, + 3991, { "distinct_on": [ - 3958, + 4006, "[steam_accounts_select_column!]" ], "limit": [ @@ -163400,19 +167133,19 @@ export default { 38 ], "order_by": [ - 3956, + 4004, "[steam_accounts_order_by!]" ], "where": [ - 3947 + 3995 ] } ], "steam_accounts_aggregate": [ - 3944, + 3992, { "distinct_on": [ - 3958, + 4006, "[steam_accounts_select_column!]" ], "limit": [ @@ -163422,44 +167155,44 @@ export default { 38 ], "order_by": [ - 3956, + 4004, "[steam_accounts_order_by!]" ], "where": [ - 3947 + 3995 ] } ], "steam_accounts_by_pk": [ - 3943, + 3991, { "id": [ - 4762, + 4921, "uuid!" ] } ], "steam_accounts_stream": [ - 3943, + 3991, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3963, + 4011, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 3947 + 3995 ] } ], "system_alerts": [ - 3971, + 4019, { "distinct_on": [ - 3985, + 4033, "[system_alerts_select_column!]" ], "limit": [ @@ -163469,19 +167202,19 @@ export default { 38 ], "order_by": [ - 3983, + 4031, "[system_alerts_order_by!]" ], "where": [ - 3975 + 4023 ] } ], "system_alerts_aggregate": [ - 3972, + 4020, { "distinct_on": [ - 3985, + 4033, "[system_alerts_select_column!]" ], "limit": [ @@ -163491,44 +167224,44 @@ export default { 38 ], "order_by": [ - 3983, + 4031, "[system_alerts_order_by!]" ], "where": [ - 3975 + 4023 ] } ], "system_alerts_by_pk": [ - 3971, + 4019, { "id": [ - 4762, + 4921, "uuid!" ] } ], "system_alerts_stream": [ - 3971, + 4019, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3990, + 4038, "[system_alerts_stream_cursor_input]!" ], "where": [ - 3975 + 4023 ] } ], "team_invites": [ - 3998, + 4046, { "distinct_on": [ - 4019, + 4067, "[team_invites_select_column!]" ], "limit": [ @@ -163538,19 +167271,19 @@ export default { 38 ], "order_by": [ - 4017, + 4065, "[team_invites_order_by!]" ], "where": [ - 4007 + 4055 ] } ], "team_invites_aggregate": [ - 3999, + 4047, { "distinct_on": [ - 4019, + 4067, "[team_invites_select_column!]" ], "limit": [ @@ -163560,44 +167293,44 @@ export default { 38 ], "order_by": [ - 4017, + 4065, "[team_invites_order_by!]" ], "where": [ - 4007 + 4055 ] } ], "team_invites_by_pk": [ - 3998, + 4046, { "id": [ - 4762, + 4921, "uuid!" ] } ], "team_invites_stream": [ - 3998, + 4046, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4027, + 4075, "[team_invites_stream_cursor_input]!" ], "where": [ - 4007 + 4055 ] } ], "team_roster": [ - 4039, + 4087, { "distinct_on": [ - 4062, + 4110, "[team_roster_select_column!]" ], "limit": [ @@ -163607,19 +167340,19 @@ export default { 38 ], "order_by": [ - 4060, + 4108, "[team_roster_order_by!]" ], "where": [ - 4050 + 4098 ] } ], "team_roster_aggregate": [ - 4040, + 4088, { "distinct_on": [ - 4062, + 4110, "[team_roster_select_column!]" ], "limit": [ @@ -163629,48 +167362,48 @@ export default { 38 ], "order_by": [ - 4060, + 4108, "[team_roster_order_by!]" ], "where": [ - 4050 + 4098 ] } ], "team_roster_by_pk": [ - 4039, + 4087, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4762, + 4921, "uuid!" ] } ], "team_roster_stream": [ - 4039, + 4087, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4072, + 4120, "[team_roster_stream_cursor_input]!" ], "where": [ - 4050 + 4098 ] } ], "team_scrim_alerts": [ - 4084, + 4132, { "distinct_on": [ - 4098, + 4146, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -163680,19 +167413,19 @@ export default { 38 ], "order_by": [ - 4096, + 4144, "[team_scrim_alerts_order_by!]" ], "where": [ - 4088 + 4136 ] } ], "team_scrim_alerts_aggregate": [ - 4085, + 4133, { "distinct_on": [ - 4098, + 4146, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -163702,44 +167435,44 @@ export default { 38 ], "order_by": [ - 4096, + 4144, "[team_scrim_alerts_order_by!]" ], "where": [ - 4088 + 4136 ] } ], "team_scrim_alerts_by_pk": [ - 4084, + 4132, { "id": [ - 4762, + 4921, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 4084, + 4132, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4103, + 4151, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 4088 + 4136 ] } ], "team_scrim_availability": [ - 4111, + 4159, { "distinct_on": [ - 4131, + 4179, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -163749,19 +167482,19 @@ export default { 38 ], "order_by": [ - 4129, + 4177, "[team_scrim_availability_order_by!]" ], "where": [ - 4120 + 4168 ] } ], "team_scrim_availability_aggregate": [ - 4112, + 4160, { "distinct_on": [ - 4131, + 4179, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -163771,44 +167504,44 @@ export default { 38 ], "order_by": [ - 4129, + 4177, "[team_scrim_availability_order_by!]" ], "where": [ - 4120 + 4168 ] } ], "team_scrim_availability_by_pk": [ - 4111, + 4159, { "id": [ - 4762, + 4921, "uuid!" ] } ], "team_scrim_availability_stream": [ - 4111, + 4159, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4135, + 4183, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 4120 + 4168 ] } ], "team_scrim_request_proposals": [ - 4139, + 4187, { "distinct_on": [ - 4160, + 4208, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -163818,19 +167551,19 @@ export default { 38 ], "order_by": [ - 4158, + 4206, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4148 + 4196 ] } ], "team_scrim_request_proposals_aggregate": [ - 4140, + 4188, { "distinct_on": [ - 4160, + 4208, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -163840,44 +167573,44 @@ export default { 38 ], "order_by": [ - 4158, + 4206, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4148 + 4196 ] } ], "team_scrim_request_proposals_by_pk": [ - 4139, + 4187, { "id": [ - 4762, + 4921, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 4139, + 4187, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4168, + 4216, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 4148 + 4196 ] } ], "team_scrim_requests": [ - 4180, + 4228, { "distinct_on": [ - 4204, + 4252, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -163887,19 +167620,19 @@ export default { 38 ], "order_by": [ - 4202, + 4250, "[team_scrim_requests_order_by!]" ], "where": [ - 4191 + 4239 ] } ], "team_scrim_requests_aggregate": [ - 4181, + 4229, { "distinct_on": [ - 4204, + 4252, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -163909,44 +167642,44 @@ export default { 38 ], "order_by": [ - 4202, + 4250, "[team_scrim_requests_order_by!]" ], "where": [ - 4191 + 4239 ] } ], "team_scrim_requests_by_pk": [ - 4180, + 4228, { "id": [ - 4762, + 4921, "uuid!" ] } ], "team_scrim_requests_stream": [ - 4180, + 4228, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4214, + 4262, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 4191 + 4239 ] } ], "team_scrim_settings": [ - 4226, + 4274, { "distinct_on": [ - 4241, + 4289, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -163956,19 +167689,19 @@ export default { 38 ], "order_by": [ - 4239, + 4287, "[team_scrim_settings_order_by!]" ], "where": [ - 4230 + 4278 ] } ], "team_scrim_settings_aggregate": [ - 4227, + 4275, { "distinct_on": [ - 4241, + 4289, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -163978,44 +167711,44 @@ export default { 38 ], "order_by": [ - 4239, + 4287, "[team_scrim_settings_order_by!]" ], "where": [ - 4230 + 4278 ] } ], "team_scrim_settings_by_pk": [ - 4226, + 4274, { "id": [ - 4762, + 4921, "uuid!" ] } ], "team_scrim_settings_stream": [ - 4226, + 4274, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4246, + 4294, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 4230 + 4278 ] } ], "team_suggestions": [ - 4254, + 4302, { "distinct_on": [ - 4268, + 4316, "[team_suggestions_select_column!]" ], "limit": [ @@ -164025,19 +167758,19 @@ export default { 38 ], "order_by": [ - 4266, + 4314, "[team_suggestions_order_by!]" ], "where": [ - 4258 + 4306 ] } ], "team_suggestions_aggregate": [ - 4255, + 4303, { "distinct_on": [ - 4268, + 4316, "[team_suggestions_select_column!]" ], "limit": [ @@ -164047,44 +167780,44 @@ export default { 38 ], "order_by": [ - 4266, + 4314, "[team_suggestions_order_by!]" ], "where": [ - 4258 + 4306 ] } ], "team_suggestions_by_pk": [ - 4254, + 4302, { "id": [ - 4762, + 4921, "uuid!" ] } ], "team_suggestions_stream": [ - 4254, + 4302, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4273, + 4321, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 4258 + 4306 ] } ], "teams": [ - 4281, + 4329, { "distinct_on": [ - 4303, + 4353, "[teams_select_column!]" ], "limit": [ @@ -164094,19 +167827,19 @@ export default { 38 ], "order_by": [ - 4301, + 4351, "[teams_order_by!]" ], "where": [ - 4290 + 4340 ] } ], "teams_aggregate": [ - 4282, + 4330, { "distinct_on": [ - 4303, + 4353, "[teams_select_column!]" ], "limit": [ @@ -164116,44 +167849,44 @@ export default { 38 ], "order_by": [ - 4301, + 4351, "[teams_order_by!]" ], "where": [ - 4290 + 4340 ] } ], "teams_by_pk": [ - 4281, + 4329, { "id": [ - 4762, + 4921, "uuid!" ] } ], "teams_stream": [ - 4281, + 4329, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4311, + 4363, "[teams_stream_cursor_input]!" ], "where": [ - 4290 + 4340 ] } ], "tournament_brackets": [ - 4326, + 4378, { "distinct_on": [ - 4350, + 4402, "[tournament_brackets_select_column!]" ], "limit": [ @@ -164163,19 +167896,19 @@ export default { 38 ], "order_by": [ - 4348, + 4400, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4389 ] } ], "tournament_brackets_aggregate": [ - 4327, + 4379, { "distinct_on": [ - 4350, + 4402, "[tournament_brackets_select_column!]" ], "limit": [ @@ -164185,44 +167918,190 @@ export default { 38 ], "order_by": [ - 4348, + 4400, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4389 ] } ], "tournament_brackets_by_pk": [ - 4326, + 4378, { "id": [ - 4762, + 4921, "uuid!" ] } ], "tournament_brackets_stream": [ - 4326, + 4378, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4360, + 4412, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4337 + 4389 + ] + } + ], + "tournament_categories": [ + 4424, + { + "distinct_on": [ + 4442, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4440, + "[tournament_categories_order_by!]" + ], + "where": [ + 4431 + ] + } + ], + "tournament_categories_aggregate": [ + 4425, + { + "distinct_on": [ + 4442, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4440, + "[tournament_categories_order_by!]" + ], + "where": [ + 4431 + ] + } + ], + "tournament_categories_by_pk": [ + 4424, + { + "category": [ + 1170, + "e_tournament_categories_enum!" + ], + "tournament_id": [ + 4921, + "uuid!" + ] + } + ], + "tournament_categories_stream": [ + 4424, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 4444, + "[tournament_categories_stream_cursor_input]!" + ], + "where": [ + 4431 + ] + } + ], + "tournament_organizer_teams": [ + 4448, + { + "distinct_on": [ + 4466, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4464, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 4455 + ] + } + ], + "tournament_organizer_teams_aggregate": [ + 4449, + { + "distinct_on": [ + 4466, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4464, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 4455 + ] + } + ], + "tournament_organizer_teams_by_pk": [ + 4448, + { + "team_id": [ + 4921, + "uuid!" + ], + "tournament_id": [ + 4921, + "uuid!" + ] + } + ], + "tournament_organizer_teams_stream": [ + 4448, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 4468, + "[tournament_organizer_teams_stream_cursor_input]!" + ], + "where": [ + 4455 ] } ], "tournament_organizers": [ - 4372, + 4472, { "distinct_on": [ - 4393, + 4493, "[tournament_organizers_select_column!]" ], "limit": [ @@ -164232,19 +168111,19 @@ export default { 38 ], "order_by": [ - 4391, + 4491, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4481 ] } ], "tournament_organizers_aggregate": [ - 4373, + 4473, { "distinct_on": [ - 4393, + 4493, "[tournament_organizers_select_column!]" ], "limit": [ @@ -164254,48 +168133,117 @@ export default { 38 ], "order_by": [ - 4391, + 4491, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4481 ] } ], "tournament_organizers_by_pk": [ - 4372, + 4472, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4762, + 4921, "uuid!" ] } ], "tournament_organizers_stream": [ - 4372, + 4472, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4401, + 4501, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4381 + 4481 + ] + } + ], + "tournament_prizes": [ + 4513, + { + "distinct_on": [ + 4534, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4532, + "[tournament_prizes_order_by!]" + ], + "where": [ + 4522 + ] + } + ], + "tournament_prizes_aggregate": [ + 4514, + { + "distinct_on": [ + 4534, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4532, + "[tournament_prizes_order_by!]" + ], + "where": [ + 4522 + ] + } + ], + "tournament_prizes_by_pk": [ + 4513, + { + "id": [ + 4921, + "uuid!" + ] + } + ], + "tournament_prizes_stream": [ + 4513, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 4542, + "[tournament_prizes_stream_cursor_input]!" + ], + "where": [ + 4522 ] } ], "tournament_stage_windows": [ - 4413, + 4554, { "distinct_on": [ - 4434, + 4575, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -164305,19 +168253,19 @@ export default { 38 ], "order_by": [ - 4432, + 4573, "[tournament_stage_windows_order_by!]" ], "where": [ - 4422 + 4563 ] } ], "tournament_stage_windows_aggregate": [ - 4414, + 4555, { "distinct_on": [ - 4434, + 4575, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -164327,44 +168275,44 @@ export default { 38 ], "order_by": [ - 4432, + 4573, "[tournament_stage_windows_order_by!]" ], "where": [ - 4422 + 4563 ] } ], "tournament_stage_windows_by_pk": [ - 4413, + 4554, { "id": [ - 4762, + 4921, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4413, + 4554, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4442, + 4583, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4422 + 4563 ] } ], "tournament_stages": [ - 4454, + 4595, { "distinct_on": [ - 4483, + 4624, "[tournament_stages_select_column!]" ], "limit": [ @@ -164374,19 +168322,19 @@ export default { 38 ], "order_by": [ - 4480, + 4621, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4607 ] } ], "tournament_stages_aggregate": [ - 4455, + 4596, { "distinct_on": [ - 4483, + 4624, "[tournament_stages_select_column!]" ], "limit": [ @@ -164396,44 +168344,44 @@ export default { 38 ], "order_by": [ - 4480, + 4621, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4607 ] } ], "tournament_stages_by_pk": [ - 4454, + 4595, { "id": [ - 4762, + 4921, "uuid!" ] } ], "tournament_stages_stream": [ - 4454, + 4595, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4493, + 4634, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4466 + 4607 ] } ], "tournament_team_invites": [ - 4505, + 4646, { "distinct_on": [ - 4526, + 4667, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -164443,19 +168391,19 @@ export default { 38 ], "order_by": [ - 4524, + 4665, "[tournament_team_invites_order_by!]" ], "where": [ - 4514 + 4655 ] } ], "tournament_team_invites_aggregate": [ - 4506, + 4647, { "distinct_on": [ - 4526, + 4667, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -164465,44 +168413,44 @@ export default { 38 ], "order_by": [ - 4524, + 4665, "[tournament_team_invites_order_by!]" ], "where": [ - 4514 + 4655 ] } ], "tournament_team_invites_by_pk": [ - 4505, + 4646, { "id": [ - 4762, + 4921, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4505, + 4646, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4534, + 4675, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4514 + 4655 ] } ], "tournament_team_roster": [ - 4546, + 4687, { "distinct_on": [ - 4567, + 4708, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -164512,19 +168460,19 @@ export default { 38 ], "order_by": [ - 4565, + 4706, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4696 ] } ], "tournament_team_roster_aggregate": [ - 4547, + 4688, { "distinct_on": [ - 4567, + 4708, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -164534,48 +168482,48 @@ export default { 38 ], "order_by": [ - 4565, + 4706, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4696 ] } ], "tournament_team_roster_by_pk": [ - 4546, + 4687, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4762, + 4921, "uuid!" ] } ], "tournament_team_roster_stream": [ - 4546, + 4687, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4575, + 4716, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 4555 + 4696 ] } ], "tournament_teams": [ - 4587, + 4728, { "distinct_on": [ - 4609, + 4750, "[tournament_teams_select_column!]" ], "limit": [ @@ -164585,19 +168533,19 @@ export default { 38 ], "order_by": [ - 4607, + 4748, "[tournament_teams_order_by!]" ], "where": [ - 4596 + 4737 ] } ], "tournament_teams_aggregate": [ - 4588, + 4729, { "distinct_on": [ - 4609, + 4750, "[tournament_teams_select_column!]" ], "limit": [ @@ -164607,44 +168555,44 @@ export default { 38 ], "order_by": [ - 4607, + 4748, "[tournament_teams_order_by!]" ], "where": [ - 4596 + 4737 ] } ], "tournament_teams_by_pk": [ - 4587, + 4728, { "id": [ - 4762, + 4921, "uuid!" ] } ], "tournament_teams_stream": [ - 4587, + 4728, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4617, + 4758, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 4596 + 4737 ] } ], "tournament_trophies": [ - 4629, + 4770, { "distinct_on": [ - 4652, + 4793, "[tournament_trophies_select_column!]" ], "limit": [ @@ -164654,19 +168602,19 @@ export default { 38 ], "order_by": [ - 4650, + 4791, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4781 ] } ], "tournament_trophies_aggregate": [ - 4630, + 4771, { "distinct_on": [ - 4652, + 4793, "[tournament_trophies_select_column!]" ], "limit": [ @@ -164676,44 +168624,44 @@ export default { 38 ], "order_by": [ - 4650, + 4791, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4781 ] } ], "tournament_trophies_by_pk": [ - 4629, + 4770, { "id": [ - 4762, + 4921, "uuid!" ] } ], "tournament_trophies_stream": [ - 4629, + 4770, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4662, + 4803, "[tournament_trophies_stream_cursor_input]!" ], "where": [ - 4640 + 4781 ] } ], "tournament_trophy_configs": [ - 4674, + 4815, { "distinct_on": [ - 4696, + 4837, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -164723,19 +168671,19 @@ export default { 38 ], "order_by": [ - 4694, + 4835, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4683 + 4824 ] } ], "tournament_trophy_configs_aggregate": [ - 4675, + 4816, { "distinct_on": [ - 4696, + 4837, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -164745,44 +168693,44 @@ export default { 38 ], "order_by": [ - 4694, + 4835, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4683 + 4824 ] } ], "tournament_trophy_configs_by_pk": [ - 4674, + 4815, { "id": [ - 4762, + 4921, "uuid!" ] } ], "tournament_trophy_configs_stream": [ - 4674, + 4815, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4704, + 4845, "[tournament_trophy_configs_stream_cursor_input]!" ], "where": [ - 4683 + 4824 ] } ], "tournaments": [ - 4716, + 4857, { "distinct_on": [ - 4740, + 4891, "[tournaments_select_column!]" ], "limit": [ @@ -164792,19 +168740,19 @@ export default { 38 ], "order_by": [ - 4738, + 4889, "[tournaments_order_by!]" ], "where": [ - 4727 + 4878 ] } ], "tournaments_aggregate": [ - 4717, + 4858, { "distinct_on": [ - 4740, + 4891, "[tournaments_select_column!]" ], "limit": [ @@ -164814,44 +168762,44 @@ export default { 38 ], "order_by": [ - 4738, + 4889, "[tournaments_order_by!]" ], "where": [ - 4727 + 4878 ] } ], "tournaments_by_pk": [ - 4716, + 4857, { "id": [ - 4762, + 4921, "uuid!" ] } ], "tournaments_stream": [ - 4716, + 4857, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4750, + 4909, "[tournaments_stream_cursor_input]!" ], "where": [ - 4727 + 4878 ] } ], "v_event_player_stats": [ - 4765, + 4924, { "distinct_on": [ - 4791, + 4950, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -164861,19 +168809,19 @@ export default { 38 ], "order_by": [ - 4790, + 4949, "[v_event_player_stats_order_by!]" ], "where": [ - 4784 + 4943 ] } ], "v_event_player_stats_aggregate": [ - 4766, + 4925, { "distinct_on": [ - 4791, + 4950, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -164883,35 +168831,35 @@ export default { 38 ], "order_by": [ - 4790, + 4949, "[v_event_player_stats_order_by!]" ], "where": [ - 4784 + 4943 ] } ], "v_event_player_stats_stream": [ - 4765, + 4924, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4806, + 4965, "[v_event_player_stats_stream_cursor_input]!" ], "where": [ - 4784 + 4943 ] } ], "v_gpu_pool_status": [ - 4816, + 4975, { "distinct_on": [ - 4824, + 4983, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -164921,19 +168869,19 @@ export default { 38 ], "order_by": [ - 4823, + 4982, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4820 + 4979 ] } ], "v_gpu_pool_status_aggregate": [ - 4817, + 4976, { "distinct_on": [ - 4824, + 4983, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -164943,35 +168891,35 @@ export default { 38 ], "order_by": [ - 4823, + 4982, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4820 + 4979 ] } ], "v_gpu_pool_status_stream": [ - 4816, + 4975, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4828, + 4987, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 4820 + 4979 ] } ], "v_league_division_standings": [ - 4834, + 4993, { "distinct_on": [ - 4850, + 5009, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -164981,19 +168929,19 @@ export default { 38 ], "order_by": [ - 4849, + 5008, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 5002 ] } ], "v_league_division_standings_aggregate": [ - 4835, + 4994, { "distinct_on": [ - 4850, + 5009, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -165003,35 +168951,35 @@ export default { 38 ], "order_by": [ - 4849, + 5008, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 5002 ] } ], "v_league_division_standings_stream": [ - 4834, + 4993, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4857, + 5016, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 4843 + 5002 ] } ], "v_league_season_player_stats": [ - 4867, + 5026, { "distinct_on": [ - 4893, + 5052, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -165041,19 +168989,19 @@ export default { 38 ], "order_by": [ - 4892, + 5051, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4886 + 5045 ] } ], "v_league_season_player_stats_aggregate": [ - 4868, + 5027, { "distinct_on": [ - 4893, + 5052, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -165063,35 +169011,35 @@ export default { 38 ], "order_by": [ - 4892, + 5051, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4886 + 5045 ] } ], "v_league_season_player_stats_stream": [ - 4867, + 5026, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4908, + 5067, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 4886 + 5045 ] } ], "v_match_captains": [ - 4918, + 5077, { "distinct_on": [ - 4930, + 5089, "[v_match_captains_select_column!]" ], "limit": [ @@ -165101,19 +169049,19 @@ export default { 38 ], "order_by": [ - 4929, + 5088, "[v_match_captains_order_by!]" ], "where": [ - 4922 + 5081 ] } ], "v_match_captains_aggregate": [ - 4919, + 5078, { "distinct_on": [ - 4930, + 5089, "[v_match_captains_select_column!]" ], "limit": [ @@ -165123,35 +169071,35 @@ export default { 38 ], "order_by": [ - 4929, + 5088, "[v_match_captains_order_by!]" ], "where": [ - 4922 + 5081 ] } ], "v_match_captains_stream": [ - 4918, + 5077, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4935, + 5094, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 4922 + 5081 ] } ], "v_match_clutches": [ - 4942, + 5101, { "distinct_on": [ - 4958, + 5117, "[v_match_clutches_select_column!]" ], "limit": [ @@ -165161,19 +169109,19 @@ export default { 38 ], "order_by": [ - 4957, + 5116, "[v_match_clutches_order_by!]" ], "where": [ - 4951 + 5110 ] } ], "v_match_clutches_aggregate": [ - 4943, + 5102, { "distinct_on": [ - 4958, + 5117, "[v_match_clutches_select_column!]" ], "limit": [ @@ -165183,35 +169131,35 @@ export default { 38 ], "order_by": [ - 4957, + 5116, "[v_match_clutches_order_by!]" ], "where": [ - 4951 + 5110 ] } ], "v_match_clutches_stream": [ - 4942, + 5101, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4965, + 5124, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 4951 + 5110 ] } ], "v_match_kill_pairs": [ - 4975, + 5134, { "distinct_on": [ - 4983, + 5142, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -165221,19 +169169,19 @@ export default { 38 ], "order_by": [ - 4982, + 5141, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4979 + 5138 ] } ], "v_match_kill_pairs_aggregate": [ - 4976, + 5135, { "distinct_on": [ - 4983, + 5142, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -165243,35 +169191,35 @@ export default { 38 ], "order_by": [ - 4982, + 5141, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4979 + 5138 ] } ], "v_match_kill_pairs_stream": [ - 4975, + 5134, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4987, + 5146, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 4979 + 5138 ] } ], "v_match_lineup_buy_types": [ - 4993, + 5152, { "distinct_on": [ - 5001, + 5160, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -165281,19 +169229,19 @@ export default { 38 ], "order_by": [ - 5000, + 5159, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4997 + 5156 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4994, + 5153, { "distinct_on": [ - 5001, + 5160, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -165303,35 +169251,35 @@ export default { 38 ], "order_by": [ - 5000, + 5159, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4997 + 5156 ] } ], "v_match_lineup_buy_types_stream": [ - 4993, + 5152, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5005, + 5164, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 4997 + 5156 ] } ], "v_match_lineup_map_stats": [ - 5011, + 5170, { "distinct_on": [ - 5019, + 5178, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -165341,19 +169289,19 @@ export default { 38 ], "order_by": [ - 5018, + 5177, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5015 + 5174 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5012, + 5171, { "distinct_on": [ - 5019, + 5178, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -165363,35 +169311,35 @@ export default { 38 ], "order_by": [ - 5018, + 5177, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5015 + 5174 ] } ], "v_match_lineup_map_stats_stream": [ - 5011, + 5170, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5023, + 5182, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 5015 + 5174 ] } ], "v_match_map_backup_rounds": [ - 5029, + 5188, { "distinct_on": [ - 5040, + 5199, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -165401,19 +169349,19 @@ export default { 38 ], "order_by": [ - 5039, + 5198, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5033 + 5192 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5030, + 5189, { "distinct_on": [ - 5040, + 5199, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -165423,35 +169371,35 @@ export default { 38 ], "order_by": [ - 5039, + 5198, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5033 + 5192 ] } ], "v_match_map_backup_rounds_stream": [ - 5029, + 5188, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5045, + 5204, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 5033 + 5192 ] } ], "v_match_player_buy_types": [ - 5052, + 5211, { "distinct_on": [ - 5060, + 5219, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -165461,19 +169409,19 @@ export default { 38 ], "order_by": [ - 5059, + 5218, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5056 + 5215 ] } ], "v_match_player_buy_types_aggregate": [ - 5053, + 5212, { "distinct_on": [ - 5060, + 5219, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -165483,35 +169431,35 @@ export default { 38 ], "order_by": [ - 5059, + 5218, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5056 + 5215 ] } ], "v_match_player_buy_types_stream": [ - 5052, + 5211, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5064, + 5223, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 5056 + 5215 ] } ], "v_match_player_opening_duels": [ - 5070, + 5229, { "distinct_on": [ - 5086, + 5245, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -165521,19 +169469,19 @@ export default { 38 ], "order_by": [ - 5085, + 5244, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5079 + 5238 ] } ], "v_match_player_opening_duels_aggregate": [ - 5071, + 5230, { "distinct_on": [ - 5086, + 5245, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -165543,35 +169491,35 @@ export default { 38 ], "order_by": [ - 5085, + 5244, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5079 + 5238 ] } ], "v_match_player_opening_duels_stream": [ - 5070, + 5229, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5093, + 5252, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 5079 + 5238 ] } ], "v_player_arch_nemesis": [ - 5103, + 5262, { "distinct_on": [ - 5111, + 5270, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -165581,19 +169529,19 @@ export default { 38 ], "order_by": [ - 5110, + 5269, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5107 + 5266 ] } ], "v_player_arch_nemesis_aggregate": [ - 5104, + 5263, { "distinct_on": [ - 5111, + 5270, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -165603,35 +169551,35 @@ export default { 38 ], "order_by": [ - 5110, + 5269, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5107 + 5266 ] } ], "v_player_arch_nemesis_stream": [ - 5103, + 5262, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5115, + 5274, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 5107 + 5266 ] } ], "v_player_damage": [ - 5121, + 5280, { "distinct_on": [ - 5129, + 5288, "[v_player_damage_select_column!]" ], "limit": [ @@ -165641,19 +169589,19 @@ export default { 38 ], "order_by": [ - 5128, + 5287, "[v_player_damage_order_by!]" ], "where": [ - 5125 + 5284 ] } ], "v_player_damage_aggregate": [ - 5122, + 5281, { "distinct_on": [ - 5129, + 5288, "[v_player_damage_select_column!]" ], "limit": [ @@ -165663,35 +169611,35 @@ export default { 38 ], "order_by": [ - 5128, + 5287, "[v_player_damage_order_by!]" ], "where": [ - 5125 + 5284 ] } ], "v_player_damage_stream": [ - 5121, + 5280, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5133, + 5292, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 5125 + 5284 ] } ], "v_player_elo": [ - 5139, + 5298, { "distinct_on": [ - 5165, + 5324, "[v_player_elo_select_column!]" ], "limit": [ @@ -165701,19 +169649,19 @@ export default { 38 ], "order_by": [ - 5164, + 5323, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 5317 ] } ], "v_player_elo_aggregate": [ - 5140, + 5299, { "distinct_on": [ - 5165, + 5324, "[v_player_elo_select_column!]" ], "limit": [ @@ -165723,35 +169671,35 @@ export default { 38 ], "order_by": [ - 5164, + 5323, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 5317 ] } ], "v_player_elo_stream": [ - 5139, + 5298, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5180, + 5339, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 5158 + 5317 ] } ], "v_player_map_losses": [ - 5190, + 5349, { "distinct_on": [ - 5198, + 5357, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -165761,19 +169709,19 @@ export default { 38 ], "order_by": [ - 5197, + 5356, "[v_player_map_losses_order_by!]" ], "where": [ - 5194 + 5353 ] } ], "v_player_map_losses_aggregate": [ - 5191, + 5350, { "distinct_on": [ - 5198, + 5357, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -165783,35 +169731,35 @@ export default { 38 ], "order_by": [ - 5197, + 5356, "[v_player_map_losses_order_by!]" ], "where": [ - 5194 + 5353 ] } ], "v_player_map_losses_stream": [ - 5190, + 5349, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5202, + 5361, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 5194 + 5353 ] } ], "v_player_map_wins": [ - 5208, + 5367, { "distinct_on": [ - 5216, + 5375, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -165821,19 +169769,19 @@ export default { 38 ], "order_by": [ - 5215, + 5374, "[v_player_map_wins_order_by!]" ], "where": [ - 5212 + 5371 ] } ], "v_player_map_wins_aggregate": [ - 5209, + 5368, { "distinct_on": [ - 5216, + 5375, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -165843,35 +169791,35 @@ export default { 38 ], "order_by": [ - 5215, + 5374, "[v_player_map_wins_order_by!]" ], "where": [ - 5212 + 5371 ] } ], "v_player_map_wins_stream": [ - 5208, + 5367, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5220, + 5379, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 5212 + 5371 ] } ], "v_player_match_head_to_head": [ - 5226, + 5385, { "distinct_on": [ - 5234, + 5393, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -165881,19 +169829,19 @@ export default { 38 ], "order_by": [ - 5233, + 5392, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5230 + 5389 ] } ], "v_player_match_head_to_head_aggregate": [ - 5227, + 5386, { "distinct_on": [ - 5234, + 5393, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -165903,35 +169851,35 @@ export default { 38 ], "order_by": [ - 5233, + 5392, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5230 + 5389 ] } ], "v_player_match_head_to_head_stream": [ - 5226, + 5385, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5238, + 5397, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 5230 + 5389 ] } ], "v_player_match_map_hltv": [ - 5244, + 5403, { "distinct_on": [ - 5262, + 5421, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -165941,19 +169889,19 @@ export default { 38 ], "order_by": [ - 5261, + 5420, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5253 + 5412 ] } ], "v_player_match_map_hltv_aggregate": [ - 5245, + 5404, { "distinct_on": [ - 5262, + 5421, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -165963,35 +169911,35 @@ export default { 38 ], "order_by": [ - 5261, + 5420, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5253 + 5412 ] } ], "v_player_match_map_hltv_stream": [ - 5244, + 5403, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5270, + 5429, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 5253 + 5412 ] } ], "v_player_match_map_roles": [ - 5281, + 5440, { "distinct_on": [ - 5289, + 5448, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -166001,19 +169949,19 @@ export default { 38 ], "order_by": [ - 5288, + 5447, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5285 + 5444 ] } ], "v_player_match_map_roles_aggregate": [ - 5282, + 5441, { "distinct_on": [ - 5289, + 5448, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -166023,35 +169971,35 @@ export default { 38 ], "order_by": [ - 5288, + 5447, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5285 + 5444 ] } ], "v_player_match_map_roles_stream": [ - 5281, + 5440, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5293, + 5452, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 5285 + 5444 ] } ], "v_player_match_performance": [ - 5299, + 5458, { "distinct_on": [ - 5307, + 5466, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -166061,19 +170009,19 @@ export default { 38 ], "order_by": [ - 5306, + 5465, "[v_player_match_performance_order_by!]" ], "where": [ - 5303 + 5462 ] } ], "v_player_match_performance_aggregate": [ - 5300, + 5459, { "distinct_on": [ - 5307, + 5466, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -166083,35 +170031,35 @@ export default { 38 ], "order_by": [ - 5306, + 5465, "[v_player_match_performance_order_by!]" ], "where": [ - 5303 + 5462 ] } ], "v_player_match_performance_stream": [ - 5299, + 5458, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5311, + 5470, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 5303 + 5462 ] } ], "v_player_match_rating": [ - 5317, + 5476, { "distinct_on": [ - 5325, + 5484, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -166121,19 +170069,19 @@ export default { 38 ], "order_by": [ - 5324, + 5483, "[v_player_match_rating_order_by!]" ], "where": [ - 5321 + 5480 ] } ], "v_player_match_rating_aggregate": [ - 5318, + 5477, { "distinct_on": [ - 5325, + 5484, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -166143,35 +170091,35 @@ export default { 38 ], "order_by": [ - 5324, + 5483, "[v_player_match_rating_order_by!]" ], "where": [ - 5321 + 5480 ] } ], "v_player_match_rating_stream": [ - 5317, + 5476, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5329, + 5488, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 5321 + 5480 ] } ], "v_player_multi_kills": [ - 5335, + 5494, { "distinct_on": [ - 5351, + 5510, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -166181,19 +170129,19 @@ export default { 38 ], "order_by": [ - 5350, + 5509, "[v_player_multi_kills_order_by!]" ], "where": [ - 5344 + 5503 ] } ], "v_player_multi_kills_aggregate": [ - 5336, + 5495, { "distinct_on": [ - 5351, + 5510, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -166203,35 +170151,35 @@ export default { 38 ], "order_by": [ - 5350, + 5509, "[v_player_multi_kills_order_by!]" ], "where": [ - 5344 + 5503 ] } ], "v_player_multi_kills_stream": [ - 5335, + 5494, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5358, + 5517, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 5344 + 5503 ] } ], "v_player_weapon_damage": [ - 5368, + 5527, { "distinct_on": [ - 5376, + 5535, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -166241,19 +170189,19 @@ export default { 38 ], "order_by": [ - 5375, + 5534, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5372 + 5531 ] } ], "v_player_weapon_damage_aggregate": [ - 5369, + 5528, { "distinct_on": [ - 5376, + 5535, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -166263,35 +170211,35 @@ export default { 38 ], "order_by": [ - 5375, + 5534, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5372 + 5531 ] } ], "v_player_weapon_damage_stream": [ - 5368, + 5527, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5380, + 5539, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5372 + 5531 ] } ], "v_player_weapon_kills": [ - 5386, + 5545, { "distinct_on": [ - 5394, + 5553, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -166301,19 +170249,19 @@ export default { 38 ], "order_by": [ - 5393, + 5552, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5390 + 5549 ] } ], "v_player_weapon_kills_aggregate": [ - 5387, + 5546, { "distinct_on": [ - 5394, + 5553, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -166323,35 +170271,35 @@ export default { 38 ], "order_by": [ - 5393, + 5552, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5390 + 5549 ] } ], "v_player_weapon_kills_stream": [ - 5386, + 5545, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5398, + 5557, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5390 + 5549 ] } ], "v_pool_maps": [ - 5404, + 5563, { "distinct_on": [ - 5421, + 5580, "[v_pool_maps_select_column!]" ], "limit": [ @@ -166361,19 +170309,19 @@ export default { 38 ], "order_by": [ - 5420, + 5579, "[v_pool_maps_order_by!]" ], "where": [ - 5413 + 5572 ] } ], "v_pool_maps_aggregate": [ - 5405, + 5564, { "distinct_on": [ - 5421, + 5580, "[v_pool_maps_select_column!]" ], "limit": [ @@ -166383,35 +170331,35 @@ export default { 38 ], "order_by": [ - 5420, + 5579, "[v_pool_maps_order_by!]" ], "where": [ - 5413 + 5572 ] } ], "v_pool_maps_stream": [ - 5404, + 5563, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5425, + 5584, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5413 + 5572 ] } ], "v_steam_account_pool_status": [ - 5428, + 5587, { "distinct_on": [ - 5436, + 5595, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -166421,19 +170369,19 @@ export default { 38 ], "order_by": [ - 5435, + 5594, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5432 + 5591 ] } ], "v_steam_account_pool_status_aggregate": [ - 5429, + 5588, { "distinct_on": [ - 5436, + 5595, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -166443,35 +170391,35 @@ export default { 38 ], "order_by": [ - 5435, + 5594, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5432 + 5591 ] } ], "v_steam_account_pool_status_stream": [ - 5428, + 5587, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5440, + 5599, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5432 + 5591 ] } ], "v_team_ranks": [ - 5446, + 5605, { "distinct_on": [ - 5456, + 5615, "[v_team_ranks_select_column!]" ], "limit": [ @@ -166481,19 +170429,19 @@ export default { 38 ], "order_by": [ - 5455, + 5614, "[v_team_ranks_order_by!]" ], "where": [ - 5450 + 5609 ] } ], "v_team_ranks_aggregate": [ - 5447, + 5606, { "distinct_on": [ - 5456, + 5615, "[v_team_ranks_select_column!]" ], "limit": [ @@ -166503,35 +170451,35 @@ export default { 38 ], "order_by": [ - 5455, + 5614, "[v_team_ranks_order_by!]" ], "where": [ - 5450 + 5609 ] } ], "v_team_ranks_stream": [ - 5446, + 5605, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5460, + 5619, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5450 + 5609 ] } ], "v_team_reputation": [ - 5466, + 5625, { "distinct_on": [ - 5476, + 5635, "[v_team_reputation_select_column!]" ], "limit": [ @@ -166541,19 +170489,19 @@ export default { 38 ], "order_by": [ - 5475, + 5634, "[v_team_reputation_order_by!]" ], "where": [ - 5470 + 5629 ] } ], "v_team_reputation_aggregate": [ - 5467, + 5626, { "distinct_on": [ - 5476, + 5635, "[v_team_reputation_select_column!]" ], "limit": [ @@ -166563,35 +170511,35 @@ export default { 38 ], "order_by": [ - 5475, + 5634, "[v_team_reputation_order_by!]" ], "where": [ - 5470 + 5629 ] } ], "v_team_reputation_stream": [ - 5466, + 5625, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5480, + 5639, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5470 + 5629 ] } ], "v_team_stage_results": [ - 5486, + 5645, { "distinct_on": [ - 5518, + 5677, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -166601,19 +170549,19 @@ export default { 38 ], "order_by": [ - 5516, + 5675, "[v_team_stage_results_order_by!]" ], "where": [ - 5505 + 5664 ] } ], "v_team_stage_results_aggregate": [ - 5487, + 5646, { "distinct_on": [ - 5518, + 5677, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -166623,48 +170571,48 @@ export default { 38 ], "order_by": [ - 5516, + 5675, "[v_team_stage_results_order_by!]" ], "where": [ - 5505 + 5664 ] } ], "v_team_stage_results_by_pk": [ - 5486, + 5645, { "tournament_stage_id": [ - 4762, + 4921, "uuid!" ], "tournament_team_id": [ - 4762, + 4921, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5486, + 5645, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5534, + 5693, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5505 + 5664 ] } ], "v_team_tournament_results": [ - 5546, + 5705, { "distinct_on": [ - 5572, + 5731, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -166674,19 +170622,19 @@ export default { 38 ], "order_by": [ - 5571, + 5730, "[v_team_tournament_results_order_by!]" ], "where": [ - 5565 + 5724 ] } ], "v_team_tournament_results_aggregate": [ - 5547, + 5706, { "distinct_on": [ - 5572, + 5731, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -166696,35 +170644,35 @@ export default { 38 ], "order_by": [ - 5571, + 5730, "[v_team_tournament_results_order_by!]" ], "where": [ - 5565 + 5724 ] } ], "v_team_tournament_results_stream": [ - 5546, + 5705, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5587, + 5746, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5565 + 5724 ] } ], "v_tournament_player_stats": [ - 5597, + 5756, { "distinct_on": [ - 5623, + 5782, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -166734,19 +170682,19 @@ export default { 38 ], "order_by": [ - 5622, + 5781, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5616 + 5775 ] } ], "v_tournament_player_stats_aggregate": [ - 5598, + 5757, { "distinct_on": [ - 5623, + 5782, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -166756,27 +170704,27 @@ export default { 38 ], "order_by": [ - 5622, + 5781, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5616 + 5775 ] } ], "v_tournament_player_stats_stream": [ - 5597, + 5756, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5638, + 5797, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 5616 + 5775 ] } ], diff --git a/hasura/enums/tournament-categories.sql b/hasura/enums/tournament-categories.sql new file mode 100644 index 000000000..bbaace4d8 --- /dev/null +++ b/hasura/enums/tournament-categories.sql @@ -0,0 +1,8 @@ +SET check_function_bodies = false; + +insert into e_tournament_categories ("value", "description") values + ('LAN', 'LAN'), + ('LocationEvent', 'Location Event'), + ('OnlineEvent', 'Online Event'), + ('League', 'League') +on conflict(value) do update set "description" = EXCLUDED."description" diff --git a/hasura/functions/match/update_match_state.sql b/hasura/functions/match/update_match_state.sql index 348997694..e1578283a 100644 --- a/hasura/functions/match/update_match_state.sql +++ b/hasura/functions/match/update_match_state.sql @@ -12,6 +12,7 @@ DECLARE match_winning_lineup_id UUID; lineup_1_wins INT := 0; lineup_2_wins INT := 0; + final_advantage INT := 0; match_map public.match_maps; BEGIN -- Retrieve match best_of value @@ -21,6 +22,7 @@ BEGIN INNER JOIN match_options mo ON mo.id = m.match_options_id WHERE m.id = _match_map.match_id; + IF (_match_map.status = 'Finished') THEN -- Get current match status and lineups SELECT status @@ -28,15 +30,50 @@ BEGIN FROM matches WHERE id = _match_map.match_id; - IF current_match_status = 'Forfeit' OR current_match_status = 'Surrendered' THEN + IF current_match_status IN ('Finished', 'Forfeit', 'Surrendered', 'Canceled', 'Tie') THEN RETURN; END IF; - - -- Loop through match maps and calculate wins + + -- Winner-bracket advantage: when this match is the grand final of a + -- double-elimination stage, the winner-bracket team starts with a map-point + -- head start. Stays 0 (inert) for every other match. + -- The grand final is stored as path 'WB' at round wb_rounds+1 with no parent + -- (generate_double_elimination_bracket); 'GF' is only a round_best_of settings + -- key, never a stored path. A parentless WB bracket is NOT enough on its + -- own: a DE stage that passes 2+ teams to a next stage never creates a GF, + -- leaving each group's WB final parentless too — only the real GF has an + -- LB feeder as a child. assign_team_to_bracket_slot orders the WB feeder + -- ahead of the LB feeder, so the winner-bracket team is always slot 1 / + -- tournament_team_id_1, which schedule_tournament_match maps to lineup_1. + SELECT COALESCE(ts.final_map_advantage, 0) + INTO final_advantage + FROM tournament_brackets tb + INNER JOIN tournament_stages ts ON ts.id = tb.tournament_stage_id + WHERE tb.match_id = _match_map.match_id + AND ts.type = 'DoubleElimination' + AND tb.parent_bracket_id IS NULL + AND COALESCE(tb.path, 'WB') = 'WB' + AND EXISTS ( + SELECT 1 + FROM tournament_brackets lb + WHERE lb.parent_bracket_id = tb.id + AND lb.path = 'LB' + ); + + -- Clamp below the win threshold: at or above it the winner-bracket team + -- would take the match on the first finished map, even one it lost. + lineup_1_wins := LEAST( + COALESCE(final_advantage, 0), + CEIL(match_best_of / 2.0)::int - 1 + ); + + -- Only Finished maps count: an in-progress map's latest round snapshot + -- would otherwise credit a map win to whoever is momentarily ahead. FOR match_map IN SELECT * FROM match_maps WHERE match_id = _match_map.match_id + AND status = 'Finished' LOOP map_lineup_1_score := lineup_1_score(match_map); map_lineup_2_score := lineup_2_score(match_map); @@ -55,7 +92,7 @@ BEGIN ELSE match_winning_lineup_id := match_lineup_2_id; END IF; - IF lineup_1_wins = CEIL(match_best_of / 2.0) OR lineup_2_wins = CEIL(match_best_of / 2.0) THEN + IF lineup_1_wins >= CEIL(match_best_of / 2.0) OR lineup_2_wins >= CEIL(match_best_of / 2.0) THEN -- Update match status and winning lineup UPDATE matches SET status = 'Finished', winning_lineup_id = match_winning_lineup_id @@ -64,4 +101,4 @@ BEGIN END IF; RETURN; END; -$$; \ No newline at end of file +$$; diff --git a/hasura/metadata/databases/default/tables/public_custom_pages.yaml b/hasura/metadata/databases/default/tables/public_custom_pages.yaml new file mode 100644 index 000000000..51a55710a --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_custom_pages.yaml @@ -0,0 +1,257 @@ +table: + name: custom_pages + schema: public +insert_permissions: + - role: administrator + permission: + check: {} + columns: + - slug + - title + - icon + - remote_entry_url + - remote_scope + - exposed_module + - required_role + - enabled + - is_default + - nav_group + - nav_order + comment: "" +select_permissions: + - role: administrator + permission: + columns: + - id + - slug + - title + - icon + - remote_entry_url + - remote_scope + - exposed_module + - required_role + - enabled + - is_default + - nav_group + - nav_order + - created_at + - updated_at + filter: {} + allow_aggregations: true + comment: "" + - role: guest + permission: + columns: + - id + - slug + - title + - icon + - remote_entry_url + - remote_scope + - exposed_module + - required_role + - enabled + - is_default + - nav_group + - nav_order + filter: + _and: + - enabled: + _eq: true + - required_role: + _is_null: true + comment: "" + - role: user + permission: + columns: + - id + - slug + - title + - icon + - remote_entry_url + - remote_scope + - exposed_module + - required_role + - enabled + - is_default + - nav_group + - nav_order + filter: + _and: + - enabled: + _eq: true + - _or: + - required_role: + _is_null: true + - required_role: + _in: + - user + comment: "" + - role: verified_user + permission: + columns: + - id + - slug + - title + - icon + - remote_entry_url + - remote_scope + - exposed_module + - required_role + - enabled + - is_default + - nav_group + - nav_order + filter: + _and: + - enabled: + _eq: true + - _or: + - required_role: + _is_null: true + - required_role: + _in: + - user + - verified_user + comment: "" + - role: streamer + permission: + columns: + - id + - slug + - title + - icon + - remote_entry_url + - remote_scope + - exposed_module + - required_role + - enabled + - is_default + - nav_group + - nav_order + filter: + _and: + - enabled: + _eq: true + - _or: + - required_role: + _is_null: true + - required_role: + _in: + - user + - verified_user + - streamer + comment: "" + - role: moderator + permission: + columns: + - id + - slug + - title + - icon + - remote_entry_url + - remote_scope + - exposed_module + - required_role + - enabled + - is_default + - nav_group + - nav_order + filter: + _and: + - enabled: + _eq: true + - _or: + - required_role: + _is_null: true + - required_role: + _in: + - user + - verified_user + - streamer + - moderator + comment: "" + - role: match_organizer + permission: + columns: + - id + - slug + - title + - icon + - remote_entry_url + - remote_scope + - exposed_module + - required_role + - enabled + - is_default + - nav_group + - nav_order + filter: + _and: + - enabled: + _eq: true + - _or: + - required_role: + _is_null: true + - required_role: + _in: + - user + - verified_user + - streamer + - moderator + - match_organizer + comment: "" + - role: tournament_organizer + permission: + columns: + - id + - slug + - title + - icon + - remote_entry_url + - remote_scope + - exposed_module + - required_role + - enabled + - is_default + - nav_group + - nav_order + filter: + _and: + - enabled: + _eq: true + - _or: + - required_role: + _is_null: true + - required_role: + _in: + - user + - verified_user + - streamer + - moderator + - match_organizer + - tournament_organizer + comment: "" +update_permissions: + - role: administrator + permission: + columns: + - slug + - title + - icon + - remote_entry_url + - remote_scope + - exposed_module + - required_role + - enabled + - is_default + - nav_group + - nav_order + filter: {} + check: {} + comment: "" +delete_permissions: + - role: administrator + permission: + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_e_tournament_categories.yaml b/hasura/metadata/databases/default/tables/public_e_tournament_categories.yaml new file mode 100644 index 000000000..fd7d38297 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_tournament_categories.yaml @@ -0,0 +1,20 @@ +table: + name: e_tournament_categories + schema: public +is_enum: true +array_relationships: + - name: tournament_categories + using: + foreign_key_constraint_on: + column: category + table: + name: tournament_categories + schema: public +select_permissions: + - role: guest + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_match_options.yaml b/hasura/metadata/databases/default/tables/public_match_options.yaml index 245732630..200e9d9b8 100644 --- a/hasura/metadata/databases/default/tables/public_match_options.yaml +++ b/hasura/metadata/databases/default/tables/public_match_options.yaml @@ -71,6 +71,8 @@ insert_permissions: - auto_cancellation - tv_delay - type + - halftime_pausematch + - round_restart_delay comment: "" - role: user permission: @@ -93,6 +95,8 @@ insert_permissions: - timeout_setting - tv_delay - type + - halftime_pausematch + - round_restart_delay comment: "" select_permissions: - role: guest @@ -121,6 +125,8 @@ select_permissions: - auto_cancellation - tv_delay - type + - halftime_pausematch + - round_restart_delay filter: {} comment: "" update_permissions: @@ -149,6 +155,8 @@ update_permissions: - auto_cancellation - tv_delay - type + - halftime_pausematch + - round_restart_delay filter: _or: - matches: @@ -204,6 +212,8 @@ update_permissions: - timeout_setting - tv_delay - type + - halftime_pausematch + - round_restart_delay filter: _or: - matches: diff --git a/hasura/metadata/databases/default/tables/public_team_roster.yaml b/hasura/metadata/databases/default/tables/public_team_roster.yaml index afb01f55c..617e6ff57 100644 --- a/hasura/metadata/databases/default/tables/public_team_roster.yaml +++ b/hasura/metadata/databases/default/tables/public_team_roster.yaml @@ -107,3 +107,17 @@ event_triggers: num_retries: 6 timeout_sec: 60 webhook: '{{HASURA_GRAPHQL_EVENT_HOOK}}' + - name: tournament_org_roster_events + definition: + delete: + columns: '*' + enable_manual: true + insert: + columns: '*' + update: + columns: '*' + retry_conf: + interval_sec: 10 + num_retries: 6 + timeout_sec: 60 + webhook: '{{HASURA_GRAPHQL_EVENT_HOOK}}' diff --git a/hasura/metadata/databases/default/tables/public_teams.yaml b/hasura/metadata/databases/default/tables/public_teams.yaml index 37cd6b1df..664daf4c1 100644 --- a/hasura/metadata/databases/default/tables/public_teams.yaml +++ b/hasura/metadata/databases/default/tables/public_teams.yaml @@ -122,6 +122,7 @@ select_permissions: - avatar_url - captain_steam_id - id + - is_organization - name - owner_steam_id - short_name @@ -139,6 +140,7 @@ update_permissions: permission: columns: - captain_steam_id + - is_organization - name - owner_steam_id - short_name diff --git a/hasura/metadata/databases/default/tables/public_tournament_categories.yaml b/hasura/metadata/databases/default/tables/public_tournament_categories.yaml new file mode 100644 index 000000000..df9816c77 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_tournament_categories.yaml @@ -0,0 +1,37 @@ +table: + name: tournament_categories + schema: public +object_relationships: + - name: e_tournament_category + using: + foreign_key_constraint_on: category + - name: tournament + using: + foreign_key_constraint_on: tournament_id +insert_permissions: + - role: user + permission: + check: + tournament: + is_organizer: + _eq: true + columns: + - category + - tournament_id + comment: "" +select_permissions: + - role: guest + permission: + columns: + - category + - tournament_id + filter: {} + comment: "" +delete_permissions: + - role: user + permission: + filter: + tournament: + is_organizer: + _eq: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_tournament_organizer_teams.yaml b/hasura/metadata/databases/default/tables/public_tournament_organizer_teams.yaml new file mode 100644 index 000000000..731aca852 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_tournament_organizer_teams.yaml @@ -0,0 +1,51 @@ +table: + name: tournament_organizer_teams + schema: public +object_relationships: + - name: team + using: + foreign_key_constraint_on: team_id + - name: tournament + using: + foreign_key_constraint_on: tournament_id +insert_permissions: + - role: user + permission: + check: + tournament: + is_organizer: + _eq: true + columns: + - team_id + - tournament_id + comment: "" +select_permissions: + - role: guest + permission: + columns: + - created_at + - team_id + - tournament_id + filter: {} + comment: "" +delete_permissions: + - role: user + permission: + filter: + tournament: + is_organizer: + _eq: true + comment: "" +event_triggers: + - name: tournament_organizer_team_events + definition: + enable_manual: true + insert: + columns: '*' + delete: + columns: '*' + retry_conf: + interval_sec: 10 + num_retries: 6 + timeout_sec: 60 + webhook: '{{HASURA_GRAPHQL_EVENT_HOOK}}' diff --git a/hasura/metadata/databases/default/tables/public_tournament_organizers.yaml b/hasura/metadata/databases/default/tables/public_tournament_organizers.yaml index cd8a3f0cd..d8a07b7a5 100644 --- a/hasura/metadata/databases/default/tables/public_tournament_organizers.yaml +++ b/hasura/metadata/databases/default/tables/public_tournament_organizers.yaml @@ -2,6 +2,9 @@ table: name: tournament_organizers schema: public object_relationships: + - name: organization_team + using: + foreign_key_constraint_on: organization_team_id - name: organizer using: foreign_key_constraint_on: steam_id @@ -23,6 +26,7 @@ select_permissions: - role: guest permission: columns: + - organization_team_id - steam_id - tournament_id filter: {} diff --git a/hasura/metadata/databases/default/tables/public_tournament_prizes.yaml b/hasura/metadata/databases/default/tables/public_tournament_prizes.yaml new file mode 100644 index 000000000..9a8af3fef --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_tournament_prizes.yaml @@ -0,0 +1,56 @@ +table: + name: tournament_prizes + schema: public +object_relationships: + - name: tournament + using: + foreign_key_constraint_on: tournament_id +insert_permissions: + - role: user + permission: + check: + tournament: + is_organizer: + _eq: true + columns: + - order + - place + - prize + - tournament_id + comment: "" +select_permissions: + - role: guest + permission: + columns: + - created_at + - id + - order + - place + - prize + - tournament_id + filter: {} + comment: "" +update_permissions: + - role: user + permission: + columns: + - order + - place + - prize + filter: + tournament: + is_organizer: + _eq: true + check: + tournament: + is_organizer: + _eq: true + comment: "" +delete_permissions: + - role: user + permission: + filter: + tournament: + is_organizer: + _eq: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_tournament_stages.yaml b/hasura/metadata/databases/default/tables/public_tournament_stages.yaml index 8c6dbf295..9c8b00b61 100644 --- a/hasura/metadata/databases/default/tables/public_tournament_stages.yaml +++ b/hasura/metadata/databases/default/tables/public_tournament_stages.yaml @@ -51,6 +51,7 @@ insert_permissions: columns: - decider_best_of - default_best_of + - final_map_advantage - groups - match_options_id - max_rounds @@ -69,6 +70,7 @@ select_permissions: columns: - decider_best_of - default_best_of + - final_map_advantage - groups - id - match_options_id @@ -90,6 +92,7 @@ update_permissions: columns: - decider_best_of - default_best_of + - final_map_advantage - groups - match_options_id - max_rounds diff --git a/hasura/metadata/databases/default/tables/public_tournaments.yaml b/hasura/metadata/databases/default/tables/public_tournaments.yaml index a56c1eacc..2d3234413 100644 --- a/hasura/metadata/databases/default/tables/public_tournaments.yaml +++ b/hasura/metadata/databases/default/tables/public_tournaments.yaml @@ -21,6 +21,20 @@ object_relationships: using: foreign_key_constraint_on: match_options_id array_relationships: + - name: categories + using: + foreign_key_constraint_on: + column: tournament_id + table: + name: tournament_categories + schema: public + - name: organizer_teams + using: + foreign_key_constraint_on: + column: tournament_id + table: + name: tournament_organizer_teams + schema: public - name: organizers using: foreign_key_constraint_on: @@ -37,6 +51,13 @@ array_relationships: remote_table: name: v_tournament_player_stats schema: public + - name: prizes + using: + foreign_key_constraint_on: + column: tournament_id + table: + name: tournament_prizes + schema: public - name: results using: manual_configuration: @@ -183,6 +204,12 @@ insert_permissions: - discord_notify_WaitingForServer - discord_role_id - discord_webhook + - homepage + - latitude + - location + - banner + - logo + - longitude - match_options_id - name - scheduling_mode @@ -219,6 +246,12 @@ insert_permissions: columns: - auto_start - description + - homepage + - latitude + - location + - banner + - logo + - longitude - match_options_id - name - scheduling_mode @@ -254,6 +287,12 @@ insert_permissions: columns: - auto_start - description + - homepage + - latitude + - location + - banner + - logo + - longitude - match_options_id - name - scheduling_mode @@ -308,6 +347,12 @@ insert_permissions: - discord_notify_WaitingForServer - discord_role_id - discord_webhook + - homepage + - latitude + - location + - banner + - logo + - longitude - match_options_id - name - scheduling_mode @@ -341,6 +386,12 @@ insert_permissions: columns: - auto_start - description + - homepage + - latitude + - location + - banner + - logo + - longitude - match_options_id - name - scheduling_mode @@ -375,6 +426,12 @@ insert_permissions: columns: - auto_start - description + - homepage + - latitude + - location + - banner + - logo + - longitude - match_options_id - name - scheduling_mode @@ -387,7 +444,13 @@ select_permissions: - auto_start - created_at - description + - homepage - id + - latitude + - location + - banner + - logo + - longitude - match_options_id - name - scheduling_mode @@ -437,7 +500,13 @@ select_permissions: - discord_notify_WaitingForServer - discord_role_id - discord_webhook + - homepage - id + - latitude + - location + - banner + - logo + - longitude - match_options_id - name - scheduling_mode @@ -473,7 +542,13 @@ select_permissions: - auto_start - created_at - description + - homepage - id + - latitude + - location + - banner + - logo + - longitude - match_options_id - name - scheduling_mode @@ -526,6 +601,12 @@ update_permissions: - discord_notify_WaitingForServer - discord_role_id - discord_webhook + - homepage + - latitude + - location + - banner + - logo + - longitude - name - start - status @@ -542,6 +623,12 @@ update_permissions: columns: - auto_start - description + - homepage + - latitude + - location + - banner + - logo + - longitude - name - start - status diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index 73ad2708a..124afd54d 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -3,6 +3,7 @@ - "!include public_abandoned_matches.yaml" - "!include public_api_keys.yaml" - "!include public_clip_render_jobs.yaml" +- "!include public_custom_pages.yaml" - "!include public_db_backups.yaml" - "!include public_draft_game_picks.yaml" - "!include public_draft_game_players.yaml" @@ -43,6 +44,7 @@ - "!include public_e_team_roles.yaml" - "!include public_e_team_roster_statuses.yaml" - "!include public_e_timeout_settings.yaml" +- "!include public_e_tournament_categories.yaml" - "!include public_e_tournament_stage_types.yaml" - "!include public_e_tournament_status.yaml" - "!include public_e_utility_types.yaml" @@ -136,7 +138,10 @@ - "!include public_team_suggestions.yaml" - "!include public_teams.yaml" - "!include public_tournament_brackets.yaml" +- "!include public_tournament_categories.yaml" +- "!include public_tournament_organizer_teams.yaml" - "!include public_tournament_organizers.yaml" +- "!include public_tournament_prizes.yaml" - "!include public_tournament_stage_windows.yaml" - "!include public_tournament_stages.yaml" - "!include public_tournament_team_invites.yaml" diff --git a/hasura/migrations/default/1871000000200_tournament_infos_organisations_match_settings/down.sql b/hasura/migrations/default/1871000000200_tournament_infos_organisations_match_settings/down.sql new file mode 100644 index 000000000..dfa7415bd --- /dev/null +++ b/hasura/migrations/default/1871000000200_tournament_infos_organisations_match_settings/down.sql @@ -0,0 +1,28 @@ +ALTER TABLE public.tournament_stages + DROP CONSTRAINT IF EXISTS tournament_stages_final_map_advantage_check; +ALTER TABLE public.tournament_stages + DROP COLUMN IF EXISTS final_map_advantage; + +ALTER TABLE public.match_options + DROP COLUMN IF EXISTS round_restart_delay, + DROP COLUMN IF EXISTS halftime_pausematch; + +ALTER TABLE public.tournament_organizers + DROP COLUMN IF EXISTS organization_team_id; + +DROP TABLE IF EXISTS public.tournament_organizer_teams; + +ALTER TABLE public.teams + DROP COLUMN IF EXISTS is_organization; + +DROP TABLE IF EXISTS public.tournament_prizes; + +DROP TABLE IF EXISTS public.tournament_categories; +DROP TABLE IF EXISTS public.e_tournament_categories; + +ALTER TABLE public.tournaments + DROP COLUMN IF EXISTS logo, + DROP COLUMN IF EXISTS homepage, + DROP COLUMN IF EXISTS location, + DROP COLUMN IF EXISTS latitude, + DROP COLUMN IF EXISTS longitude; diff --git a/hasura/migrations/default/1871000000200_tournament_infos_organisations_match_settings/up.sql b/hasura/migrations/default/1871000000200_tournament_infos_organisations_match_settings/up.sql new file mode 100644 index 000000000..edac9b09b --- /dev/null +++ b/hasura/migrations/default/1871000000200_tournament_infos_organisations_match_settings/up.sql @@ -0,0 +1,89 @@ +ALTER TABLE public.tournaments + ADD COLUMN IF NOT EXISTS logo text, + ADD COLUMN IF NOT EXISTS homepage text, + ADD COLUMN IF NOT EXISTS location text, + ADD COLUMN IF NOT EXISTS latitude double precision, + ADD COLUMN IF NOT EXISTS longitude double precision; + +CREATE TABLE IF NOT EXISTS public.e_tournament_categories ( + value TEXT PRIMARY KEY, + description TEXT NOT NULL +); + +INSERT INTO public.e_tournament_categories (value, description) VALUES + ('LAN', 'LAN'), + ('LocationEvent', 'Location Event'), + ('OnlineEvent', 'Online Event'), + ('League', 'League') +ON CONFLICT (value) DO UPDATE SET description = EXCLUDED.description; + +CREATE TABLE IF NOT EXISTS public.tournament_categories ( + tournament_id uuid NOT NULL + REFERENCES public.tournaments(id) ON UPDATE CASCADE ON DELETE CASCADE, + category text NOT NULL + REFERENCES public.e_tournament_categories(value) ON UPDATE CASCADE ON DELETE RESTRICT, + PRIMARY KEY (tournament_id, category) +); + +CREATE INDEX IF NOT EXISTS tournament_categories_tournament_id_idx + ON public.tournament_categories (tournament_id); + +CREATE TABLE IF NOT EXISTS public.tournament_prizes ( + id uuid PRIMARY KEY DEFAULT gen_random_uuid(), + tournament_id uuid NOT NULL + REFERENCES public.tournaments(id) ON UPDATE CASCADE ON DELETE CASCADE, + place text NOT NULL, + prize text NOT NULL, + "order" integer NOT NULL DEFAULT 0, + created_at timestamptz NOT NULL DEFAULT now() +); + +CREATE INDEX IF NOT EXISTS tournament_prizes_tournament_id_idx + ON public.tournament_prizes (tournament_id); + +ALTER TABLE public.teams + ADD COLUMN IF NOT EXISTS is_organization boolean NOT NULL DEFAULT false; + +-- Links an "organisation" team to a tournament. When a team is added here every +-- member of that team's roster is expanded into tournament_organizers (handled in +-- the API via the tournament_organizer_team_events + team_roster event triggers). +CREATE TABLE IF NOT EXISTS public.tournament_organizer_teams ( + tournament_id uuid NOT NULL + REFERENCES public.tournaments(id) ON UPDATE CASCADE ON DELETE CASCADE, + team_id uuid NOT NULL + REFERENCES public.teams(id) ON UPDATE CASCADE ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (tournament_id, team_id) +); + +CREATE INDEX IF NOT EXISTS tournament_organizer_teams_team_id_idx + ON public.tournament_organizer_teams (team_id); + +-- Tracks which organisation team an organizer row was expanded from. NULL means the +-- organizer was added manually; a non-NULL value is managed by the org-team sync and +-- is removed when the team is unlinked or drops off the team roster. +ALTER TABLE public.tournament_organizers + ADD COLUMN IF NOT EXISTS organization_team_id uuid + REFERENCES public.teams(id) ON UPDATE CASCADE ON DELETE SET NULL; + +ALTER TABLE public.match_options + ADD COLUMN IF NOT EXISTS round_restart_delay integer, + ADD COLUMN IF NOT EXISTS halftime_pausematch boolean NOT NULL DEFAULT false; + +-- Winner-bracket advantage for the grand final of a double-elimination stage, expressed +-- in map points. The winner-bracket team (bracket.tournament_team_id_1 / lineup_1) starts +-- the grand-final match with this many map wins already banked. 0 disables the advantage. +-- update_match_state clamps it below ceil(best_of / 2) at apply time, since the GF's +-- best_of is only known per match; at or above the threshold the winner-bracket team +-- would otherwise take the match on the first map to finish, even one it lost. +ALTER TABLE public.tournament_stages + ADD COLUMN IF NOT EXISTS final_map_advantage integer NOT NULL DEFAULT 0; + +-- Added separately (not inline on ADD COLUMN) so it also lands on databases where the +-- column already existed from a pre-squash migration -- there ADD COLUMN IF NOT EXISTS +-- is a no-op and would skip an inline constraint. +ALTER TABLE public.tournament_stages + DROP CONSTRAINT IF EXISTS tournament_stages_final_map_advantage_check; +ALTER TABLE public.tournament_stages + ADD CONSTRAINT tournament_stages_final_map_advantage_check + CHECK (final_map_advantage >= 0); diff --git a/hasura/migrations/default/1872000000000_custom_pages/down.sql b/hasura/migrations/default/1872000000000_custom_pages/down.sql new file mode 100644 index 000000000..609dfd3e8 --- /dev/null +++ b/hasura/migrations/default/1872000000000_custom_pages/down.sql @@ -0,0 +1,2 @@ +DROP TRIGGER IF EXISTS "set_public_custom_pages_updated_at" ON "public"."custom_pages"; +DROP TABLE IF EXISTS "public"."custom_pages"; diff --git a/hasura/migrations/default/1872000000000_custom_pages/up.sql b/hasura/migrations/default/1872000000000_custom_pages/up.sql new file mode 100644 index 000000000..e29765559 --- /dev/null +++ b/hasura/migrations/default/1872000000000_custom_pages/up.sql @@ -0,0 +1,32 @@ +CREATE TABLE IF NOT EXISTS "public"."custom_pages" ( + "id" uuid NOT NULL DEFAULT gen_random_uuid(), + "slug" text NOT NULL, + "title" text NOT NULL, + "icon" text, + "remote_entry_url" text NOT NULL, + "remote_scope" text NOT NULL, + "exposed_module" text NOT NULL DEFAULT './App', + "required_role" text, + "enabled" boolean NOT NULL DEFAULT true, + "is_default" boolean NOT NULL DEFAULT false, + "nav_group" text, + "nav_order" integer NOT NULL DEFAULT 0, + "created_at" timestamptz NOT NULL DEFAULT now(), + "updated_at" timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY ("id"), + CONSTRAINT "custom_pages_slug_key" UNIQUE ("slug"), + CONSTRAINT "custom_pages_required_role_fkey" + FOREIGN KEY ("required_role") REFERENCES "public"."e_player_roles" ("value") + ON UPDATE CASCADE ON DELETE SET NULL +); + +-- The slug is the URL segment (/apps/); enforce a URL-safe shape so a bad +-- row can never produce an unroutable path. +ALTER TABLE "public"."custom_pages" + ADD CONSTRAINT "custom_pages_slug_check" CHECK ("slug" ~ '^[a-z0-9]+(?:-[a-z0-9]+)*$'); + +CREATE UNIQUE INDEX IF NOT EXISTS "custom_pages_single_default_idx" + ON "public"."custom_pages" ("is_default") WHERE "is_default"; + +CREATE INDEX IF NOT EXISTS "custom_pages_enabled_nav_order_idx" + ON "public"."custom_pages" ("enabled", "nav_order"); diff --git a/hasura/migrations/default/1872000000100_add_tournament_banner/down.sql b/hasura/migrations/default/1872000000100_add_tournament_banner/down.sql new file mode 100644 index 000000000..7097c57ac --- /dev/null +++ b/hasura/migrations/default/1872000000100_add_tournament_banner/down.sql @@ -0,0 +1,2 @@ +ALTER TABLE public.tournaments + DROP COLUMN IF EXISTS banner; diff --git a/hasura/migrations/default/1872000000100_add_tournament_banner/up.sql b/hasura/migrations/default/1872000000100_add_tournament_banner/up.sql new file mode 100644 index 000000000..93dd3cda4 --- /dev/null +++ b/hasura/migrations/default/1872000000100_add_tournament_banner/up.sql @@ -0,0 +1,2 @@ +ALTER TABLE public.tournaments + ADD COLUMN IF NOT EXISTS banner text; diff --git a/hasura/triggers/custom_pages.sql b/hasura/triggers/custom_pages.sql new file mode 100644 index 000000000..1225089e0 --- /dev/null +++ b/hasura/triggers/custom_pages.sql @@ -0,0 +1,5 @@ +DROP TRIGGER IF EXISTS "set_public_custom_pages_updated_at" ON "public"."custom_pages"; +CREATE TRIGGER "set_public_custom_pages_updated_at" +BEFORE UPDATE ON "public"."custom_pages" +FOR EACH ROW +EXECUTE PROCEDURE "public"."set_current_timestamp_updated_at"(); diff --git a/hasura/triggers/match_maps.sql b/hasura/triggers/match_maps.sql index 94cd9af5d..c8145db93 100644 --- a/hasura/triggers/match_maps.sql +++ b/hasura/triggers/match_maps.sql @@ -8,7 +8,11 @@ END; $$; DROP TRIGGER IF EXISTS tau_match_maps ON public.match_maps; -CREATE TRIGGER tau_match_maps AFTER UPDATE ON public.match_maps FOR EACH ROW EXECUTE FUNCTION public.tau_match_maps(); +-- Transition-only: post-finish touches of a Finished row (clip counters, demo +-- metadata) must not re-run the series recount while a later map is in play. +CREATE TRIGGER tau_match_maps AFTER UPDATE ON public.match_maps FOR EACH ROW + WHEN (NEW.status = 'Finished' AND OLD.status IS DISTINCT FROM NEW.status) + EXECUTE FUNCTION public.tau_match_maps(); CREATE OR REPLACE FUNCTION public.tbi_match_maps() RETURNS TRIGGER LANGUAGE plpgsql @@ -46,7 +50,7 @@ BEGIN _auto_cancel_duration := COALESCE(_auto_cancel_duration_override, get_int_setting('auto_cancel_duration', 15))::text || ' minutes'; _live_match_timeout := COALESCE(_live_match_timeout_override, get_int_setting('live_match_timeout', 180))::text || ' minutes'; - IF NEW.status = 'Warmup' THEN + IF NEW.status = 'Warmup' AND OLD.status IS DISTINCT FROM NEW.status THEN IF _auto_cancellation THEN UPDATE matches SET cancels_at = NOW() + (_auto_cancel_duration)::interval WHERE id = NEW.match_id; END IF; @@ -62,14 +66,14 @@ BEGIN END IF; END IF; - IF OLD.status != 'Paused' AND (NEW.status = 'Knife' OR NEW.status = 'Live' OR NEW.status = 'Overtime') THEN + IF OLD.status != 'Paused' AND OLD.status IS DISTINCT FROM NEW.status AND (NEW.status = 'Knife' OR NEW.status = 'Live' OR NEW.status = 'Overtime') THEN NEW.started_at = NOW(); IF _auto_cancellation THEN UPDATE matches SET cancels_at = NOW() + (_live_match_timeout)::interval WHERE id = NEW.match_id; END IF; END IF; - IF NEW.status = 'Finished' THEN + IF NEW.status = 'Finished' AND OLD.status IS DISTINCT FROM NEW.status THEN NEW.ended_at = NOW(); END IF; diff --git a/hasura/triggers/tournament_teams.sql b/hasura/triggers/tournament_teams.sql index d796070b4..754706287 100644 --- a/hasura/triggers/tournament_teams.sql +++ b/hasura/triggers/tournament_teams.sql @@ -164,8 +164,14 @@ BEGIN END; $$; +-- Deferred to COMMIT so it fires after Hasura's nested insert has written the +-- client-supplied roster in its own statement; otherwise the auto-fill above +-- runs first, and the client roster then collides on tournament_roster_pkey. DROP TRIGGER IF EXISTS tai_tournament_team ON public.tournament_teams; -CREATE TRIGGER tai_tournament_team AFTER INSERT ON public.tournament_teams FOR EACH ROW EXECUTE FUNCTION public.tai_tournament_team(); +CREATE CONSTRAINT TRIGGER tai_tournament_team + AFTER INSERT ON public.tournament_teams + DEFERRABLE INITIALLY DEFERRED + FOR EACH ROW EXECUTE FUNCTION public.tai_tournament_team(); CREATE OR REPLACE FUNCTION public.tbu_tournament_team() RETURNS TRIGGER diff --git a/src/app.module.ts b/src/app.module.ts index 5c7da6e63..a6ad00cb4 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -56,6 +56,7 @@ import { NewsModule } from "./news/news.module"; import { EventsModule } from "./events/events.module"; import { ScrimsModule } from "./scrims/scrims.module"; import { LeaguesModule } from "./leagues/leagues.module"; +import { CustomPagesModule } from "./custom-pages/custom-pages.module"; @Module({ imports: [ @@ -152,6 +153,7 @@ import { LeaguesModule } from "./leagues/leagues.module"; EventsModule, ScrimsModule, LeaguesModule, + CustomPagesModule, ], providers: [loggerFactory()], controllers: [AppController, QuickConnectController], diff --git a/src/avatars/avatars.controller.ts b/src/avatars/avatars.controller.ts index 46be3f03e..55a1fc58a 100644 --- a/src/avatars/avatars.controller.ts +++ b/src/avatars/avatars.controller.ts @@ -167,6 +167,76 @@ export class AvatarsController { return { success: true }; } + @Post("tournaments/:tournamentId") + @UseInterceptors(FileInterceptor("file")) + async uploadTournament( + @Req() request: Request, + @Param("tournamentId") tournamentId: string, + @UploadedFile( + new ParseFilePipe({ + validators: [ + new MaxFileSizeValidator({ maxSize: 5 * 1024 * 1024 }), + new FileTypeValidator({ fileType: /image\/(png|jpeg|webp)/ }), + ], + }), + ) + file: Express.Multer.File, + ) { + const user = this.requireUser(request); + const path = await this.avatarsService.uploadTournamentLogo( + tournamentId, + user, + file.buffer, + file.mimetype, + ); + return { success: true, path }; + } + + @Delete("tournaments/:tournamentId") + async removeTournament( + @Req() request: Request, + @Param("tournamentId") tournamentId: string, + ) { + const user = this.requireUser(request); + await this.avatarsService.removeTournamentLogo(tournamentId, user); + return { success: true }; + } + + @Post("tournaments/:tournamentId/banner") + @UseInterceptors(FileInterceptor("file")) + async uploadTournamentBanner( + @Req() request: Request, + @Param("tournamentId") tournamentId: string, + @UploadedFile( + new ParseFilePipe({ + validators: [ + new MaxFileSizeValidator({ maxSize: 10 * 1024 * 1024 }), + new FileTypeValidator({ fileType: /image\/(png|jpeg|webp)/ }), + ], + }), + ) + file: Express.Multer.File, + ) { + const user = this.requireUser(request); + const path = await this.avatarsService.uploadTournamentBanner( + tournamentId, + user, + file.buffer, + file.mimetype, + ); + return { success: true, path }; + } + + @Delete("tournaments/:tournamentId/banner") + async removeTournamentBanner( + @Req() request: Request, + @Param("tournamentId") tournamentId: string, + ) { + const user = this.requireUser(request); + await this.avatarsService.removeTournamentBanner(tournamentId, user); + return { success: true }; + } + @Get("teams/:filename") async serveTeam(@Param("filename") filename: string, @Res() res: Response) { return this.serve("teams", filename, res); @@ -193,8 +263,21 @@ export class AvatarsController { return this.serve("roster-teams", filename, res); } + @Get("tournaments/:filename") + async serveTournament( + @Param("filename") filename: string, + @Res() res: Response, + ) { + return this.serve("tournaments", filename, res); + } + private async serve( - kind: "teams" | "players" | "roster-players" | "roster-teams", + kind: + | "teams" + | "players" + | "roster-players" + | "roster-teams" + | "tournaments", filename: string, res: Response, ) { diff --git a/src/avatars/avatars.service.ts b/src/avatars/avatars.service.ts index 3be8b3e7a..8a6d67f12 100644 --- a/src/avatars/avatars.service.ts +++ b/src/avatars/avatars.service.ts @@ -9,7 +9,8 @@ export type AvatarKind = | "teams" | "players" | "roster-players" - | "roster-teams"; + | "roster-teams" + | "tournaments"; const EXTENSION_BY_MIMETYPE: Record = { "image/png": "png", @@ -366,6 +367,149 @@ export class AvatarsService { ); } + async uploadTournamentLogo( + tournamentId: string, + user: User, + buffer: Buffer, + mimetype: string, + ): Promise { + const { logo } = await this.assertTournamentOrganizer(tournamentId, user); + + const path = this.buildPath("tournaments", tournamentId, mimetype); + + await this.s3.put(path, buffer); + + if (logo && logo !== path) { + await this.s3.remove(logo); + } + + await this.hasura.mutation({ + update_tournaments_by_pk: { + __args: { + pk_columns: { id: tournamentId }, + _set: { logo: path }, + }, + __typename: true, + }, + }); + + this.logger.log(`Uploaded tournament ${tournamentId} logo to ${path}`); + return path; + } + + async removeTournamentLogo(tournamentId: string, user: User): Promise { + const { logo } = await this.assertTournamentOrganizer(tournamentId, user); + + if (logo) { + await this.s3.remove(logo); + } + + await this.hasura.mutation({ + update_tournaments_by_pk: { + __args: { + pk_columns: { id: tournamentId }, + _set: { logo: null }, + }, + __typename: true, + }, + }); + + this.logger.log(`Removed tournament ${tournamentId} logo`); + } + + async uploadTournamentBanner( + tournamentId: string, + user: User, + buffer: Buffer, + mimetype: string, + ): Promise { + const { banner } = await this.assertTournamentOrganizer(tournamentId, user); + + const path = this.buildPath("tournaments", tournamentId, mimetype); + + await this.s3.put(path, buffer); + + if (banner && banner !== path) { + await this.s3.remove(banner); + } + + await this.hasura.mutation({ + update_tournaments_by_pk: { + __args: { + pk_columns: { id: tournamentId }, + _set: { banner: path }, + }, + __typename: true, + }, + }); + + this.logger.log(`Uploaded tournament ${tournamentId} banner to ${path}`); + return path; + } + + async removeTournamentBanner( + tournamentId: string, + user: User, + ): Promise { + const { banner } = await this.assertTournamentOrganizer(tournamentId, user); + + if (banner) { + await this.s3.remove(banner); + } + + await this.hasura.mutation({ + update_tournaments_by_pk: { + __args: { + pk_columns: { id: tournamentId }, + _set: { banner: null }, + }, + __typename: true, + }, + }); + + this.logger.log(`Removed tournament ${tournamentId} banner`); + } + + // Returns the existing logo/banner paths when the caller may manage the tournament. + private async assertTournamentOrganizer( + tournamentId: string, + user: User, + ): Promise<{ + logo: string | null | undefined; + banner: string | null | undefined; + }> { + const { tournaments_by_pk } = await this.hasura.query({ + tournaments_by_pk: { + __args: { id: tournamentId }, + logo: true, + banner: true, + organizer_steam_id: true, + organizers: { + __args: { + where: { steam_id: { _eq: user.steam_id } }, + limit: 1, + }, + steam_id: true, + }, + }, + }); + + if (!tournaments_by_pk) { + throw new ForbiddenException("Tournament not found"); + } + + const isOrganizer = + user.role === "administrator" || + tournaments_by_pk.organizer_steam_id === user.steam_id || + (tournaments_by_pk.organizers?.length ?? 0) > 0; + + if (!isOrganizer) { + throw new ForbiddenException("You do not organize this tournament"); + } + + return { logo: tournaments_by_pk.logo, banner: tournaments_by_pk.banner }; + } + async getStream( kind: AvatarKind, filename: string, diff --git a/src/custom-pages/custom-pages.controller.ts b/src/custom-pages/custom-pages.controller.ts new file mode 100644 index 000000000..3def378b2 --- /dev/null +++ b/src/custom-pages/custom-pages.controller.ts @@ -0,0 +1,165 @@ +import { Controller, Get, Options, Req, Res } from "@nestjs/common"; +import { Request, Response } from "express"; +import { User } from "../auth/types/User"; +import { isRoleAbove } from "src/utilities/isRoleAbove"; +import { e_player_roles_enum } from "generated"; + +@Controller("custom-pages") +export class CustomPagesController { + @Get("authorize") + public authorize(@Req() request: Request, @Res() response: Response) { + // nginx forward-auth runs this for every request to a custom-page backend, + // including the CORS preflight. Preflight (OPTIONS) requests never carry + // cookies, so gating them would 401 the preflight and surface as a CORS + // error before the real credentialed request is sent. Let them through. + if ( + String(request.headers["x-original-method"]).toUpperCase() === "OPTIONS" + ) { + return response.status(200).end(); + } + + const user = request.user as User | undefined; + if (!user) { + return response.status(401).end(); + } + + // The plugin ingress may pin a minimum role via this header (auth-snippet / + // proxy_set_header); absent means any logged-in user is allowed. + const requiredRole = request.headers["x-5stack-required-role"] as + | e_player_roles_enum + | undefined; + if (requiredRole && !isRoleAbove(user.role, requiredRole)) { + return response.status(403).end(); + } + + response.setHeader("X-5stack-Steam-Id", user.steam_id); + response.setHeader("X-5stack-Role", user.role); + response.setHeader("X-5stack-Name", encodeURIComponent(user.name ?? "")); + return response.status(200).end(); + } + + @Options("authorize") + public authorizePreflight(@Res() response: Response) { + return response.status(200).end(); + } + + // Admin-only: fetch a plugin's 5stack-plugin.json server-side so the settings + // "Detect" button never hits browser CORS (third-party plugins don't need to + // allow-list the panel origin). Resolves relative remoteEntry/icon to + // absolute URLs against the manifest location. + @Get("detect") + public async detect(@Req() request: Request, @Res() response: Response) { + const user = request.user as User | undefined; + if (!user || !isRoleAbove(user.role, "administrator")) { + return response.status(403).json({ error: "forbidden" }); + } + + const raw = String(request.query.url ?? "").trim(); + if (!/^https?:\/\//i.test(raw)) { + return response.status(400).json({ error: "invalid url" }); + } + + if (CustomPagesController.isPrivateHost(raw)) { + return response.status(400).json({ error: "invalid url" }); + } + + const base = raw.replace(/\/+$/, ""); + const manifestUrl = base.endsWith(".json") + ? base + : `${base}/5stack-plugin.json`; + + try { + const res = await fetch(manifestUrl, { + signal: AbortSignal.timeout(5_000), + }); + if (!res.ok) { + return response + .status(502) + .json({ error: `manifest responded ${res.status}` }); + } + const manifest = await res.json(); + const manifestBase = manifestUrl.replace(/\/[^/]*$/, "/"); + + const resolveAsset = (v: unknown): string | null => { + if (typeof v !== "string" || v.length === 0) { + return null; + } + // Inline SVG, absolute URLs, and lucide names are kept as-is; a + // relative path/filename is resolved against the manifest location. + if (v.startsWith("<") || /^(https?:|data:)/i.test(v)) { + return v; + } + if (v.includes("/") || /\.(svg|png|jpe?g|webp|gif)$/i.test(v)) { + return new URL(v, manifestBase).href; + } + return v; + }; + + return response.json({ + name: manifest.name ?? manifest.title ?? null, + slug: manifest.slug ?? null, + icon: resolveAsset(manifest.icon), + remoteEntry: manifest.remoteEntry + ? new URL(manifest.remoteEntry, manifestBase).href + : null, + scope: manifest.scope ?? null, + module: manifest.module ?? manifest.exposedModule ?? null, + requiredRole: manifest.requiredRole ?? null, + }); + } catch { + return response + .status(502) + .json({ error: "could not fetch plugin manifest" }); + } + } + + // Best-effort SSRF guard for the admin-only detect fetch: blocks loopback, + // link-local, private-range IP literals and obvious internal hostnames. + // Hostnames resolving to private IPs are not caught -- admins are trusted; + // this only keeps the endpoint from being a casual internal-network probe. + private static isPrivateHost(rawUrl: string): boolean { + let hostname: string; + try { + hostname = new URL(rawUrl).hostname.toLowerCase(); + } catch { + return true; + } + + if ( + hostname === "localhost" || + hostname.endsWith(".localhost") || + hostname.endsWith(".local") || + hostname.endsWith(".internal") + ) { + return true; + } + + const ipv4 = hostname.match(/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/); + if (ipv4) { + const [a, b] = [Number(ipv4[1]), Number(ipv4[2])]; + return ( + a === 0 || + a === 10 || + a === 127 || + (a === 100 && b >= 64 && b <= 127) || + (a === 169 && b === 254) || + (a === 172 && b >= 16 && b <= 31) || + (a === 192 && b === 168) || + (a === 198 && (b === 18 || b === 19)) + ); + } + + const ipv6 = hostname.replace(/^\[|\]$/g, ""); + if (ipv6.includes(":")) { + return ( + ipv6 === "::1" || + ipv6 === "::" || + /^f[cd]/.test(ipv6) || + /^fe[89ab]/.test(ipv6) || + ipv6.startsWith("::ffff:") + ); + } + + return false; + } +} diff --git a/src/custom-pages/custom-pages.module.ts b/src/custom-pages/custom-pages.module.ts new file mode 100644 index 000000000..2d5caf585 --- /dev/null +++ b/src/custom-pages/custom-pages.module.ts @@ -0,0 +1,7 @@ +import { Module } from "@nestjs/common"; +import { CustomPagesController } from "./custom-pages.controller"; + +@Module({ + controllers: [CustomPagesController], +}) +export class CustomPagesModule {} diff --git a/src/matches/matches.controller.ts b/src/matches/matches.controller.ts index de98be9fe..0aa7ceaef 100644 --- a/src/matches/matches.controller.ts +++ b/src/matches/matches.controller.ts @@ -177,6 +177,8 @@ export class MatchesController { timeout_setting: true, tech_timeout_setting: true, number_of_substitutes: true, + round_restart_delay: true, + halftime_pausematch: true, }, match_maps: { id: true, diff --git a/src/tournaments/tournaments.controller.ts b/src/tournaments/tournaments.controller.ts index f39b8b17a..9bde49475 100644 --- a/src/tournaments/tournaments.controller.ts +++ b/src/tournaments/tournaments.controller.ts @@ -8,6 +8,19 @@ import { User } from "../auth/types/User"; import { DiscordTournamentVoiceService } from "../discord-bot/discord-tournament-voice/discord-tournament-voice.service"; import { tournaments_set_input } from "../../generated"; +// These tables are newer than the generated GraphQL types; event payloads are +// typed locally (mirrors the leagues controller). +type TournamentOrganizerTeamRow = { + tournament_id?: string; + team_id?: string; +}; + +type TeamRosterRow = { + team_id?: string; + player_steam_id?: string; + role?: string; +}; + @Controller("tournaments") export class TournamentsController { constructor( @@ -42,6 +55,175 @@ export class TournamentsController { } } + // Fired when an organisation team is linked to / unlinked from a tournament. + // Linking expands every accepted member of the team into tournament_organizers; + // unlinking removes the organizers that link contributed. + @HasuraEvent() + public async tournament_organizer_team_events( + data: HasuraEventData, + ) { + const tournamentId = (data.new?.tournament_id || + data.old?.tournament_id) as string; + const teamId = (data.new?.team_id || data.old?.team_id) as string; + + if (!tournamentId || !teamId) { + return; + } + + if (data.op === "DELETE") { + await this.removeOrganizationTeamOrganizers(tournamentId, teamId); + await this.syncRemainingOrganizationTeams(tournamentId); + return; + } + + await this.syncOrganizationTeamOrganizers(tournamentId, teamId); + } + + // A tournament_organizers row carries a single organization_team_id, so someone + // on two linked org teams is only ever tagged with the first. Unlinking that team + // drops them even though the other team still entitles them, so re-sync whatever + // links remain to put them back. + private async syncRemainingOrganizationTeams(tournamentId: string) { + const { tournament_organizer_teams } = await this.hasura.query({ + tournament_organizer_teams: { + __args: { + where: { tournament_id: { _eq: tournamentId } }, + }, + team_id: true, + }, + }); + + for (const link of tournament_organizer_teams) { + await this.syncOrganizationTeamOrganizers(tournamentId, link.team_id); + } + } + + // Fired when a team's roster changes. Re-syncs organizers for every tournament + // that uses this team as an organisation team so additions/removals propagate. + @HasuraEvent() + public async tournament_org_roster_events( + data: HasuraEventData, + ) { + const teamId = (data.new?.team_id || data.old?.team_id) as string; + + if (!teamId) { + return; + } + + const { tournament_organizer_teams } = await this.hasura.query({ + tournament_organizer_teams: { + __args: { + where: { team_id: { _eq: teamId } }, + }, + tournament_id: true, + }, + }); + + // Sync the changed team first (it performs the removals), then the + // tournament's other links: a removed member tagged with this team may + // still be entitled by another linked team, which must re-add them. + for (const link of tournament_organizer_teams) { + await this.syncOrganizationTeamOrganizers(link.tournament_id, teamId); + await this.syncRemainingOrganizationTeams(link.tournament_id); + } + } + + // Every roster member of an organisation team. A team_roster row is already an + // accepted member -- pending invites live in team_invites, and e_team_roles + // ("Member" / "Invite" / "Admin") describes roster powers, not invite state, so + // filtering on role here would silently drop real members. + private async getOrganizationTeamSteamIds(teamId: string): Promise { + const { team_roster } = await this.hasura.query({ + team_roster: { + __args: { + where: { + team_id: { _eq: teamId }, + }, + }, + player_steam_id: true, + }, + }); + + return team_roster.map((member) => String(member.player_steam_id)); + } + + private async syncOrganizationTeamOrganizers( + tournamentId: string, + teamId: string, + ) { + const steamIds = await this.getOrganizationTeamSteamIds(teamId); + + const { tournament_organizers: existing } = await this.hasura.query({ + tournament_organizers: { + __args: { + where: { tournament_id: { _eq: tournamentId } }, + }, + steam_id: true, + }, + }); + + const existingSteamIds = new Set( + existing.map((organizer) => String(organizer.steam_id)), + ); + const toInsert = steamIds.filter( + (steamId) => !existingSteamIds.has(steamId), + ); + + if (toInsert.length > 0) { + // on_conflict: concurrent events for the same tournament race between the + // read above and this insert; the PK hit must not fail the whole batch. + await this.hasura.mutation({ + insert_tournament_organizers: { + __args: { + objects: toInsert.map((steam_id) => ({ + steam_id, + tournament_id: tournamentId, + organization_team_id: teamId, + })), + on_conflict: { + constraint: "tournament_organizers_pkey", + update_columns: [], + }, + }, + affected_rows: true, + }, + }); + } + + // Drop organizers this team previously contributed who are no longer on its + // roster. Manually-added organizers (organization_team_id IS NULL) are left + // untouched. + await this.hasura.mutation({ + delete_tournament_organizers: { + __args: { + where: { + tournament_id: { _eq: tournamentId }, + organization_team_id: { _eq: teamId }, + ...(steamIds.length > 0 ? { steam_id: { _nin: steamIds } } : {}), + }, + }, + affected_rows: true, + }, + }); + } + + private async removeOrganizationTeamOrganizers( + tournamentId: string, + teamId: string, + ) { + await this.hasura.mutation({ + delete_tournament_organizers: { + __args: { + where: { + tournament_id: { _eq: tournamentId }, + organization_team_id: { _eq: teamId }, + }, + }, + affected_rows: true, + }, + }); + } + @HasuraAction() public async deleteTournament(data: { user: User; tournament_id: string }) { const { tournament_id } = data; diff --git a/test/match-scoring.spec.ts b/test/match-scoring.spec.ts index 8a84e8aa0..0cfea283d 100644 --- a/test/match-scoring.spec.ts +++ b/test/match-scoring.spec.ts @@ -26,6 +26,11 @@ describe("match scoring from rounds (SQL-driven)", () => { }); beforeEach(async () => { + // Unlink first: cascading tournaments -> brackets fires triggers that also + // touch the linked match, which trips "tuple to be deleted was already + // modified" once both sides go in one command. + await postgres.query("UPDATE tournament_brackets SET match_id = NULL"); + await postgres.query("DELETE FROM tournaments"); await postgres.query("DELETE FROM matches"); await postgres.query("DELETE FROM match_options"); }); @@ -80,9 +85,7 @@ describe("match scoring from rounds (SQL-driven)", () => { // The early snapshot has lineup 1 ahead; the final one flips it. await recordScore(match.mapIds[0], 7, 13); - const [scores] = await postgres.query< - Array<{ s1: number; s2: number }> - >( + const [scores] = await postgres.query>( "SELECT lineup_1_score(mm) AS s1, lineup_2_score(mm) AS s2 FROM match_maps mm WHERE id = $1", [match.mapIds[0]], ); @@ -125,13 +128,174 @@ describe("match scoring from rounds (SQL-driven)", () => { expect(after.winning_lineup_id).toBe(match.lineup_1_id); }); + // Regression: auto-generated clips for map 1's demo land while map 2 is in + // play. The match_clips insert bumps clips_count on the Finished map-1 row, + // which used to re-run update_match_state against map 2's live round + // snapshot and finish the whole series for whoever was momentarily ahead. + it("a clip landing on a finished map mid-series does not end the match early", async () => { + const match = await createLiveMatch(3); + + await recordScore(match.mapIds[0], 5, 13); + await finishMap(match.mapIds[0]); + expect((await matchRow(match.id)).status).toBe("Live"); + + const [{ ended_at: map1EndedAt }] = await postgres.query< + Array<{ ended_at: Date }> + >("SELECT ended_at FROM match_maps WHERE id = $1", [match.mapIds[0]]); + + await postgres.query( + "UPDATE match_maps SET status = 'Live' WHERE id = $1", + [match.mapIds[1]], + ); + await fx.round(match.mapIds[1], 1, { + l1Score: 0, + l2Score: 1, + time: new Date(Date.now() - 30 * 60_000).toISOString(), + }); + await fx.round(match.mapIds[1], 2, { + l1Score: 0, + l2Score: 2, + time: new Date(Date.now() - 25 * 60_000).toISOString(), + }); + + const owner = await fx.player(); + await postgres.query( + `INSERT INTO match_clips (user_steam_id, match_map_id, title, visibility) + VALUES ($1, $2, 'clip', 'private')`, + [owner, match.mapIds[0]], + ); + + const after = await matchRow(match.id); + expect(after.status).toBe("Live"); + expect(after.winning_lineup_id).toBeNull(); + + const [{ ended_at: map1EndedAtAfter }] = await postgres.query< + Array<{ ended_at: Date }> + >("SELECT ended_at FROM match_maps WHERE id = $1", [match.mapIds[0]]); + expect(map1EndedAtAfter.getTime()).toBe(map1EndedAt.getTime()); + + await fx.round(match.mapIds[1], 3, { l1Score: 13, l2Score: 9 }); + await finishMap(match.mapIds[1]); + expect((await matchRow(match.id)).status).toBe("Live"); + + await recordScore(match.mapIds[2], 13, 5); + await finishMap(match.mapIds[2]); + + const done = await matchRow(match.id); + expect(done.status).toBe("Finished"); + expect(done.winning_lineup_id).toBe(match.lineup_1_id); + }); + + it("non-status updates on a live map do not re-stamp started_at", async () => { + const match = await createLiveMatch(1); + + await postgres.query( + "UPDATE match_maps SET status = 'Live' WHERE id = $1", + [match.mapIds[0]], + ); + await postgres.query( + "UPDATE match_maps SET started_at = now() - interval '10 minutes' WHERE id = $1", + [match.mapIds[0]], + ); + const [{ started_at: before }] = await postgres.query< + Array<{ started_at: Date }> + >("SELECT started_at FROM match_maps WHERE id = $1", [match.mapIds[0]]); + + await postgres.query( + "UPDATE match_maps SET lineup_1_timeouts_available = 2 WHERE id = $1", + [match.mapIds[0]], + ); + const [{ started_at: after }] = await postgres.query< + Array<{ started_at: Date }> + >("SELECT started_at FROM match_maps WHERE id = $1", [match.mapIds[0]]); + expect(after.getTime()).toBe(before.getTime()); + }); + + // Attaches the match to a double-elimination bracket row shaped like the + // generator's grand final: path 'WB', no parent, an LB feeder as a child. + // withLbFeeder=false models a parentless WB *final* in a stage that passes + // 2+ teams on (no grand final generated), which must NOT get the advantage. + const linkDoubleElimFinal = async ( + matchId: string, + advantage: number, + { withLbFeeder = true } = {}, + ) => { + const organizer = await fx.player(); + const [{ match_options_id }] = await postgres.query< + Array<{ match_options_id: string }> + >("SELECT match_options_id FROM matches WHERE id = $1", [matchId]); + const [tournament] = await postgres.query>( + `INSERT INTO tournaments (name, start, organizer_steam_id, match_options_id, status) + VALUES ($1, now(), $2, $3, 'Setup') RETURNING id`, + [fx.nextName("de-cup"), organizer, match_options_id], + ); + const [stage] = await postgres.query>( + `INSERT INTO tournament_stages (tournament_id, type, "order", min_teams, max_teams, final_map_advantage) + VALUES ($1, 'DoubleElimination', 1, 4, 8, $2) RETURNING id`, + [tournament.id, advantage], + ); + const [finalBracket] = await postgres.query>( + `INSERT INTO tournament_brackets (tournament_stage_id, round, match_number, path, match_id) + VALUES ($1, 3, 1, 'WB', $2) RETURNING id`, + [stage.id, matchId], + ); + if (withLbFeeder) { + await postgres.query( + `INSERT INTO tournament_brackets (tournament_stage_id, round, match_number, path, parent_bracket_id) + VALUES ($1, 2, 1, 'LB', $2)`, + [stage.id, finalBracket.id], + ); + } + }; + + it("grand final: the winner-bracket team banks final_map_advantage map wins", async () => { + const match = await createLiveMatch(3); + await linkDoubleElimFinal(match.id, 1); + + await recordScore(match.mapIds[0], 13, 7); + await finishMap(match.mapIds[0]); + + const after = await matchRow(match.id); + expect(after.status).toBe("Finished"); + expect(after.winning_lineup_id).toBe(match.lineup_1_id); + }); + + it("a parentless WB final without a grand final gets no advantage", async () => { + const match = await createLiveMatch(3); + await linkDoubleElimFinal(match.id, 1, { withLbFeeder: false }); + + await recordScore(match.mapIds[0], 13, 7); + await finishMap(match.mapIds[0]); + + expect((await matchRow(match.id)).status).toBe("Live"); + }); + + it("an over-sized advantage is clamped below the win threshold", async () => { + const match = await createLiveMatch(3); + await linkDoubleElimFinal(match.id, 2); + + // Unclamped, advantage 2 in a Bo3 would finish the series for lineup 1 + // here despite lineup 2 winning the map. + await recordScore(match.mapIds[0], 7, 13); + await finishMap(match.mapIds[0]); + expect((await matchRow(match.id)).status).toBe("Live"); + + await recordScore(match.mapIds[1], 5, 13); + await finishMap(match.mapIds[1]); + + const after = await matchRow(match.id); + expect(after.status).toBe("Finished"); + expect(after.winning_lineup_id).toBe(match.lineup_2_id); + }); + it("does not overwrite a forfeited match", async () => { const match = await createLiveMatch(1); await recordScore(match.mapIds[0], 13, 7); - await postgres.query("UPDATE matches SET status = 'Forfeit' WHERE id = $1", [ - match.id, - ]); + await postgres.query( + "UPDATE matches SET status = 'Forfeit' WHERE id = $1", + [match.id], + ); await finishMap(match.mapIds[0]); const after = await matchRow(match.id); @@ -142,9 +306,10 @@ describe("match scoring from rounds (SQL-driven)", () => { it("a map going Live stamps started_at and arms the live-match timeout", async () => { const match = await createLiveMatch(1); - await postgres.query("UPDATE match_maps SET status = 'Live' WHERE id = $1", [ - match.mapIds[0], - ]); + await postgres.query( + "UPDATE match_maps SET status = 'Live' WHERE id = $1", + [match.mapIds[0]], + ); const [map] = await postgres.query>( "SELECT started_at FROM match_maps WHERE id = $1", diff --git a/test/tournament-roster-duplicate.spec.ts b/test/tournament-roster-duplicate.spec.ts new file mode 100644 index 000000000..9848a90ca --- /dev/null +++ b/test/tournament-roster-duplicate.spec.ts @@ -0,0 +1,217 @@ +import { PostgresService } from "./../src/postgres/postgres.service"; +import { Fixtures } from "./utils/fixtures"; +import { bootMigratedDb, runAsUser, SqlTestDb } from "./utils/sql-test-db"; + +// Reproduces the "duplicate key value violates unique constraint +// tournament_roster_pkey" error seen when adding a team to a tournament. +// +// tournament_roster_pkey is PRIMARY KEY (player_steam_id, tournament_id) — a +// player may be on only ONE team per tournament. The tai_tournament_team +// auto-fill path dedupes against the whole tournament to respect this, but it +// only runs when the client does NOT supply a roster. The web join form always +// sends an explicit nested roster.data, bypassing that guard, so a supplied +// player who is already rostered elsewhere in the tournament hits the PK. +describe("tournament roster duplicate key (SQL-driven)", () => { + let db: SqlTestDb; + let postgres: PostgresService; + let fx: Fixtures; + + beforeAll(async () => { + db = await bootMigratedDb("TournamentRosterDupeTest"); + postgres = db.postgres; + fx = new Fixtures(postgres, 76561199000000000n); + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + beforeEach(async () => { + await postgres.query("DELETE FROM matches"); + await postgres.query("DELETE FROM tournaments"); + await postgres.query("DELETE FROM match_options"); + await postgres.query("DELETE FROM teams"); + await postgres.query("DELETE FROM players"); + }); + + const createTournament = async () => { + const organizer = await fx.player(); + const [options] = await postgres.query>( + `INSERT INTO match_options (mr, best_of, type, map_pool_id, map_veto, region_veto, regions) + SELECT 8, 1, 'Wingman', id, false, true, '{TestA}' + FROM map_pools WHERE type = 'Wingman' AND seed = true RETURNING id`, + ); + const [tournament] = await postgres.query>( + `INSERT INTO tournaments (name, start, organizer_steam_id, match_options_id, status) + VALUES ($1, now() + interval '1 day', $2, $3, 'Setup') RETURNING id`, + [fx.nextName("cup"), organizer, options.id], + ); + return { id: tournament.id, organizer }; + }; + + const registerRealTeam = ( + tournamentId: string, + team: { id: string; owner: string }, + ) => + runAsUser(postgres, team.owner, "admin", async (query) => { + const [row] = (await query( + `INSERT INTO tournament_teams (tournament_id, team_id, name) + SELECT $1, id, name FROM teams WHERE id = $2 RETURNING id`, + [tournamentId, team.id], + )) as Array<{ id: string }>; + return row.id; + }); + + it("has a composite primary key on (player_steam_id, tournament_id)", async () => { + const cols = await postgres.query>( + `SELECT a.attname AS column_name + FROM pg_constraint c + JOIN pg_attribute a ON a.attrelid = c.conrelid AND a.attnum = ANY (c.conkey) + WHERE c.conname = 'tournament_roster_pkey' + ORDER BY a.attname`, + ); + expect(cols.map((c) => c.column_name).sort()).toEqual([ + "player_steam_id", + "tournament_id", + ]); + }); + + it("reproduces the bug: an explicit client roster with a player already in the tournament violates tournament_roster_pkey", async () => { + const { id: tournamentId, organizer } = await createTournament(); + + // Team A registers first; its owner is now rostered in the tournament. + const teamA = await fx.team(1); + await registerRealTeam(tournamentId, teamA); + + // The web join form adds a second (tournament-only) team and supplies an + // explicit roster.data that includes teamA.owner (e.g. add_self / an owner + // already playing in the tournament). This is the raw insert Hasura runs. + await expect( + runAsUser(postgres, organizer, "admin", async (query) => { + const [teamB] = (await query( + `INSERT INTO tournament_teams (tournament_id, team_id, name, owner_steam_id) + VALUES ($1, NULL, $2, $3) RETURNING id`, + [tournamentId, fx.nextName("bteam"), organizer], + )) as Array<{ id: string }>; + + await query( + `INSERT INTO tournament_team_roster (tournament_team_id, player_steam_id, tournament_id) + VALUES ($1, $2, $3)`, + [teamB.id, teamA.owner, tournamentId], + ); + }), + ).rejects.toThrow(/tournament_roster_pkey/); + }); + + it("the auto-fill path (no client roster) tolerates a shared player instead of raising", async () => { + const { id: tournamentId } = await createTournament(); + + const teamA = await fx.team(1); + await registerRealTeam(tournamentId, teamA); + + // Team B shares teamA.owner as a member, but registers WITHOUT a client + // roster, so tai_tournament_team auto-fills and dedupes the shared player. + const teamB = await fx.team(1); + await runAsUser(postgres, teamB.owner, "admin", (query) => + query( + "INSERT INTO team_roster (team_id, player_steam_id, status) VALUES ($1, $2, 'Starter')", + [teamB.id, teamA.owner], + ), + ); + + const teamBTournamentId = await registerRealTeam(tournamentId, teamB); + + // The shared player stays on team A only; team B got its own members. + const [{ count: sharedTeams }] = await postgres.query< + Array<{ count: string }> + >( + `SELECT count(*)::int AS count FROM tournament_team_roster + WHERE tournament_id = $1 AND player_steam_id = $2`, + [tournamentId, teamA.owner], + ); + expect(sharedTeams).toBe(1); + + const [{ count: teamBSize }] = await postgres.query< + Array<{ count: string }> + >( + `SELECT count(*)::int AS count FROM tournament_team_roster + WHERE tournament_team_id = $1`, + [teamBTournamentId], + ); + expect(teamBSize).toBeGreaterThan(0); + }); + + const memberIds = async (teamId: string) => { + const rows = await postgres.query>( + "SELECT player_steam_id FROM team_roster WHERE team_id = $1", + [teamId], + ); + return rows.map((r) => r.player_steam_id); + }; + + // The reported scenario: a BRAND NEW tournament, no teams/members yet, and the + // very first team added is an existing real team with a client-supplied roster. + // Hasura runs the nested insert as separate statements in one transaction, so + // the tai_tournament_team auto-fill (deferred to COMMIT) fires only after the + // client roster is present, sees it, and skips — no self-collision, and the + // client's subset selection is honored rather than overwritten by auto-fill. + it("first team + client roster: deferred auto-fill honors the selection without colliding", async () => { + const { id: tournamentId } = await createTournament(); + const teamA = await fx.team(1); // owner + one mate on the team roster + const roster = await memberIds(teamA.id); + const selected = [roster[0]]; // client picks a subset (one player) + + const ttId = await runAsUser( + postgres, + teamA.owner, + "admin", + async (query) => { + const [tt] = (await query( + `INSERT INTO tournament_teams (tournament_id, team_id, name) + SELECT $1, id, name FROM teams WHERE id = $2 RETURNING id`, + [tournamentId, teamA.id], + )) as Array<{ id: string }>; + + for (const steamId of selected) { + await query( + `INSERT INTO tournament_team_roster (tournament_team_id, player_steam_id, tournament_id) + VALUES ($1, $2, $3)`, + [tt.id, steamId, tournamentId], + ); + } + return tt.id; + }, + ); + + const rows = await postgres.query>( + `SELECT player_steam_id FROM tournament_team_roster WHERE tournament_team_id = $1`, + [ttId], + ); + expect(rows.map((r) => r.player_steam_id).sort()).toEqual(selected.sort()); + }); + + it("SINGLE-statement CTE (Hasura-style nested insert): auto-fill sees the client roster and skips", async () => { + const { id: tournamentId } = await createTournament(); + const teamA = await fx.team(1); + const roster = await memberIds(teamA.id); + + await runAsUser(postgres, teamA.owner, "admin", (query) => + query( + `WITH nt AS ( + INSERT INTO tournament_teams (tournament_id, team_id, name) + SELECT $1, id, name FROM teams WHERE id = $2 RETURNING id + ) + INSERT INTO tournament_team_roster (tournament_team_id, player_steam_id, tournament_id) + SELECT nt.id, s, $1 FROM nt, unnest($3::bigint[]) AS s`, + [tournamentId, teamA.id, roster], + ), + ); + + const [{ count }] = await postgres.query>( + `SELECT count(*)::int AS count FROM tournament_team_roster + WHERE tournament_id = $1`, + [tournamentId], + ); + expect(count).toBe(roster.length); + }); +});