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..2ebbfaf5b 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -25,606 +25,591 @@ 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, - 570, - 580, - 584, - 590, + 556, + 557, + 567, + 571, + 577, + 578, + 587, 591, - 600, - 604, - 610, - 611, - 621, - 625, - 631, - 632, - 642, - 646, - 652, - 653, - 663, - 667, - 673, - 674, - 684, - 688, - 694, - 695, - 705, - 709, - 715, - 716, - 726, - 730, - 736, + 597, + 598, + 608, + 612, + 618, + 619, + 629, + 633, + 639, + 640, + 650, + 654, + 660, + 661, + 671, + 675, + 681, + 682, + 692, + 696, + 702, + 703, + 713, + 717, + 723, + 724, + 733, 737, - 746, - 750, - 756, - 757, - 767, - 771, - 777, + 743, + 744, + 754, + 758, + 764, + 765, + 774, 778, - 787, - 791, - 797, - 798, - 808, - 812, - 818, + 784, + 785, + 795, + 799, + 805, + 806, + 815, 819, - 828, - 832, - 838, - 839, - 849, - 853, - 859, - 860, - 870, - 874, - 880, + 825, + 826, + 836, + 840, + 846, + 847, + 857, + 861, + 867, + 868, + 877, 881, - 890, - 894, - 900, + 887, + 888, + 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, - 981, - 991, - 995, - 1001, + 967, + 968, + 978, + 982, + 988, + 989, + 998, 1002, - 1011, - 1015, - 1021, + 1008, + 1009, + 1018, 1022, - 1031, - 1035, - 1041, + 1028, + 1029, + 1038, 1042, - 1051, - 1055, - 1061, + 1048, + 1049, + 1058, 1062, - 1071, - 1075, - 1081, - 1082, - 1092, - 1096, - 1102, + 1068, + 1069, + 1079, + 1083, + 1089, + 1090, + 1099, 1103, - 1112, - 1116, - 1122, + 1109, + 1110, + 1119, 1123, - 1132, - 1136, - 1142, - 1143, - 1153, - 1157, - 1163, - 1164, - 1174, - 1178, - 1184, - 1185, - 1194, - 1198, - 1204, - 1205, - 1214, - 1218, - 1224, - 1225, - 1234, - 1238, - 1244, - 1252, - 1256, - 1268, + 1129, + 1130, + 1140, + 1144, + 1150, + 1151, + 1161, + 1165, + 1171, + 1172, + 1182, + 1186, + 1192, + 1193, + 1202, + 1206, + 1212, + 1213, + 1222, + 1226, + 1232, + 1233, + 1242, + 1246, + 1248, + 1255, + 1264, + 1272, 1290, - 1301, - 1313, - 1321, - 1333, - 1351, - 1362, - 1374, - 1392, - 1403, - 1415, - 1431, - 1441, - 1445, - 1455, + 1306, + 1307, + 1308, + 1320, + 1334, + 1348, + 1356, + 1367, + 1380, + 1388, + 1396, + 1398, + 1400, + 1414, + 1432, + 1442, + 1450, 1465, - 1469, 1476, - 1486, - 1494, - 1499, + 1488, 1506, - 1515, - 1523, - 1541, - 1557, + 1517, + 1529, + 1547, 1558, - 1559, - 1571, - 1585, - 1599, - 1607, - 1618, + 1570, + 1586, + 1597, + 1601, + 1609, + 1623, 1631, - 1639, - 1648, - 1650, - 1652, - 1666, - 1684, - 1694, - 1702, - 1717, + 1646, + 1657, + 1669, + 1687, + 1698, + 1710, 1728, 1740, - 1758, - 1769, - 1781, - 1799, + 1752, + 1764, + 1773, + 1777, + 1783, + 1792, + 1796, 1810, + 1821, 1822, - 1838, - 1849, - 1853, - 1861, - 1875, + 1823, + 1835, + 1847, + 1856, + 1860, + 1872, 1883, - 1898, - 1909, - 1921, - 1939, - 1950, - 1962, - 1980, - 1992, + 1884, + 1885, + 1889, + 1901, + 1913, + 1925, + 1944, + 1959, + 1971, + 1991, + 2002, + 2003, 2004, 2016, - 2025, - 2029, - 2035, - 2044, - 2048, - 2062, - 2073, - 2074, - 2075, - 2087, - 2099, - 2108, - 2112, - 2124, - 2135, - 2136, - 2137, - 2141, - 2153, - 2165, - 2177, - 2196, - 2211, - 2223, - 2243, - 2254, - 2255, - 2256, - 2268, - 2286, - 2298, - 2310, - 2331, - 2347, - 2348, - 2349, - 2361, - 2379, + 2034, + 2046, + 2058, + 2079, + 2095, + 2096, + 2097, + 2109, + 2127, + 2138, + 2150, + 2166, + 2176, + 2180, + 2192, + 2204, + 2216, + 2229, + 2239, + 2247, + 2260, + 2270, + 2274, + 2289, + 2304, + 2305, + 2306, + 2318, + 2330, + 2338, + 2342, + 2354, + 2366, + 2378, 2390, + 2398, 2402, - 2418, - 2428, - 2432, - 2444, - 2456, - 2468, - 2481, - 2491, - 2499, - 2512, - 2522, - 2526, - 2541, - 2556, - 2557, - 2558, - 2570, - 2582, - 2590, + 2429, + 2430, + 2431, + 2455, + 2464, + 2472, + 2490, + 2505, + 2506, + 2507, + 2519, + 2527, + 2529, + 2540, + 2551, + 2563, + 2576, + 2586, 2594, - 2606, - 2618, - 2630, - 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, - 2992, + 2604, + 2613, + 2621, + 2636, + 2647, + 2659, + 2679, + 2690, + 2691, + 2692, + 2704, + 2720, + 2740, + 2751, + 2763, + 2776, + 2785, + 2793, + 2808, + 2819, + 2831, + 2851, + 2862, + 2863, + 2864, + 2876, + 2906, + 2917, + 2929, + 2937, + 2948, + 2949, + 2950, + 2962, + 2981, 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, - 3406, - 3417, - 3429, - 3447, - 3458, + 3014, + 3026, + 3042, + 3068, + 3095, + 3106, + 3118, + 3134, + 3154, + 3165, + 3177, + 3195, + 3206, + 3218, + 3246, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3277, + 3290, + 3300, + 3308, + 3319, + 3332, + 3340, + 3350, + 3359, + 3367, + 3382, + 3393, + 3405, + 3423, + 3434, + 3446, 3470, - 3498, - 3509, + 3492, + 3502, 3510, - 3511, - 3512, - 3513, - 3514, - 3515, - 3516, - 3517, + 3520, 3529, - 3542, - 3552, - 3560, - 3571, - 3584, - 3592, - 3602, - 3611, - 3619, - 3634, - 3645, - 3657, + 3537, + 3551, + 3561, + 3569, + 3579, + 3588, + 3596, + 3613, + 3625, + 3626, + 3627, + 3639, + 3651, + 3659, + 3663, + 3665, 3675, - 3686, - 3698, - 3722, - 3744, - 3754, - 3762, - 3772, - 3781, - 3789, - 3803, - 3813, - 3821, - 3831, - 3840, - 3848, - 3865, - 3877, - 3878, + 3685, + 3689, + 3696, + 3706, + 3714, + 3724, + 3733, + 3741, + 3756, + 3767, + 3779, + 3799, + 3810, + 3811, + 3812, + 3824, + 3837, + 3846, + 3854, + 3869, 3879, - 3891, - 3903, - 3911, - 3915, - 3917, - 3927, - 3937, - 3941, - 3948, - 3958, + 3880, + 3881, + 3885, + 3897, + 3908, + 3920, + 3940, + 3952, + 3953, + 3954, 3966, - 3976, - 3985, - 3993, - 4008, - 4019, - 4031, - 4051, - 4062, - 4063, - 4064, + 3979, + 3989, + 3997, + 4007, + 4016, + 4024, + 4041, + 4053, + 4054, + 4055, + 4067, + 4075, 4076, - 4089, - 4098, - 4106, - 4121, - 4131, + 4090, + 4102, + 4103, + 4104, + 4116, 4132, - 4133, - 4137, - 4149, - 4160, - 4172, - 4192, - 4204, + 4142, + 4146, + 4156, + 4166, + 4170, + 4182, + 4193, 4205, - 4206, - 4218, - 4231, - 4241, - 4249, - 4259, - 4268, - 4276, - 4291, - 4303, - 4315, - 4323, + 4223, + 4234, + 4246, + 4264, + 4275, + 4287, + 4308, 4324, + 4325, + 4326, 4338, - 4350, - 4351, - 4352, - 4364, - 4382, - 4393, - 4405, - 4423, - 4434, - 4446, - 4467, - 4483, - 4484, - 4485, - 4497, - 4515, - 4526, - 4538, - 4556, - 4567, + 4356, + 4367, + 4379, + 4397, + 4408, + 4420, + 4438, + 4450, + 4462, + 4482, + 4493, + 4494, + 4495, + 4507, + 4525, + 4537, + 4549, 4579, + 4591, + 4592, + 4593, + 4594, + 4595, + 4596, 4597, - 4609, + 4598, + 4599, + 4600, + 4601, + 4613, 4621, - 4641, - 4652, - 4653, - 4654, - 4666, - 4684, - 4696, + 4632, + 4658, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, 4708, - 4728, - 4740, - 4741, - 4742, - 4754, - 4762, + 4709, + 4738, + 4766, 4791, - 4792, - 4793, - 4794, - 4795, - 4796, - 4797, - 4798, - 4799, - 4824, - 4850, - 4893, + 4809, + 4827, + 4848, + 4868, 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4930, - 4958, - 4983, - 5001, - 5019, - 5040, - 5060, - 5086, - 5111, - 5129, - 5165, - 5166, - 5167, - 5168, - 5169, - 5170, - 5171, - 5172, - 5173, - 5198, - 5216, - 5234, - 5262, - 5289, - 5307, - 5325, - 5351, - 5376, - 5394, - 5421, - 5422, - 5423, + 4919, + 4937, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 5006, + 5024, + 5042, + 5070, + 5097, + 5115, + 5133, + 5159, + 5184, + 5202, + 5229, + 5230, + 5231, + 5244, + 5264, + 5284, + 5314, + 5326, + 5327, + 5328, + 5329, + 5330, + 5331, + 5332, + 5333, + 5334, + 5346, + 5380, + 5381, + 5382, + 5383, + 5384, + 5385, + 5386, + 5387, + 5388, + 5431, + 5432, + 5433, + 5434, + 5435, 5436, - 5456, - 5476, - 5506, - 5518, - 5519, - 5520, - 5521, - 5522, - 5523, - 5524, - 5525, - 5526, - 5538, - 5572, - 5573, - 5574, - 5575, - 5576, - 5577, - 5578, - 5579, - 5580, - 5623, - 5624, - 5625, - 5626, - 5627, - 5628, - 5629, - 5630, - 5631 + 5437, + 5438, + 5439 ], "types": { "ActiveConnection": { @@ -641,7 +626,7 @@ export default { 78 ], "query_start": [ - 4323 + 4075 ], "state": [ 78 @@ -670,7 +655,7 @@ export default { 78 ], "query_start": [ - 4323 + 4075 ], "state": [ 78 @@ -768,7 +753,7 @@ export default { 38 ], "payload": [ - 1652 + 1400 ], "start_ms": [ 38 @@ -802,7 +787,7 @@ export default { 78 ], "match_map_id": [ - 4762 + 4621 ], "output": [ 6 @@ -862,7 +847,7 @@ export default { }, "CpuStat": { "time": [ - 4323 + 4075 ], "total": [ 180 @@ -879,7 +864,7 @@ export default { }, "CreateClipRenderOutput": { "job_id": [ - 4762 + 4621 ], "success": [ 3 @@ -890,7 +875,7 @@ export default { }, "CreateDraftGameOutput": { "draftGameId": [ - 4762 + 4621 ], "__typename": [ 78 @@ -898,7 +883,7 @@ export default { }, "CreateScheduledMatchOutput": { "matchId": [ - 4762 + 4621 ], "__typename": [ 78 @@ -1054,7 +1039,7 @@ export default { 20 ], "time": [ - 4323 + 4075 ], "__typename": [ 78 @@ -1080,7 +1065,7 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "mode": [ 78 @@ -1159,7 +1144,7 @@ export default { 3 ], "modified": [ - 4323 + 4075 ], "name": [ 78 @@ -1263,7 +1248,7 @@ export default { 32 ], "time": [ - 4323 + 4075 ], "__typename": [ 78 @@ -1505,7 +1490,7 @@ export default { 78 ], "player": [ - 3739 + 3487 ], "profile_url": [ 78 @@ -1522,7 +1507,7 @@ export default { }, "MemoryStat": { "time": [ - 4323 + 4075 ], "total": [ 180 @@ -1539,7 +1524,7 @@ export default { 49 ], "time": [ - 4323 + 4075 ], "__typename": [ 78 @@ -1559,7 +1544,7 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "published_at": [ 78 @@ -2317,16 +2302,16 @@ export default { 38 ], "last_analyze": [ - 4323 + 4075 ], "last_autoanalyze": [ - 4323 + 4075 ], "last_autovacuum": [ - 4323 + 4075 ], "last_vacuum": [ - 4323 + 4075 ], "n_dead_tup": [ 38 @@ -2400,7 +2385,7 @@ export default { 78 ], "next_start": [ - 4323 + 4075 ], "__typename": [ 78 @@ -2422,7 +2407,7 @@ export default { }, "TournamentMatchResetImpact": { "bracket_id": [ - 4762 + 4621 ], "depth": [ 38 @@ -2431,7 +2416,7 @@ export default { 3 ], "match_id": [ - 4762 + 4621 ], "match_number": [ 38 @@ -2474,10 +2459,10 @@ export default { }, "_map_pool": { "map_id": [ - 4762 + 4621 ], "map_pool_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -2528,10 +2513,10 @@ export default { 95 ], "map_id": [ - 4764 + 4623 ], "map_pool_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -2540,10 +2525,10 @@ export default { "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 4762 + 4621 ], "map_pool_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -2551,10 +2536,10 @@ export default { }, "_map_pool_max_fields": { "map_id": [ - 4762 + 4621 ], "map_pool_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -2562,10 +2547,10 @@ export default { }, "_map_pool_min_fields": { "map_id": [ - 4762 + 4621 ], "map_pool_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -2598,10 +2583,10 @@ export default { }, "_map_pool_order_by": { "map_id": [ - 2781 + 2529 ], "map_pool_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -2609,10 +2594,10 @@ export default { }, "_map_pool_pk_columns_input": { "map_id": [ - 4762 + 4621 ], "map_pool_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -2621,10 +2606,10 @@ export default { "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 4762 + 4621 ], "map_pool_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -2643,10 +2628,10 @@ export default { }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 4762 + 4621 ], "map_pool_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -2667,10 +2652,10 @@ export default { "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "steam_id": [ 180 @@ -2767,7 +2752,7 @@ export default { 119 ], "count": [ - 2781 + 2529 ], "max": [ 125 @@ -2821,7 +2806,7 @@ export default { }, "abandoned_matches_avg_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -2838,10 +2823,10 @@ export default { 120 ], "abandoned_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "steam_id": [ 182 @@ -2861,10 +2846,10 @@ export default { }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "steam_id": [ 180 @@ -2875,10 +2860,10 @@ export default { }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "steam_id": [ 180 @@ -2889,13 +2874,13 @@ export default { }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -2903,10 +2888,10 @@ export default { }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "steam_id": [ 180 @@ -2917,13 +2902,13 @@ export default { }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -2956,13 +2941,13 @@ export default { }, "abandoned_matches_order_by": { "abandoned_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -2970,7 +2955,7 @@ export default { }, "abandoned_matches_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -2979,10 +2964,10 @@ export default { "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "steam_id": [ 180 @@ -3001,7 +2986,7 @@ export default { }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -3017,7 +3002,7 @@ export default { }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -3033,7 +3018,7 @@ export default { }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -3052,10 +3037,10 @@ export default { }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "steam_id": [ 180 @@ -3074,7 +3059,7 @@ export default { }, "abandoned_matches_sum_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -3105,7 +3090,7 @@ export default { }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -3121,7 +3106,7 @@ export default { }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -3137,7 +3122,7 @@ export default { }, "abandoned_matches_variance_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -3145,16 +3130,16 @@ export default { }, "api_keys": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "label": [ 78 ], "last_used_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -3240,16 +3225,16 @@ export default { 156 ], "created_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "label": [ 80 ], "last_used_at": [ - 4325 + 4077 ], "steam_id": [ 182 @@ -3269,16 +3254,16 @@ export default { }, "api_keys_insert_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "label": [ 78 ], "last_used_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -3289,16 +3274,16 @@ export default { }, "api_keys_max_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "label": [ 78 ], "last_used_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -3309,16 +3294,16 @@ export default { }, "api_keys_min_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "label": [ 78 ], "last_used_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -3354,19 +3339,19 @@ export default { }, "api_keys_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "last_used_at": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -3374,7 +3359,7 @@ export default { }, "api_keys_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -3383,16 +3368,16 @@ export default { "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "label": [ 78 ], "last_used_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -3438,16 +3423,16 @@ export default { }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "label": [ 78 ], "last_used_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -3505,7 +3490,7 @@ export default { }, "approve_league_season_movements_args": { "_league_season_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -3617,49 +3602,49 @@ export default { }, "clip_render_jobs": { "clip": [ - 2143 + 1891 ], "clip_id": [ - 4762 + 4621 ], "created_at": [ - 4324 + 4076 ], "error_message": [ 78 ], "game_server_node": [ - 1528 + 1277 ], "game_server_node_id": [ 78 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4324 + 4076 ], "match_map": [ - 2434 + 2182 ], "match_map_demo": [ - 2318 + 2066 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "paused": [ 3 ], "progress": [ - 2779 + 2527 ], "session_token": [ 78 @@ -3668,7 +3653,7 @@ export default { 38 ], "spec": [ - 1652, + 1400, { "path": [ 78 @@ -3679,7 +3664,7 @@ export default { 78 ], "status_history": [ - 1652, + 1400, { "path": [ 78 @@ -3687,7 +3672,7 @@ export default { } ], "user": [ - 3739 + 3487 ], "user_steam_id": [ 180 @@ -3824,7 +3809,7 @@ export default { 196 ], "count": [ - 2781 + 2529 ], "max": [ 205 @@ -3859,10 +3844,10 @@ export default { }, "clip_render_jobs_append_input": { "spec": [ - 1652 + 1400 ], "status_history": [ - 1652 + 1400 ], "__typename": [ 78 @@ -3895,13 +3880,13 @@ export default { }, "clip_render_jobs_avg_order_by": { "progress": [ - 2781 + 2529 ], "sort_index": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -3918,49 +3903,49 @@ export default { 197 ], "clip": [ - 2152 + 1900 ], "clip_id": [ - 4764 + 4623 ], "created_at": [ - 4325 + 4077 ], "error_message": [ 80 ], "game_server_node": [ - 1540 + 1289 ], "game_server_node_id": [ 80 ], "id": [ - 4764 + 4623 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4325 + 4077 ], "match_map": [ - 2443 + 2191 ], "match_map_demo": [ - 2330 + 2078 ], "match_map_demo_id": [ - 4764 + 4623 ], "match_map_id": [ - 4764 + 4623 ], "paused": [ 4 ], "progress": [ - 2780 + 2528 ], "session_token": [ 80 @@ -3969,16 +3954,16 @@ export default { 39 ], "spec": [ - 1654 + 1402 ], "status": [ 80 ], "status_history": [ - 1654 + 1402 ], "user": [ - 3743 + 3491 ], "user_steam_id": [ 182 @@ -4023,7 +4008,7 @@ export default { }, "clip_render_jobs_inc_input": { "progress": [ - 2779 + 2527 ], "sort_index": [ 38 @@ -4037,49 +4022,49 @@ export default { }, "clip_render_jobs_insert_input": { "clip": [ - 2161 + 1909 ], "clip_id": [ - 4762 + 4621 ], "created_at": [ - 4324 + 4076 ], "error_message": [ 78 ], "game_server_node": [ - 1552 + 1301 ], "game_server_node_id": [ 78 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4324 + 4076 ], "match_map": [ - 2452 + 2200 ], "match_map_demo": [ - 2342 + 2090 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "paused": [ 3 ], "progress": [ - 2779 + 2527 ], "session_token": [ 78 @@ -4088,16 +4073,16 @@ export default { 38 ], "spec": [ - 1652 + 1400 ], "status": [ 78 ], "status_history": [ - 1652 + 1400 ], "user": [ - 3750 + 3498 ], "user_steam_id": [ 180 @@ -4108,10 +4093,10 @@ export default { }, "clip_render_jobs_max_fields": { "clip_id": [ - 4762 + 4621 ], "created_at": [ - 4324 + 4076 ], "error_message": [ 78 @@ -4120,22 +4105,22 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4324 + 4076 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "progress": [ - 2779 + 2527 ], "session_token": [ 78 @@ -4155,46 +4140,46 @@ export default { }, "clip_render_jobs_max_order_by": { "clip_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "error_message": [ - 2781 + 2529 ], "game_server_node_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "k8s_job_name": [ - 2781 + 2529 ], "last_status_at": [ - 2781 + 2529 ], "match_map_demo_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "progress": [ - 2781 + 2529 ], "session_token": [ - 2781 + 2529 ], "sort_index": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -4202,10 +4187,10 @@ export default { }, "clip_render_jobs_min_fields": { "clip_id": [ - 4762 + 4621 ], "created_at": [ - 4324 + 4076 ], "error_message": [ 78 @@ -4214,22 +4199,22 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4324 + 4076 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "progress": [ - 2779 + 2527 ], "session_token": [ 78 @@ -4249,46 +4234,46 @@ export default { }, "clip_render_jobs_min_order_by": { "clip_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "error_message": [ - 2781 + 2529 ], "game_server_node_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "k8s_job_name": [ - 2781 + 2529 ], "last_status_at": [ - 2781 + 2529 ], "match_map_demo_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "progress": [ - 2781 + 2529 ], "session_token": [ - 2781 + 2529 ], "sort_index": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -4321,70 +4306,70 @@ export default { }, "clip_render_jobs_order_by": { "clip": [ - 2163 + 1911 ], "clip_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "error_message": [ - 2781 + 2529 ], "game_server_node": [ - 1554 + 1303 ], "game_server_node_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "k8s_job_name": [ - 2781 + 2529 ], "last_status_at": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_demo": [ - 2344 + 2092 ], "match_map_demo_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "paused": [ - 2781 + 2529 ], "progress": [ - 2781 + 2529 ], "session_token": [ - 2781 + 2529 ], "sort_index": [ - 2781 + 2529 ], "spec": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "status_history": [ - 2781 + 2529 ], "user": [ - 3752 + 3500 ], "user_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -4392,7 +4377,7 @@ export default { }, "clip_render_jobs_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -4400,10 +4385,10 @@ export default { }, "clip_render_jobs_prepend_input": { "spec": [ - 1652 + 1400 ], "status_history": [ - 1652 + 1400 ], "__typename": [ 78 @@ -4414,10 +4399,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 + 4621 ], "created_at": [ - 4324 + 4076 ], "error_message": [ 78 @@ -4426,25 +4411,25 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4324 + 4076 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "paused": [ 3 ], "progress": [ - 2779 + 2527 ], "session_token": [ 78 @@ -4453,13 +4438,13 @@ export default { 38 ], "spec": [ - 1652 + 1400 ], "status": [ 78 ], "status_history": [ - 1652 + 1400 ], "user_steam_id": [ 180 @@ -4484,13 +4469,13 @@ export default { }, "clip_render_jobs_stddev_order_by": { "progress": [ - 2781 + 2529 ], "sort_index": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -4512,13 +4497,13 @@ export default { }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 2781 + 2529 ], "sort_index": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -4540,13 +4525,13 @@ export default { }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 2781 + 2529 ], "sort_index": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -4565,10 +4550,10 @@ export default { }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 4762 + 4621 ], "created_at": [ - 4324 + 4076 ], "error_message": [ 78 @@ -4577,25 +4562,25 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4324 + 4076 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "paused": [ 3 ], "progress": [ - 2779 + 2527 ], "session_token": [ 78 @@ -4604,13 +4589,13 @@ export default { 38 ], "spec": [ - 1652 + 1400 ], "status": [ 78 ], "status_history": [ - 1652 + 1400 ], "user_steam_id": [ 180 @@ -4621,7 +4606,7 @@ export default { }, "clip_render_jobs_sum_fields": { "progress": [ - 2779 + 2527 ], "sort_index": [ 38 @@ -4635,13 +4620,13 @@ export default { }, "clip_render_jobs_sum_order_by": { "progress": [ - 2781 + 2529 ], "sort_index": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -4693,13 +4678,13 @@ export default { }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 2781 + 2529 ], "sort_index": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -4721,13 +4706,13 @@ export default { }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 2781 + 2529 ], "sort_index": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -4749,13 +4734,13 @@ export default { }, "clip_render_jobs_variance_order_by": { "progress": [ - 2781 + 2529 ], "sort_index": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -4763,31 +4748,61 @@ export default { }, "clone_league_season_args": { "_league_season_id": [ - 4762 + 4621 ], "__typename": [ 78 ] }, "cursor_ordering": {}, - "db_backups": { + "custom_pages": { "created_at": [ - 4324 + 4076 + ], + "enabled": [ + 3 + ], + "exposed_module": [ + 78 + ], + "icon": [ + 78 ], "id": [ - 4762 + 4621 ], - "name": [ + "is_default": [ + 3 + ], + "nav_group": [ 78 ], - "size": [ + "nav_order": [ 38 ], + "remote_entry_url": [ + 78 + ], + "remote_scope": [ + 78 + ], + "required_role": [ + 908 + ], + "slug": [ + 78 + ], + "title": [ + 78 + ], + "updated_at": [ + 4076 + ], "__typename": [ 78 ] }, - "db_backups_aggregate": { + "custom_pages_aggregate": { "aggregate": [ 239 ], @@ -4798,7 +4813,7 @@ export default { 78 ] }, - "db_backups_aggregate_fields": { + "custom_pages_aggregate_fields": { "avg": [ 240 ], @@ -4807,7 +4822,7 @@ export default { { "columns": [ 251, - "[db_backups_select_column!]" + "[custom_pages_select_column!]" ], "distinct": [ 3 @@ -4845,15 +4860,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 +4879,538 @@ export default { 241 ], "created_at": [ - 4325 + 4077 + ], + "enabled": [ + 4 + ], + "exposed_module": [ + 80 + ], + "icon": [ + 80 ], "id": [ - 4764 + 4623 + ], + "is_default": [ + 4 + ], + "nav_group": [ + 80 + ], + "nav_order": [ + 39 + ], + "remote_entry_url": [ + 80 + ], + "remote_scope": [ + 80 + ], + "required_role": [ + 909 + ], + "slug": [ + 80 + ], + "title": [ + 80 + ], + "updated_at": [ + 4077 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_constraint": {}, + "custom_pages_inc_input": { + "nav_order": [ + 38 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_insert_input": { + "created_at": [ + 4076 + ], + "enabled": [ + 3 + ], + "exposed_module": [ + 78 + ], + "icon": [ + 78 + ], + "id": [ + 4621 + ], + "is_default": [ + 3 + ], + "nav_group": [ + 78 + ], + "nav_order": [ + 38 + ], + "remote_entry_url": [ + 78 + ], + "remote_scope": [ + 78 + ], + "required_role": [ + 908 + ], + "slug": [ + 78 + ], + "title": [ + 78 + ], + "updated_at": [ + 4076 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_max_fields": { + "created_at": [ + 4076 + ], + "exposed_module": [ + 78 + ], + "icon": [ + 78 + ], + "id": [ + 4621 + ], + "nav_group": [ + 78 + ], + "nav_order": [ + 38 + ], + "remote_entry_url": [ + 78 + ], + "remote_scope": [ + 78 + ], + "slug": [ + 78 + ], + "title": [ + 78 + ], + "updated_at": [ + 4076 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_min_fields": { + "created_at": [ + 4076 + ], + "exposed_module": [ + 78 + ], + "icon": [ + 78 + ], + "id": [ + 4621 + ], + "nav_group": [ + 78 + ], + "nav_order": [ + 38 + ], + "remote_entry_url": [ + 78 + ], + "remote_scope": [ + 78 + ], + "slug": [ + 78 + ], + "title": [ + 78 + ], + "updated_at": [ + 4076 + ], + "__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": [ + 2529 + ], + "enabled": [ + 2529 + ], + "exposed_module": [ + 2529 + ], + "icon": [ + 2529 + ], + "id": [ + 2529 + ], + "is_default": [ + 2529 + ], + "nav_group": [ + 2529 + ], + "nav_order": [ + 2529 + ], + "remote_entry_url": [ + 2529 + ], + "remote_scope": [ + 2529 + ], + "required_role": [ + 2529 + ], + "slug": [ + 2529 + ], + "title": [ + 2529 + ], + "updated_at": [ + 2529 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_pk_columns_input": { + "id": [ + 4621 + ], + "__typename": [ + 78 + ] + }, + "custom_pages_select_column": {}, + "custom_pages_set_input": { + "created_at": [ + 4076 + ], + "enabled": [ + 3 + ], + "exposed_module": [ + 78 + ], + "icon": [ + 78 + ], + "id": [ + 4621 + ], + "is_default": [ + 3 + ], + "nav_group": [ + 78 + ], + "nav_order": [ + 38 + ], + "remote_entry_url": [ + 78 + ], + "remote_scope": [ + 78 + ], + "required_role": [ + 908 + ], + "slug": [ + 78 + ], + "title": [ + 78 + ], + "updated_at": [ + 4076 + ], + "__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": [ + 4076 + ], + "enabled": [ + 3 + ], + "exposed_module": [ + 78 + ], + "icon": [ + 78 + ], + "id": [ + 4621 + ], + "is_default": [ + 3 + ], + "nav_group": [ + 78 + ], + "nav_order": [ + 38 + ], + "remote_entry_url": [ + 78 + ], + "remote_scope": [ + 78 + ], + "required_role": [ + 908 + ], + "slug": [ + 78 + ], + "title": [ + 78 + ], + "updated_at": [ + 4076 + ], + "__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": [ + 4076 + ], + "id": [ + 4621 + ], + "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": [ + 4077 + ], + "id": [ + 4623 ], "name": [ 80 @@ -4890,10 +5433,10 @@ export default { }, "db_backups_insert_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "name": [ 78 @@ -4907,10 +5450,10 @@ export default { }, "db_backups_max_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "name": [ 78 @@ -4924,10 +5467,10 @@ export default { }, "db_backups_min_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "name": [ 78 @@ -4944,7 +5487,7 @@ export default { 38 ], "returning": [ - 237 + 264 ], "__typename": [ 78 @@ -4952,13 +5495,13 @@ export default { }, "db_backups_on_conflict": { "constraint": [ - 242 + 269 ], "update_columns": [ - 259 + 286 ], "where": [ - 241 + 268 ], "__typename": [ 78 @@ -4966,16 +5509,16 @@ export default { }, "db_backups_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "name": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "__typename": [ 78 @@ -4983,7 +5526,7 @@ export default { }, "db_backups_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -4992,10 +5535,10 @@ export default { "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "name": [ 78 @@ -5033,7 +5576,7 @@ export default { }, "db_backups_stream_cursor_input": { "initial_value": [ - 257 + 284 ], "ordering": [ 236 @@ -5044,10 +5587,10 @@ export default { }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "name": [ 78 @@ -5070,13 +5613,13 @@ export default { "db_backups_update_column": {}, "db_backups_updates": { "_inc": [ - 243 + 270 ], "_set": [ - 252 + 279 ], "where": [ - 241 + 268 ], "__typename": [ 78 @@ -5111,22 +5654,22 @@ export default { 3 ], "captain": [ - 3739 + 3487 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4076 ], "draft_game": [ - 354 + 381 ], "draft_game_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "is_organizer": [ 3 @@ -5135,7 +5678,7 @@ export default { 38 ], "picked": [ - 3739 + 3487 ], "picked_steam_id": [ 180 @@ -5146,10 +5689,10 @@ export default { }, "draft_game_picks_aggregate": { "aggregate": [ - 270 + 297 ], "nodes": [ - 264 + 291 ], "__typename": [ 78 @@ -5157,13 +5700,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp": { "bool_and": [ - 267 + 294 ], "bool_or": [ - 268 + 295 ], "count": [ - 269 + 296 ], "__typename": [ 78 @@ -5171,13 +5714,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 288 + 315 ], "distinct": [ 3 ], "filter": [ - 275 + 302 ], "predicate": [ 4 @@ -5188,13 +5731,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 289 + 316 ], "distinct": [ 3 ], "filter": [ - 275 + 302 ], "predicate": [ 4 @@ -5205,13 +5748,13 @@ export default { }, "draft_game_picks_aggregate_bool_exp_count": { "arguments": [ - 287 + 314 ], "distinct": [ 3 ], "filter": [ - 275 + 302 ], "predicate": [ 39 @@ -5222,13 +5765,13 @@ export default { }, "draft_game_picks_aggregate_fields": { "avg": [ - 273 + 300 ], "count": [ 38, { "columns": [ - 287, + 314, "[draft_game_picks_select_column!]" ], "distinct": [ @@ -5237,31 +5780,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 +5812,37 @@ export default { }, "draft_game_picks_aggregate_order_by": { "avg": [ - 274 + 301 ], "count": [ - 2781 + 2529 ], "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 +5850,10 @@ export default { }, "draft_game_picks_arr_rel_insert_input": { "data": [ - 278 + 305 ], "on_conflict": [ - 284 + 311 ], "__typename": [ 78 @@ -5332,13 +5875,13 @@ export default { }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "picked_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -5346,34 +5889,34 @@ export default { }, "draft_game_picks_bool_exp": { "_and": [ - 275 + 302 ], "_not": [ - 275 + 302 ], "_or": [ - 275 + 302 ], "auto_picked": [ 4 ], "captain": [ - 3743 + 3491 ], "captain_steam_id": [ 182 ], "created_at": [ - 4325 + 4077 ], "draft_game": [ - 365 + 392 ], "draft_game_id": [ - 4764 + 4623 ], "id": [ - 4764 + 4623 ], "is_organizer": [ 4 @@ -5382,7 +5925,7 @@ export default { 39 ], "picked": [ - 3743 + 3491 ], "picked_steam_id": [ 182 @@ -5411,28 +5954,28 @@ export default { 3 ], "captain": [ - 3750 + 3498 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4076 ], "draft_game": [ - 374 + 401 ], "draft_game_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "lineup": [ 38 ], "picked": [ - 3750 + 3498 ], "picked_steam_id": [ 180 @@ -5446,13 +5989,13 @@ export default { 180 ], "created_at": [ - 4324 + 4076 ], "draft_game_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "lineup": [ 38 @@ -5466,22 +6009,22 @@ export default { }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "draft_game_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "picked_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -5492,13 +6035,13 @@ export default { 180 ], "created_at": [ - 4324 + 4076 ], "draft_game_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "lineup": [ 38 @@ -5512,22 +6055,22 @@ export default { }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "draft_game_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "picked_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -5538,7 +6081,7 @@ export default { 38 ], "returning": [ - 264 + 291 ], "__typename": [ 78 @@ -5546,13 +6089,13 @@ export default { }, "draft_game_picks_on_conflict": { "constraint": [ - 276 + 303 ], "update_columns": [ - 301 + 328 ], "where": [ - 275 + 302 ], "__typename": [ 78 @@ -5560,37 +6103,37 @@ export default { }, "draft_game_picks_order_by": { "auto_picked": [ - 2781 + 2529 ], "captain": [ - 3752 + 3500 ], "captain_steam_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "draft_game": [ - 376 + 403 ], "draft_game_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "is_organizer": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "picked": [ - 3752 + 3500 ], "picked_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -5598,7 +6141,7 @@ export default { }, "draft_game_picks_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -5615,13 +6158,13 @@ export default { 180 ], "created_at": [ - 4324 + 4076 ], "draft_game_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "lineup": [ 38 @@ -5649,13 +6192,13 @@ export default { }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "picked_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -5677,13 +6220,13 @@ export default { }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "picked_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -5705,13 +6248,13 @@ export default { }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "picked_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -5719,7 +6262,7 @@ export default { }, "draft_game_picks_stream_cursor_input": { "initial_value": [ - 298 + 325 ], "ordering": [ 236 @@ -5736,13 +6279,13 @@ export default { 180 ], "created_at": [ - 4324 + 4076 ], "draft_game_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "lineup": [ 38 @@ -5770,13 +6313,13 @@ export default { }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "picked_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -5785,13 +6328,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 +6356,13 @@ export default { }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "picked_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -5841,13 +6384,13 @@ export default { }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "picked_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -5869,13 +6412,13 @@ export default { }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "picked_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -5883,13 +6426,13 @@ export default { }, "draft_game_players": { "draft_game": [ - 354 + 381 ], "draft_game_id": [ - 4762 + 4621 ], "e_draft_game_player_status": [ - 483 + 510 ], "elo_snapshot": [ 38 @@ -5901,7 +6444,7 @@ export default { 3 ], "joined_at": [ - 4324 + 4076 ], "lineup": [ 38 @@ -5910,10 +6453,10 @@ export default { 38 ], "player": [ - 3739 + 3487 ], "status": [ - 488 + 515 ], "steam_id": [ 180 @@ -5924,10 +6467,10 @@ export default { }, "draft_game_players_aggregate": { "aggregate": [ - 315 + 342 ], "nodes": [ - 309 + 336 ], "__typename": [ 78 @@ -5935,13 +6478,13 @@ export default { }, "draft_game_players_aggregate_bool_exp": { "bool_and": [ - 312 + 339 ], "bool_or": [ - 313 + 340 ], "count": [ - 314 + 341 ], "__typename": [ 78 @@ -5949,13 +6492,13 @@ export default { }, "draft_game_players_aggregate_bool_exp_bool_and": { "arguments": [ - 333 + 360 ], "distinct": [ 3 ], "filter": [ - 320 + 347 ], "predicate": [ 4 @@ -5966,13 +6509,13 @@ export default { }, "draft_game_players_aggregate_bool_exp_bool_or": { "arguments": [ - 334 + 361 ], "distinct": [ 3 ], "filter": [ - 320 + 347 ], "predicate": [ 4 @@ -5983,13 +6526,13 @@ export default { }, "draft_game_players_aggregate_bool_exp_count": { "arguments": [ - 332 + 359 ], "distinct": [ 3 ], "filter": [ - 320 + 347 ], "predicate": [ 39 @@ -6000,13 +6543,13 @@ export default { }, "draft_game_players_aggregate_fields": { "avg": [ - 318 + 345 ], "count": [ 38, { "columns": [ - 332, + 359, "[draft_game_players_select_column!]" ], "distinct": [ @@ -6015,31 +6558,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 +6590,37 @@ export default { }, "draft_game_players_aggregate_order_by": { "avg": [ - 319 + 346 ], "count": [ - 2781 + 2529 ], "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 +6628,10 @@ export default { }, "draft_game_players_arr_rel_insert_input": { "data": [ - 323 + 350 ], "on_conflict": [ - 329 + 356 ], "__typename": [ 78 @@ -6113,16 +6656,16 @@ export default { }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "pick_order": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -6130,22 +6673,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 + 4623 ], "e_draft_game_player_status": [ - 486 + 513 ], "elo_snapshot": [ 39 @@ -6157,7 +6700,7 @@ export default { 4 ], "joined_at": [ - 4325 + 4077 ], "lineup": [ 39 @@ -6166,10 +6709,10 @@ export default { 39 ], "player": [ - 3743 + 3491 ], "status": [ - 489 + 516 ], "steam_id": [ 182 @@ -6198,13 +6741,13 @@ export default { }, "draft_game_players_insert_input": { "draft_game": [ - 374 + 401 ], "draft_game_id": [ - 4762 + 4621 ], "e_draft_game_player_status": [ - 494 + 521 ], "elo_snapshot": [ 38 @@ -6213,7 +6756,7 @@ export default { 3 ], "joined_at": [ - 4324 + 4076 ], "lineup": [ 38 @@ -6222,10 +6765,10 @@ export default { 38 ], "player": [ - 3750 + 3498 ], "status": [ - 488 + 515 ], "steam_id": [ 180 @@ -6236,13 +6779,13 @@ export default { }, "draft_game_players_max_fields": { "draft_game_id": [ - 4762 + 4621 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4324 + 4076 ], "lineup": [ 38 @@ -6259,22 +6802,22 @@ export default { }, "draft_game_players_max_order_by": { "draft_game_id": [ - 2781 + 2529 ], "elo_snapshot": [ - 2781 + 2529 ], "joined_at": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "pick_order": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -6282,13 +6825,13 @@ export default { }, "draft_game_players_min_fields": { "draft_game_id": [ - 4762 + 4621 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4324 + 4076 ], "lineup": [ 38 @@ -6305,22 +6848,22 @@ export default { }, "draft_game_players_min_order_by": { "draft_game_id": [ - 2781 + 2529 ], "elo_snapshot": [ - 2781 + 2529 ], "joined_at": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "pick_order": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -6331,7 +6874,7 @@ export default { 38 ], "returning": [ - 309 + 336 ], "__typename": [ 78 @@ -6339,13 +6882,13 @@ export default { }, "draft_game_players_on_conflict": { "constraint": [ - 321 + 348 ], "update_columns": [ - 346 + 373 ], "where": [ - 320 + 347 ], "__typename": [ 78 @@ -6353,40 +6896,40 @@ export default { }, "draft_game_players_order_by": { "draft_game": [ - 376 + 403 ], "draft_game_id": [ - 2781 + 2529 ], "e_draft_game_player_status": [ - 496 + 523 ], "elo_snapshot": [ - 2781 + 2529 ], "is_captain": [ - 2781 + 2529 ], "is_organizer": [ - 2781 + 2529 ], "joined_at": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "pick_order": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "status": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -6394,7 +6937,7 @@ export default { }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 4762 + 4621 ], "steam_id": [ 180 @@ -6408,7 +6951,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 + 4621 ], "elo_snapshot": [ 38 @@ -6417,7 +6960,7 @@ export default { 3 ], "joined_at": [ - 4324 + 4076 ], "lineup": [ 38 @@ -6426,7 +6969,7 @@ export default { 38 ], "status": [ - 488 + 515 ], "steam_id": [ 180 @@ -6454,16 +6997,16 @@ export default { }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "pick_order": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -6488,16 +7031,16 @@ export default { }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "pick_order": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -6522,16 +7065,16 @@ export default { }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "pick_order": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -6539,7 +7082,7 @@ export default { }, "draft_game_players_stream_cursor_input": { "initial_value": [ - 343 + 370 ], "ordering": [ 236 @@ -6550,7 +7093,7 @@ export default { }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 4762 + 4621 ], "elo_snapshot": [ 38 @@ -6559,7 +7102,7 @@ export default { 3 ], "joined_at": [ - 4324 + 4076 ], "lineup": [ 38 @@ -6568,7 +7111,7 @@ export default { 38 ], "status": [ - 488 + 515 ], "steam_id": [ 180 @@ -6596,16 +7139,16 @@ export default { }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "pick_order": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -6614,13 +7157,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 +7188,16 @@ export default { }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "pick_order": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -6679,16 +7222,16 @@ export default { }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "pick_order": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -6713,16 +7256,16 @@ export default { }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 2781 + 2529 ], "lineup": [ - 2781 + 2529 ], "pick_order": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -6730,73 +7273,73 @@ export default { }, "draft_games": { "access": [ - 716 + 703 ], "capacity": [ 38 ], "captain_selection": [ - 425 + 452 ], "created_at": [ - 4324 + 4076 ], "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 + 698 ], "expires_at": [ - 4324 + 4076 ], "host": [ - 3739 + 3487 ], "host_steam_id": [ 180 ], "id": [ - 4762 + 4621 ], "inner_squad": [ 3 ], "invite_code": [ - 4762 + 4621 ], "is_organizer": [ 3 ], "map_pool": [ - 2095 + 1843 ], "map_pool_id": [ - 4762 + 4621 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "max_elo": [ 38 @@ -6805,13 +7348,13 @@ export default { 38 ], "mode": [ - 467 + 494 ], "options": [ - 2476 + 2224 ], "pattern": [ - 1652, + 1400, { "path": [ 78 @@ -6819,13 +7362,13 @@ export default { } ], "pick_deadline": [ - 4324 + 4076 ], "picks": [ - 264, + 291, { "distinct_on": [ - 287, + 314, "[draft_game_picks_select_column!]" ], "limit": [ @@ -6835,19 +7378,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 +7400,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 +7422,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 +7444,11 @@ export default { 38 ], "order_by": [ - 330, + 357, "[draft_game_players_order_by!]" ], "where": [ - 320 + 347 ] } ], @@ -6916,28 +7459,28 @@ export default { 3 ], "scheduled_at": [ - 4324 + 4076 ], "status": [ - 509 + 536 ], "team_1": [ - 4281 + 4029 ], "team_1_id": [ - 4762 + 4621 ], "team_2": [ - 4281 + 4029 ], "team_2_id": [ - 4762 + 4621 ], "type": [ - 860 + 847 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -6945,10 +7488,10 @@ export default { }, "draft_games_aggregate": { "aggregate": [ - 360 + 387 ], "nodes": [ - 354 + 381 ], "__typename": [ 78 @@ -6956,13 +7499,13 @@ export default { }, "draft_games_aggregate_bool_exp": { "bool_and": [ - 357 + 384 ], "bool_or": [ - 358 + 385 ], "count": [ - 359 + 386 ], "__typename": [ 78 @@ -6970,13 +7513,13 @@ export default { }, "draft_games_aggregate_bool_exp_bool_and": { "arguments": [ - 379 + 406 ], "distinct": [ 3 ], "filter": [ - 365 + 392 ], "predicate": [ 4 @@ -6987,13 +7530,13 @@ export default { }, "draft_games_aggregate_bool_exp_bool_or": { "arguments": [ - 380 + 407 ], "distinct": [ 3 ], "filter": [ - 365 + 392 ], "predicate": [ 4 @@ -7004,13 +7547,13 @@ export default { }, "draft_games_aggregate_bool_exp_count": { "arguments": [ - 378 + 405 ], "distinct": [ 3 ], "filter": [ - 365 + 392 ], "predicate": [ 39 @@ -7021,13 +7564,13 @@ export default { }, "draft_games_aggregate_fields": { "avg": [ - 363 + 390 ], "count": [ 38, { "columns": [ - 378, + 405, "[draft_games_select_column!]" ], "distinct": [ @@ -7036,31 +7579,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 +7611,37 @@ export default { }, "draft_games_aggregate_order_by": { "avg": [ - 364 + 391 ], "count": [ - 2781 + 2529 ], "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 +7649,10 @@ export default { }, "draft_games_arr_rel_insert_input": { "data": [ - 368 + 395 ], "on_conflict": [ - 375 + 402 ], "__typename": [ 78 @@ -7137,19 +7680,19 @@ export default { }, "draft_games_avg_order_by": { "capacity": [ - 2781 + 2529 ], "current_pick_lineup": [ - 2781 + 2529 ], "host_steam_id": [ - 2781 + 2529 ], "max_elo": [ - 2781 + 2529 ], "min_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -7157,82 +7700,82 @@ export default { }, "draft_games_bool_exp": { "_and": [ - 365 + 392 ], "_not": [ - 365 + 392 ], "_or": [ - 365 + 392 ], "access": [ - 717 + 704 ], "capacity": [ 39 ], "captain_selection": [ - 426 + 453 ], "created_at": [ - 4325 + 4077 ], "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 + 701 ], "expires_at": [ - 4325 + 4077 ], "host": [ - 3743 + 3491 ], "host_steam_id": [ 182 ], "id": [ - 4764 + 4623 ], "inner_squad": [ 4 ], "invite_code": [ - 4764 + 4623 ], "is_organizer": [ 4 ], "map_pool": [ - 2098 + 1846 ], "map_pool_id": [ - 4764 + 4623 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_options_id": [ - 4764 + 4623 ], "max_elo": [ 39 @@ -7241,28 +7784,28 @@ export default { 39 ], "mode": [ - 468 + 495 ], "options": [ - 2480 + 2228 ], "pattern": [ - 1654 + 1402 ], "pick_deadline": [ - 4325 + 4077 ], "picks": [ - 275 + 302 ], "picks_aggregate": [ - 266 + 293 ], "players": [ - 320 + 347 ], "players_aggregate": [ - 311 + 338 ], "regions": [ 79 @@ -7271,28 +7814,28 @@ export default { 4 ], "scheduled_at": [ - 4325 + 4077 ], "status": [ - 510 + 537 ], "team_1": [ - 4290 + 4040 ], "team_1_id": [ - 4764 + 4623 ], "team_2": [ - 4290 + 4040 ], "team_2_id": [ - 4764 + 4623 ], "type": [ - 861 + 848 ], "updated_at": [ - 4325 + 4077 ], "__typename": [ 78 @@ -7321,70 +7864,70 @@ export default { }, "draft_games_insert_input": { "access": [ - 716 + 703 ], "capacity": [ 38 ], "captain_selection": [ - 425 + 452 ], "created_at": [ - 4324 + 4076 ], "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 + 709 ], "expires_at": [ - 4324 + 4076 ], "host": [ - 3750 + 3498 ], "host_steam_id": [ 180 ], "id": [ - 4762 + 4621 ], "inner_squad": [ 3 ], "invite_code": [ - 4762 + 4621 ], "map_pool": [ - 2104 + 1852 ], "map_pool_id": [ - 4762 + 4621 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "max_elo": [ 38 @@ -7393,19 +7936,19 @@ export default { 38 ], "mode": [ - 467 + 494 ], "options": [ - 2487 + 2235 ], "pick_deadline": [ - 4324 + 4076 ], "picks": [ - 272 + 299 ], "players": [ - 317 + 344 ], "regions": [ 78 @@ -7414,28 +7957,28 @@ export default { 3 ], "scheduled_at": [ - 4324 + 4076 ], "status": [ - 509 + 536 ], "team_1": [ - 4299 + 4049 ], "team_1_id": [ - 4762 + 4621 ], "team_2": [ - 4299 + 4049 ], "team_2_id": [ - 4762 + 4621 ], "type": [ - 860 + 847 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -7446,31 +7989,31 @@ export default { 38 ], "created_at": [ - 4324 + 4076 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4324 + 4076 ], "host_steam_id": [ 180 ], "id": [ - 4762 + 4621 ], "invite_code": [ - 4762 + 4621 ], "map_pool_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "max_elo": [ 38 @@ -7479,22 +8022,22 @@ export default { 38 ], "pick_deadline": [ - 4324 + 4076 ], "regions": [ 78 ], "scheduled_at": [ - 4324 + 4076 ], "team_1_id": [ - 4762 + 4621 ], "team_2_id": [ - 4762 + 4621 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -7502,58 +8045,58 @@ export default { }, "draft_games_max_order_by": { "capacity": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "current_pick_lineup": [ - 2781 + 2529 ], "expires_at": [ - 2781 + 2529 ], "host_steam_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "invite_code": [ - 2781 + 2529 ], "map_pool_id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_options_id": [ - 2781 + 2529 ], "max_elo": [ - 2781 + 2529 ], "min_elo": [ - 2781 + 2529 ], "pick_deadline": [ - 2781 + 2529 ], "regions": [ - 2781 + 2529 ], "scheduled_at": [ - 2781 + 2529 ], "team_1_id": [ - 2781 + 2529 ], "team_2_id": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "__typename": [ 78 @@ -7564,31 +8107,31 @@ export default { 38 ], "created_at": [ - 4324 + 4076 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4324 + 4076 ], "host_steam_id": [ 180 ], "id": [ - 4762 + 4621 ], "invite_code": [ - 4762 + 4621 ], "map_pool_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "max_elo": [ 38 @@ -7597,22 +8140,22 @@ export default { 38 ], "pick_deadline": [ - 4324 + 4076 ], "regions": [ 78 ], "scheduled_at": [ - 4324 + 4076 ], "team_1_id": [ - 4762 + 4621 ], "team_2_id": [ - 4762 + 4621 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -7620,58 +8163,58 @@ export default { }, "draft_games_min_order_by": { "capacity": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "current_pick_lineup": [ - 2781 + 2529 ], "expires_at": [ - 2781 + 2529 ], "host_steam_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "invite_code": [ - 2781 + 2529 ], "map_pool_id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_options_id": [ - 2781 + 2529 ], "max_elo": [ - 2781 + 2529 ], "min_elo": [ - 2781 + 2529 ], "pick_deadline": [ - 2781 + 2529 ], "regions": [ - 2781 + 2529 ], "scheduled_at": [ - 2781 + 2529 ], "team_1_id": [ - 2781 + 2529 ], "team_2_id": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "__typename": [ 78 @@ -7682,7 +8225,7 @@ export default { 38 ], "returning": [ - 354 + 381 ], "__typename": [ 78 @@ -7690,10 +8233,10 @@ export default { }, "draft_games_obj_rel_insert_input": { "data": [ - 368 + 395 ], "on_conflict": [ - 375 + 402 ], "__typename": [ 78 @@ -7701,13 +8244,13 @@ export default { }, "draft_games_on_conflict": { "constraint": [ - 366 + 393 ], "update_columns": [ - 392 + 419 ], "where": [ - 365 + 392 ], "__typename": [ 78 @@ -7715,127 +8258,127 @@ export default { }, "draft_games_order_by": { "access": [ - 2781 + 2529 ], "capacity": [ - 2781 + 2529 ], "captain_selection": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "current_pick_lineup": [ - 2781 + 2529 ], "draft_order": [ - 2781 + 2529 ], "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 + 711 ], "expires_at": [ - 2781 + 2529 ], "host": [ - 3752 + 3500 ], "host_steam_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "inner_squad": [ - 2781 + 2529 ], "invite_code": [ - 2781 + 2529 ], "is_organizer": [ - 2781 + 2529 ], "map_pool": [ - 2106 + 1854 ], "map_pool_id": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_options_id": [ - 2781 + 2529 ], "max_elo": [ - 2781 + 2529 ], "min_elo": [ - 2781 + 2529 ], "mode": [ - 2781 + 2529 ], "options": [ - 2489 + 2237 ], "pattern": [ - 2781 + 2529 ], "pick_deadline": [ - 2781 + 2529 ], "picks_aggregate": [ - 271 + 298 ], "players_aggregate": [ - 316 + 343 ], "regions": [ - 2781 + 2529 ], "require_approval": [ - 2781 + 2529 ], "scheduled_at": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "team_1": [ - 4301 + 4051 ], "team_1_id": [ - 2781 + 2529 ], "team_2": [ - 4301 + 4051 ], "team_2_id": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "__typename": [ 78 @@ -7843,7 +8386,7 @@ export default { }, "draft_games_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -7854,46 +8397,46 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 716 + 703 ], "capacity": [ 38 ], "captain_selection": [ - 425 + 452 ], "created_at": [ - 4324 + 4076 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 446 + 473 ], "expires_at": [ - 4324 + 4076 ], "host_steam_id": [ 180 ], "id": [ - 4762 + 4621 ], "inner_squad": [ 3 ], "invite_code": [ - 4762 + 4621 ], "map_pool_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "max_elo": [ 38 @@ -7902,10 +8445,10 @@ export default { 38 ], "mode": [ - 467 + 494 ], "pick_deadline": [ - 4324 + 4076 ], "regions": [ 78 @@ -7914,22 +8457,22 @@ export default { 3 ], "scheduled_at": [ - 4324 + 4076 ], "status": [ - 509 + 536 ], "team_1_id": [ - 4762 + 4621 ], "team_2_id": [ - 4762 + 4621 ], "type": [ - 860 + 847 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -7957,19 +8500,19 @@ export default { }, "draft_games_stddev_order_by": { "capacity": [ - 2781 + 2529 ], "current_pick_lineup": [ - 2781 + 2529 ], "host_steam_id": [ - 2781 + 2529 ], "max_elo": [ - 2781 + 2529 ], "min_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -7997,19 +8540,19 @@ export default { }, "draft_games_stddev_pop_order_by": { "capacity": [ - 2781 + 2529 ], "current_pick_lineup": [ - 2781 + 2529 ], "host_steam_id": [ - 2781 + 2529 ], "max_elo": [ - 2781 + 2529 ], "min_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -8037,19 +8580,19 @@ export default { }, "draft_games_stddev_samp_order_by": { "capacity": [ - 2781 + 2529 ], "current_pick_lineup": [ - 2781 + 2529 ], "host_steam_id": [ - 2781 + 2529 ], "max_elo": [ - 2781 + 2529 ], "min_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -8057,7 +8600,7 @@ export default { }, "draft_games_stream_cursor_input": { "initial_value": [ - 389 + 416 ], "ordering": [ 236 @@ -8068,46 +8611,46 @@ export default { }, "draft_games_stream_cursor_value_input": { "access": [ - 716 + 703 ], "capacity": [ 38 ], "captain_selection": [ - 425 + 452 ], "created_at": [ - 4324 + 4076 ], "current_pick_lineup": [ 38 ], "draft_order": [ - 446 + 473 ], "expires_at": [ - 4324 + 4076 ], "host_steam_id": [ 180 ], "id": [ - 4762 + 4621 ], "inner_squad": [ 3 ], "invite_code": [ - 4762 + 4621 ], "map_pool_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "max_elo": [ 38 @@ -8116,10 +8659,10 @@ export default { 38 ], "mode": [ - 467 + 494 ], "pick_deadline": [ - 4324 + 4076 ], "regions": [ 78 @@ -8128,22 +8671,22 @@ export default { 3 ], "scheduled_at": [ - 4324 + 4076 ], "status": [ - 509 + 536 ], "team_1_id": [ - 4762 + 4621 ], "team_2_id": [ - 4762 + 4621 ], "type": [ - 860 + 847 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -8171,19 +8714,19 @@ export default { }, "draft_games_sum_order_by": { "capacity": [ - 2781 + 2529 ], "current_pick_lineup": [ - 2781 + 2529 ], "host_steam_id": [ - 2781 + 2529 ], "max_elo": [ - 2781 + 2529 ], "min_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -8192,13 +8735,13 @@ export default { "draft_games_update_column": {}, "draft_games_updates": { "_inc": [ - 367 + 394 ], "_set": [ - 381 + 408 ], "where": [ - 365 + 392 ], "__typename": [ 78 @@ -8226,19 +8769,19 @@ export default { }, "draft_games_var_pop_order_by": { "capacity": [ - 2781 + 2529 ], "current_pick_lineup": [ - 2781 + 2529 ], "host_steam_id": [ - 2781 + 2529 ], "max_elo": [ - 2781 + 2529 ], "min_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -8266,19 +8809,19 @@ export default { }, "draft_games_var_samp_order_by": { "capacity": [ - 2781 + 2529 ], "current_pick_lineup": [ - 2781 + 2529 ], "host_steam_id": [ - 2781 + 2529 ], "max_elo": [ - 2781 + 2529 ], "min_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -8306,19 +8849,19 @@ export default { }, "draft_games_variance_order_by": { "capacity": [ - 2781 + 2529 ], "current_pick_lineup": [ - 2781 + 2529 ], "host_steam_id": [ - 2781 + 2529 ], "max_elo": [ - 2781 + 2529 ], "min_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -8337,10 +8880,10 @@ export default { }, "e_check_in_settings_aggregate": { "aggregate": [ - 402 + 429 ], "nodes": [ - 400 + 427 ], "__typename": [ 78 @@ -8351,7 +8894,7 @@ export default { 38, { "columns": [ - 414, + 441, "[e_check_in_settings_select_column!]" ], "distinct": [ @@ -8360,10 +8903,10 @@ export default { } ], "max": [ - 408 + 435 ], "min": [ - 409 + 436 ], "__typename": [ 78 @@ -8371,13 +8914,13 @@ export default { }, "e_check_in_settings_bool_exp": { "_and": [ - 403 + 430 ], "_not": [ - 403 + 430 ], "_or": [ - 403 + 430 ], "description": [ 80 @@ -8393,19 +8936,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 +8992,7 @@ export default { 38 ], "returning": [ - 400 + 427 ], "__typename": [ 78 @@ -8457,13 +9000,13 @@ export default { }, "e_check_in_settings_on_conflict": { "constraint": [ - 404 + 431 ], "update_columns": [ - 418 + 445 ], "where": [ - 403 + 430 ], "__typename": [ 78 @@ -8471,10 +9014,10 @@ export default { }, "e_check_in_settings_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -8502,7 +9045,7 @@ export default { }, "e_check_in_settings_stream_cursor_input": { "initial_value": [ - 417 + 444 ], "ordering": [ 236 @@ -8525,10 +9068,10 @@ export default { "e_check_in_settings_update_column": {}, "e_check_in_settings_updates": { "_set": [ - 415 + 442 ], "where": [ - 403 + 430 ], "__typename": [ 78 @@ -8547,10 +9090,10 @@ export default { }, "e_draft_game_captain_selection_aggregate": { "aggregate": [ - 422 + 449 ], "nodes": [ - 420 + 447 ], "__typename": [ 78 @@ -8561,7 +9104,7 @@ export default { 38, { "columns": [ - 435, + 462, "[e_draft_game_captain_selection_select_column!]" ], "distinct": [ @@ -8570,10 +9113,10 @@ export default { } ], "max": [ - 428 + 455 ], "min": [ - 429 + 456 ], "__typename": [ 78 @@ -8581,13 +9124,13 @@ export default { }, "e_draft_game_captain_selection_bool_exp": { "_and": [ - 423 + 450 ], "_not": [ - 423 + 450 ], "_or": [ - 423 + 450 ], "description": [ 80 @@ -8603,19 +9146,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 +9202,7 @@ export default { 38 ], "returning": [ - 420 + 447 ], "__typename": [ 78 @@ -8667,10 +9210,10 @@ export default { }, "e_draft_game_captain_selection_obj_rel_insert_input": { "data": [ - 427 + 454 ], "on_conflict": [ - 432 + 459 ], "__typename": [ 78 @@ -8678,13 +9221,13 @@ export default { }, "e_draft_game_captain_selection_on_conflict": { "constraint": [ - 424 + 451 ], "update_columns": [ - 439 + 466 ], "where": [ - 423 + 450 ], "__typename": [ 78 @@ -8692,10 +9235,10 @@ export default { }, "e_draft_game_captain_selection_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -8723,7 +9266,7 @@ export default { }, "e_draft_game_captain_selection_stream_cursor_input": { "initial_value": [ - 438 + 465 ], "ordering": [ 236 @@ -8746,10 +9289,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 +9311,10 @@ export default { }, "e_draft_game_draft_order_aggregate": { "aggregate": [ - 443 + 470 ], "nodes": [ - 441 + 468 ], "__typename": [ 78 @@ -8782,7 +9325,7 @@ export default { 38, { "columns": [ - 456, + 483, "[e_draft_game_draft_order_select_column!]" ], "distinct": [ @@ -8791,10 +9334,10 @@ export default { } ], "max": [ - 449 + 476 ], "min": [ - 450 + 477 ], "__typename": [ 78 @@ -8802,13 +9345,13 @@ export default { }, "e_draft_game_draft_order_bool_exp": { "_and": [ - 444 + 471 ], "_not": [ - 444 + 471 ], "_or": [ - 444 + 471 ], "description": [ 80 @@ -8824,19 +9367,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 +9423,7 @@ export default { 38 ], "returning": [ - 441 + 468 ], "__typename": [ 78 @@ -8888,10 +9431,10 @@ export default { }, "e_draft_game_draft_order_obj_rel_insert_input": { "data": [ - 448 + 475 ], "on_conflict": [ - 453 + 480 ], "__typename": [ 78 @@ -8899,13 +9442,13 @@ export default { }, "e_draft_game_draft_order_on_conflict": { "constraint": [ - 445 + 472 ], "update_columns": [ - 460 + 487 ], "where": [ - 444 + 471 ], "__typename": [ 78 @@ -8913,10 +9456,10 @@ export default { }, "e_draft_game_draft_order_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -8944,7 +9487,7 @@ export default { }, "e_draft_game_draft_order_stream_cursor_input": { "initial_value": [ - 459 + 486 ], "ordering": [ 236 @@ -8967,10 +9510,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 +9532,10 @@ export default { }, "e_draft_game_mode_aggregate": { "aggregate": [ - 464 + 491 ], "nodes": [ - 462 + 489 ], "__typename": [ 78 @@ -9003,7 +9546,7 @@ export default { 38, { "columns": [ - 477, + 504, "[e_draft_game_mode_select_column!]" ], "distinct": [ @@ -9012,10 +9555,10 @@ export default { } ], "max": [ - 470 + 497 ], "min": [ - 471 + 498 ], "__typename": [ 78 @@ -9023,13 +9566,13 @@ export default { }, "e_draft_game_mode_bool_exp": { "_and": [ - 465 + 492 ], "_not": [ - 465 + 492 ], "_or": [ - 465 + 492 ], "description": [ 80 @@ -9045,19 +9588,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 +9644,7 @@ export default { 38 ], "returning": [ - 462 + 489 ], "__typename": [ 78 @@ -9109,10 +9652,10 @@ export default { }, "e_draft_game_mode_obj_rel_insert_input": { "data": [ - 469 + 496 ], "on_conflict": [ - 474 + 501 ], "__typename": [ 78 @@ -9120,13 +9663,13 @@ export default { }, "e_draft_game_mode_on_conflict": { "constraint": [ - 466 + 493 ], "update_columns": [ - 481 + 508 ], "where": [ - 465 + 492 ], "__typename": [ 78 @@ -9134,10 +9677,10 @@ export default { }, "e_draft_game_mode_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -9165,7 +9708,7 @@ export default { }, "e_draft_game_mode_stream_cursor_input": { "initial_value": [ - 480 + 507 ], "ordering": [ 236 @@ -9188,10 +9731,10 @@ export default { "e_draft_game_mode_update_column": {}, "e_draft_game_mode_updates": { "_set": [ - 478 + 505 ], "where": [ - 465 + 492 ], "__typename": [ 78 @@ -9210,10 +9753,10 @@ export default { }, "e_draft_game_player_status_aggregate": { "aggregate": [ - 485 + 512 ], "nodes": [ - 483 + 510 ], "__typename": [ 78 @@ -9224,7 +9767,7 @@ export default { 38, { "columns": [ - 498, + 525, "[e_draft_game_player_status_select_column!]" ], "distinct": [ @@ -9233,10 +9776,10 @@ export default { } ], "max": [ - 491 + 518 ], "min": [ - 492 + 519 ], "__typename": [ 78 @@ -9244,13 +9787,13 @@ export default { }, "e_draft_game_player_status_bool_exp": { "_and": [ - 486 + 513 ], "_not": [ - 486 + 513 ], "_or": [ - 486 + 513 ], "description": [ 80 @@ -9266,19 +9809,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 +9865,7 @@ export default { 38 ], "returning": [ - 483 + 510 ], "__typename": [ 78 @@ -9330,10 +9873,10 @@ export default { }, "e_draft_game_player_status_obj_rel_insert_input": { "data": [ - 490 + 517 ], "on_conflict": [ - 495 + 522 ], "__typename": [ 78 @@ -9341,13 +9884,13 @@ export default { }, "e_draft_game_player_status_on_conflict": { "constraint": [ - 487 + 514 ], "update_columns": [ - 502 + 529 ], "where": [ - 486 + 513 ], "__typename": [ 78 @@ -9355,10 +9898,10 @@ export default { }, "e_draft_game_player_status_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -9386,7 +9929,7 @@ export default { }, "e_draft_game_player_status_stream_cursor_input": { "initial_value": [ - 501 + 528 ], "ordering": [ 236 @@ -9409,10 +9952,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 +9974,10 @@ export default { }, "e_draft_game_status_aggregate": { "aggregate": [ - 506 + 533 ], "nodes": [ - 504 + 531 ], "__typename": [ 78 @@ -9445,7 +9988,7 @@ export default { 38, { "columns": [ - 519, + 546, "[e_draft_game_status_select_column!]" ], "distinct": [ @@ -9454,10 +9997,10 @@ export default { } ], "max": [ - 512 + 539 ], "min": [ - 513 + 540 ], "__typename": [ 78 @@ -9465,13 +10008,13 @@ export default { }, "e_draft_game_status_bool_exp": { "_and": [ - 507 + 534 ], "_not": [ - 507 + 534 ], "_or": [ - 507 + 534 ], "description": [ 80 @@ -9487,19 +10030,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 +10086,7 @@ export default { 38 ], "returning": [ - 504 + 531 ], "__typename": [ 78 @@ -9551,10 +10094,10 @@ export default { }, "e_draft_game_status_obj_rel_insert_input": { "data": [ - 511 + 538 ], "on_conflict": [ - 516 + 543 ], "__typename": [ 78 @@ -9562,13 +10105,13 @@ export default { }, "e_draft_game_status_on_conflict": { "constraint": [ - 508 + 535 ], "update_columns": [ - 523 + 550 ], "where": [ - 507 + 534 ], "__typename": [ 78 @@ -9576,10 +10119,10 @@ export default { }, "e_draft_game_status_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -9607,7 +10150,7 @@ export default { }, "e_draft_game_status_stream_cursor_input": { "initial_value": [ - 522 + 549 ], "ordering": [ 236 @@ -9630,430 +10173,10 @@ export default { "e_draft_game_status_update_column": {}, "e_draft_game_status_updates": { "_set": [ - 520 - ], - "where": [ - 507 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access": { - "description": [ - 78 - ], - "value": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access_aggregate": { - "aggregate": [ - 527 - ], - "nodes": [ - 525 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access_aggregate_fields": { - "count": [ - 38, - { - "columns": [ - 539, - "[e_event_media_access_select_column!]" - ], - "distinct": [ - 3 - ] - } - ], - "max": [ - 533 - ], - "min": [ - 534 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access_bool_exp": { - "_and": [ - 528 - ], - "_not": [ - 528 - ], - "_or": [ - 528 - ], - "description": [ - 80 - ], - "value": [ - 80 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access_constraint": {}, - "e_event_media_access_enum": {}, - "e_event_media_access_enum_comparison_exp": { - "_eq": [ - 530 - ], - "_in": [ - 530 - ], - "_is_null": [ - 3 - ], - "_neq": [ - 530 - ], - "_nin": [ - 530 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access_insert_input": { - "description": [ - 78 - ], - "value": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access_max_fields": { - "description": [ - 78 - ], - "value": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access_min_fields": { - "description": [ - 78 - ], - "value": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access_mutation_response": { - "affected_rows": [ - 38 - ], - "returning": [ - 525 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access_on_conflict": { - "constraint": [ - 529 - ], - "update_columns": [ - 543 - ], - "where": [ - 528 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access_order_by": { - "description": [ - 2781 - ], - "value": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access_pk_columns_input": { - "value": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access_select_column": {}, - "e_event_media_access_set_input": { - "description": [ - 78 - ], - "value": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access_stream_cursor_input": { - "initial_value": [ - 542 - ], - "ordering": [ - 236 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access_stream_cursor_value_input": { - "description": [ - 78 - ], - "value": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "e_event_media_access_update_column": {}, - "e_event_media_access_updates": { - "_set": [ - 540 - ], - "where": [ - 528 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility": { - "description": [ - 78 - ], - "value": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility_aggregate": { - "aggregate": [ 547 ], - "nodes": [ - 545 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility_aggregate_fields": { - "count": [ - 38, - { - "columns": [ - 559, - "[e_event_visibility_select_column!]" - ], - "distinct": [ - 3 - ] - } - ], - "max": [ - 553 - ], - "min": [ - 554 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility_bool_exp": { - "_and": [ - 548 - ], - "_not": [ - 548 - ], - "_or": [ - 548 - ], - "description": [ - 80 - ], - "value": [ - 80 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility_constraint": {}, - "e_event_visibility_enum": {}, - "e_event_visibility_enum_comparison_exp": { - "_eq": [ - 550 - ], - "_in": [ - 550 - ], - "_is_null": [ - 3 - ], - "_neq": [ - 550 - ], - "_nin": [ - 550 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility_insert_input": { - "description": [ - 78 - ], - "value": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility_max_fields": { - "description": [ - 78 - ], - "value": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility_min_fields": { - "description": [ - 78 - ], - "value": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility_mutation_response": { - "affected_rows": [ - 38 - ], - "returning": [ - 545 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility_on_conflict": { - "constraint": [ - 549 - ], - "update_columns": [ - 563 - ], - "where": [ - 548 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility_order_by": { - "description": [ - 2781 - ], - "value": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility_pk_columns_input": { - "value": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility_select_column": {}, - "e_event_visibility_set_input": { - "description": [ - 78 - ], - "value": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility_stream_cursor_input": { - "initial_value": [ - 562 - ], - "ordering": [ - 236 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility_stream_cursor_value_input": { - "description": [ - 78 - ], - "value": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "e_event_visibility_update_column": {}, - "e_event_visibility_updates": { - "_set": [ - 560 - ], "where": [ - 548 + 534 ], "__typename": [ 78 @@ -10072,10 +10195,10 @@ export default { }, "e_friend_status_aggregate": { "aggregate": [ - 567 + 554 ], "nodes": [ - 565 + 552 ], "__typename": [ 78 @@ -10086,7 +10209,7 @@ export default { 38, { "columns": [ - 580, + 567, "[e_friend_status_select_column!]" ], "distinct": [ @@ -10095,10 +10218,10 @@ export default { } ], "max": [ - 573 + 560 ], "min": [ - 574 + 561 ], "__typename": [ 78 @@ -10106,13 +10229,13 @@ export default { }, "e_friend_status_bool_exp": { "_and": [ - 568 + 555 ], "_not": [ - 568 + 555 ], "_or": [ - 568 + 555 ], "description": [ 80 @@ -10128,19 +10251,19 @@ export default { "e_friend_status_enum": {}, "e_friend_status_enum_comparison_exp": { "_eq": [ - 570 + 557 ], "_in": [ - 570 + 557 ], "_is_null": [ 3 ], "_neq": [ - 570 + 557 ], "_nin": [ - 570 + 557 ], "__typename": [ 78 @@ -10184,7 +10307,7 @@ export default { 38 ], "returning": [ - 565 + 552 ], "__typename": [ 78 @@ -10192,10 +10315,10 @@ export default { }, "e_friend_status_obj_rel_insert_input": { "data": [ - 572 + 559 ], "on_conflict": [ - 577 + 564 ], "__typename": [ 78 @@ -10203,13 +10326,13 @@ export default { }, "e_friend_status_on_conflict": { "constraint": [ - 569 + 556 ], "update_columns": [ - 584 + 571 ], "where": [ - 568 + 555 ], "__typename": [ 78 @@ -10217,10 +10340,10 @@ export default { }, "e_friend_status_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -10248,7 +10371,7 @@ export default { }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 583 + 570 ], "ordering": [ 236 @@ -10271,10 +10394,10 @@ export default { "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 581 + 568 ], "where": [ - 568 + 555 ], "__typename": [ 78 @@ -10293,10 +10416,10 @@ export default { }, "e_game_cfg_types_aggregate": { "aggregate": [ - 588 + 575 ], "nodes": [ - 586 + 573 ], "__typename": [ 78 @@ -10307,7 +10430,7 @@ export default { 38, { "columns": [ - 600, + 587, "[e_game_cfg_types_select_column!]" ], "distinct": [ @@ -10316,10 +10439,10 @@ export default { } ], "max": [ - 594 + 581 ], "min": [ - 595 + 582 ], "__typename": [ 78 @@ -10327,13 +10450,13 @@ export default { }, "e_game_cfg_types_bool_exp": { "_and": [ - 589 + 576 ], "_not": [ - 589 + 576 ], "_or": [ - 589 + 576 ], "description": [ 80 @@ -10349,19 +10472,19 @@ export default { "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 591 + 578 ], "_in": [ - 591 + 578 ], "_is_null": [ 3 ], "_neq": [ - 591 + 578 ], "_nin": [ - 591 + 578 ], "__typename": [ 78 @@ -10405,7 +10528,7 @@ export default { 38 ], "returning": [ - 586 + 573 ], "__typename": [ 78 @@ -10413,13 +10536,13 @@ export default { }, "e_game_cfg_types_on_conflict": { "constraint": [ - 590 + 577 ], "update_columns": [ - 604 + 591 ], "where": [ - 589 + 576 ], "__typename": [ 78 @@ -10427,10 +10550,10 @@ export default { }, "e_game_cfg_types_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -10458,7 +10581,7 @@ export default { }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 603 + 590 ], "ordering": [ 236 @@ -10481,10 +10604,10 @@ export default { "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 601 + 588 ], "where": [ - 589 + 576 ], "__typename": [ 78 @@ -10503,10 +10626,10 @@ export default { }, "e_game_server_node_statuses_aggregate": { "aggregate": [ - 608 + 595 ], "nodes": [ - 606 + 593 ], "__typename": [ 78 @@ -10517,7 +10640,7 @@ export default { 38, { "columns": [ - 621, + 608, "[e_game_server_node_statuses_select_column!]" ], "distinct": [ @@ -10526,10 +10649,10 @@ export default { } ], "max": [ - 614 + 601 ], "min": [ - 615 + 602 ], "__typename": [ 78 @@ -10537,13 +10660,13 @@ export default { }, "e_game_server_node_statuses_bool_exp": { "_and": [ - 609 + 596 ], "_not": [ - 609 + 596 ], "_or": [ - 609 + 596 ], "description": [ 80 @@ -10559,19 +10682,19 @@ export default { "e_game_server_node_statuses_enum": {}, "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 611 + 598 ], "_in": [ - 611 + 598 ], "_is_null": [ 3 ], "_neq": [ - 611 + 598 ], "_nin": [ - 611 + 598 ], "__typename": [ 78 @@ -10615,7 +10738,7 @@ export default { 38 ], "returning": [ - 606 + 593 ], "__typename": [ 78 @@ -10623,10 +10746,10 @@ export default { }, "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 613 + 600 ], "on_conflict": [ - 618 + 605 ], "__typename": [ 78 @@ -10634,13 +10757,13 @@ export default { }, "e_game_server_node_statuses_on_conflict": { "constraint": [ - 610 + 597 ], "update_columns": [ - 625 + 612 ], "where": [ - 609 + 596 ], "__typename": [ 78 @@ -10648,10 +10771,10 @@ export default { }, "e_game_server_node_statuses_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -10679,7 +10802,7 @@ export default { }, "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 624 + 611 ], "ordering": [ 236 @@ -10702,10 +10825,10 @@ export default { "e_game_server_node_statuses_update_column": {}, "e_game_server_node_statuses_updates": { "_set": [ - 622 + 609 ], "where": [ - 609 + 596 ], "__typename": [ 78 @@ -10724,10 +10847,10 @@ export default { }, "e_league_movement_types_aggregate": { "aggregate": [ - 629 + 616 ], "nodes": [ - 627 + 614 ], "__typename": [ 78 @@ -10738,7 +10861,7 @@ export default { 38, { "columns": [ - 642, + 629, "[e_league_movement_types_select_column!]" ], "distinct": [ @@ -10747,10 +10870,10 @@ export default { } ], "max": [ - 635 + 622 ], "min": [ - 636 + 623 ], "__typename": [ 78 @@ -10758,13 +10881,13 @@ export default { }, "e_league_movement_types_bool_exp": { "_and": [ - 630 + 617 ], "_not": [ - 630 + 617 ], "_or": [ - 630 + 617 ], "description": [ 80 @@ -10780,19 +10903,19 @@ export default { "e_league_movement_types_enum": {}, "e_league_movement_types_enum_comparison_exp": { "_eq": [ - 632 + 619 ], "_in": [ - 632 + 619 ], "_is_null": [ 3 ], "_neq": [ - 632 + 619 ], "_nin": [ - 632 + 619 ], "__typename": [ 78 @@ -10836,7 +10959,7 @@ export default { 38 ], "returning": [ - 627 + 614 ], "__typename": [ 78 @@ -10844,10 +10967,10 @@ export default { }, "e_league_movement_types_obj_rel_insert_input": { "data": [ - 634 + 621 ], "on_conflict": [ - 639 + 626 ], "__typename": [ 78 @@ -10855,13 +10978,13 @@ export default { }, "e_league_movement_types_on_conflict": { "constraint": [ - 631 + 618 ], "update_columns": [ - 646 + 633 ], "where": [ - 630 + 617 ], "__typename": [ 78 @@ -10869,10 +10992,10 @@ export default { }, "e_league_movement_types_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -10900,7 +11023,7 @@ export default { }, "e_league_movement_types_stream_cursor_input": { "initial_value": [ - 645 + 632 ], "ordering": [ 236 @@ -10923,10 +11046,10 @@ export default { "e_league_movement_types_update_column": {}, "e_league_movement_types_updates": { "_set": [ - 643 + 630 ], "where": [ - 630 + 617 ], "__typename": [ 78 @@ -10945,10 +11068,10 @@ export default { }, "e_league_proposal_statuses_aggregate": { "aggregate": [ - 650 + 637 ], "nodes": [ - 648 + 635 ], "__typename": [ 78 @@ -10959,7 +11082,7 @@ export default { 38, { "columns": [ - 663, + 650, "[e_league_proposal_statuses_select_column!]" ], "distinct": [ @@ -10968,10 +11091,10 @@ export default { } ], "max": [ - 656 + 643 ], "min": [ - 657 + 644 ], "__typename": [ 78 @@ -10979,13 +11102,13 @@ export default { }, "e_league_proposal_statuses_bool_exp": { "_and": [ - 651 + 638 ], "_not": [ - 651 + 638 ], "_or": [ - 651 + 638 ], "description": [ 80 @@ -11001,19 +11124,19 @@ export default { "e_league_proposal_statuses_enum": {}, "e_league_proposal_statuses_enum_comparison_exp": { "_eq": [ - 653 + 640 ], "_in": [ - 653 + 640 ], "_is_null": [ 3 ], "_neq": [ - 653 + 640 ], "_nin": [ - 653 + 640 ], "__typename": [ 78 @@ -11057,7 +11180,7 @@ export default { 38 ], "returning": [ - 648 + 635 ], "__typename": [ 78 @@ -11065,10 +11188,10 @@ export default { }, "e_league_proposal_statuses_obj_rel_insert_input": { "data": [ - 655 + 642 ], "on_conflict": [ - 660 + 647 ], "__typename": [ 78 @@ -11076,13 +11199,13 @@ export default { }, "e_league_proposal_statuses_on_conflict": { "constraint": [ - 652 + 639 ], "update_columns": [ - 667 + 654 ], "where": [ - 651 + 638 ], "__typename": [ 78 @@ -11090,10 +11213,10 @@ export default { }, "e_league_proposal_statuses_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -11121,7 +11244,7 @@ export default { }, "e_league_proposal_statuses_stream_cursor_input": { "initial_value": [ - 666 + 653 ], "ordering": [ 236 @@ -11144,10 +11267,10 @@ export default { "e_league_proposal_statuses_update_column": {}, "e_league_proposal_statuses_updates": { "_set": [ - 664 + 651 ], "where": [ - 651 + 638 ], "__typename": [ 78 @@ -11166,10 +11289,10 @@ export default { }, "e_league_registration_statuses_aggregate": { "aggregate": [ - 671 + 658 ], "nodes": [ - 669 + 656 ], "__typename": [ 78 @@ -11180,7 +11303,7 @@ export default { 38, { "columns": [ - 684, + 671, "[e_league_registration_statuses_select_column!]" ], "distinct": [ @@ -11189,10 +11312,10 @@ export default { } ], "max": [ - 677 + 664 ], "min": [ - 678 + 665 ], "__typename": [ 78 @@ -11200,13 +11323,13 @@ export default { }, "e_league_registration_statuses_bool_exp": { "_and": [ - 672 + 659 ], "_not": [ - 672 + 659 ], "_or": [ - 672 + 659 ], "description": [ 80 @@ -11222,19 +11345,19 @@ export default { "e_league_registration_statuses_enum": {}, "e_league_registration_statuses_enum_comparison_exp": { "_eq": [ - 674 + 661 ], "_in": [ - 674 + 661 ], "_is_null": [ 3 ], "_neq": [ - 674 + 661 ], "_nin": [ - 674 + 661 ], "__typename": [ 78 @@ -11278,7 +11401,7 @@ export default { 38 ], "returning": [ - 669 + 656 ], "__typename": [ 78 @@ -11286,10 +11409,10 @@ export default { }, "e_league_registration_statuses_obj_rel_insert_input": { "data": [ - 676 + 663 ], "on_conflict": [ - 681 + 668 ], "__typename": [ 78 @@ -11297,13 +11420,13 @@ export default { }, "e_league_registration_statuses_on_conflict": { "constraint": [ - 673 + 660 ], "update_columns": [ - 688 + 675 ], "where": [ - 672 + 659 ], "__typename": [ 78 @@ -11311,10 +11434,10 @@ export default { }, "e_league_registration_statuses_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -11342,7 +11465,7 @@ export default { }, "e_league_registration_statuses_stream_cursor_input": { "initial_value": [ - 687 + 674 ], "ordering": [ 236 @@ -11365,10 +11488,10 @@ export default { "e_league_registration_statuses_update_column": {}, "e_league_registration_statuses_updates": { "_set": [ - 685 + 672 ], "where": [ - 672 + 659 ], "__typename": [ 78 @@ -11387,10 +11510,10 @@ export default { }, "e_league_season_statuses_aggregate": { "aggregate": [ - 692 + 679 ], "nodes": [ - 690 + 677 ], "__typename": [ 78 @@ -11401,7 +11524,7 @@ export default { 38, { "columns": [ - 705, + 692, "[e_league_season_statuses_select_column!]" ], "distinct": [ @@ -11410,10 +11533,10 @@ export default { } ], "max": [ - 698 + 685 ], "min": [ - 699 + 686 ], "__typename": [ 78 @@ -11421,13 +11544,13 @@ export default { }, "e_league_season_statuses_bool_exp": { "_and": [ - 693 + 680 ], "_not": [ - 693 + 680 ], "_or": [ - 693 + 680 ], "description": [ 80 @@ -11443,19 +11566,19 @@ export default { "e_league_season_statuses_enum": {}, "e_league_season_statuses_enum_comparison_exp": { "_eq": [ - 695 + 682 ], "_in": [ - 695 + 682 ], "_is_null": [ 3 ], "_neq": [ - 695 + 682 ], "_nin": [ - 695 + 682 ], "__typename": [ 78 @@ -11499,7 +11622,7 @@ export default { 38 ], "returning": [ - 690 + 677 ], "__typename": [ 78 @@ -11507,10 +11630,10 @@ export default { }, "e_league_season_statuses_obj_rel_insert_input": { "data": [ - 697 + 684 ], "on_conflict": [ - 702 + 689 ], "__typename": [ 78 @@ -11518,13 +11641,13 @@ export default { }, "e_league_season_statuses_on_conflict": { "constraint": [ - 694 + 681 ], "update_columns": [ - 709 + 696 ], "where": [ - 693 + 680 ], "__typename": [ 78 @@ -11532,10 +11655,10 @@ export default { }, "e_league_season_statuses_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -11563,7 +11686,7 @@ export default { }, "e_league_season_statuses_stream_cursor_input": { "initial_value": [ - 708 + 695 ], "ordering": [ 236 @@ -11586,10 +11709,10 @@ export default { "e_league_season_statuses_update_column": {}, "e_league_season_statuses_updates": { "_set": [ - 706 + 693 ], "where": [ - 693 + 680 ], "__typename": [ 78 @@ -11608,10 +11731,10 @@ export default { }, "e_lobby_access_aggregate": { "aggregate": [ - 713 + 700 ], "nodes": [ - 711 + 698 ], "__typename": [ 78 @@ -11622,7 +11745,7 @@ export default { 38, { "columns": [ - 726, + 713, "[e_lobby_access_select_column!]" ], "distinct": [ @@ -11631,10 +11754,10 @@ export default { } ], "max": [ - 719 + 706 ], "min": [ - 720 + 707 ], "__typename": [ 78 @@ -11642,13 +11765,13 @@ export default { }, "e_lobby_access_bool_exp": { "_and": [ - 714 + 701 ], "_not": [ - 714 + 701 ], "_or": [ - 714 + 701 ], "description": [ 80 @@ -11664,19 +11787,19 @@ export default { "e_lobby_access_enum": {}, "e_lobby_access_enum_comparison_exp": { "_eq": [ - 716 + 703 ], "_in": [ - 716 + 703 ], "_is_null": [ 3 ], "_neq": [ - 716 + 703 ], "_nin": [ - 716 + 703 ], "__typename": [ 78 @@ -11720,7 +11843,7 @@ export default { 38 ], "returning": [ - 711 + 698 ], "__typename": [ 78 @@ -11728,10 +11851,10 @@ export default { }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 718 + 705 ], "on_conflict": [ - 723 + 710 ], "__typename": [ 78 @@ -11739,13 +11862,13 @@ export default { }, "e_lobby_access_on_conflict": { "constraint": [ - 715 + 702 ], "update_columns": [ - 730 + 717 ], "where": [ - 714 + 701 ], "__typename": [ 78 @@ -11753,10 +11876,10 @@ export default { }, "e_lobby_access_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -11784,7 +11907,7 @@ export default { }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 729 + 716 ], "ordering": [ 236 @@ -11807,10 +11930,10 @@ export default { "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 727 + 714 ], "where": [ - 714 + 701 ], "__typename": [ 78 @@ -11829,10 +11952,10 @@ export default { }, "e_lobby_player_status_aggregate": { "aggregate": [ - 734 + 721 ], "nodes": [ - 732 + 719 ], "__typename": [ 78 @@ -11843,7 +11966,7 @@ export default { 38, { "columns": [ - 746, + 733, "[e_lobby_player_status_select_column!]" ], "distinct": [ @@ -11852,10 +11975,10 @@ export default { } ], "max": [ - 740 + 727 ], "min": [ - 741 + 728 ], "__typename": [ 78 @@ -11863,13 +11986,13 @@ export default { }, "e_lobby_player_status_bool_exp": { "_and": [ - 735 + 722 ], "_not": [ - 735 + 722 ], "_or": [ - 735 + 722 ], "description": [ 80 @@ -11885,19 +12008,19 @@ export default { "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 737 + 724 ], "_in": [ - 737 + 724 ], "_is_null": [ 3 ], "_neq": [ - 737 + 724 ], "_nin": [ - 737 + 724 ], "__typename": [ 78 @@ -11941,7 +12064,7 @@ export default { 38 ], "returning": [ - 732 + 719 ], "__typename": [ 78 @@ -11949,13 +12072,13 @@ export default { }, "e_lobby_player_status_on_conflict": { "constraint": [ - 736 + 723 ], "update_columns": [ - 750 + 737 ], "where": [ - 735 + 722 ], "__typename": [ 78 @@ -11963,10 +12086,10 @@ export default { }, "e_lobby_player_status_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -11994,7 +12117,7 @@ export default { }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 749 + 736 ], "ordering": [ 236 @@ -12017,10 +12140,10 @@ export default { "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 747 + 734 ], "where": [ - 735 + 722 ], "__typename": [ 78 @@ -12039,10 +12162,10 @@ export default { }, "e_map_pool_types_aggregate": { "aggregate": [ - 754 + 741 ], "nodes": [ - 752 + 739 ], "__typename": [ 78 @@ -12053,7 +12176,7 @@ export default { 38, { "columns": [ - 767, + 754, "[e_map_pool_types_select_column!]" ], "distinct": [ @@ -12062,10 +12185,10 @@ export default { } ], "max": [ - 760 + 747 ], "min": [ - 761 + 748 ], "__typename": [ 78 @@ -12073,13 +12196,13 @@ export default { }, "e_map_pool_types_bool_exp": { "_and": [ - 755 + 742 ], "_not": [ - 755 + 742 ], "_or": [ - 755 + 742 ], "description": [ 80 @@ -12095,19 +12218,19 @@ export default { "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 757 + 744 ], "_in": [ - 757 + 744 ], "_is_null": [ 3 ], "_neq": [ - 757 + 744 ], "_nin": [ - 757 + 744 ], "__typename": [ 78 @@ -12151,7 +12274,7 @@ export default { 38 ], "returning": [ - 752 + 739 ], "__typename": [ 78 @@ -12159,10 +12282,10 @@ export default { }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 759 + 746 ], "on_conflict": [ - 764 + 751 ], "__typename": [ 78 @@ -12170,13 +12293,13 @@ export default { }, "e_map_pool_types_on_conflict": { "constraint": [ - 756 + 743 ], "update_columns": [ - 771 + 758 ], "where": [ - 755 + 742 ], "__typename": [ 78 @@ -12184,10 +12307,10 @@ export default { }, "e_map_pool_types_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -12215,7 +12338,7 @@ export default { }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 770 + 757 ], "ordering": [ 236 @@ -12238,10 +12361,10 @@ export default { "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 768 + 755 ], "where": [ - 755 + 742 ], "__typename": [ 78 @@ -12252,10 +12375,10 @@ export default { 78 ], "match_clips": [ - 2143, + 1891, { "distinct_on": [ - 2165, + 1913, "[match_clips_select_column!]" ], "limit": [ @@ -12265,19 +12388,19 @@ export default { 38 ], "order_by": [ - 2163, + 1911, "[match_clips_order_by!]" ], "where": [ - 2152 + 1900 ] } ], "match_clips_aggregate": [ - 2144, + 1892, { "distinct_on": [ - 2165, + 1913, "[match_clips_select_column!]" ], "limit": [ @@ -12287,11 +12410,11 @@ export default { 38 ], "order_by": [ - 2163, + 1911, "[match_clips_order_by!]" ], "where": [ - 2152 + 1900 ] } ], @@ -12304,10 +12427,10 @@ export default { }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 775 + 762 ], "nodes": [ - 773 + 760 ], "__typename": [ 78 @@ -12318,7 +12441,7 @@ export default { 38, { "columns": [ - 787, + 774, "[e_match_clip_visibility_select_column!]" ], "distinct": [ @@ -12327,10 +12450,10 @@ export default { } ], "max": [ - 781 + 768 ], "min": [ - 782 + 769 ], "__typename": [ 78 @@ -12338,22 +12461,22 @@ export default { }, "e_match_clip_visibility_bool_exp": { "_and": [ - 776 + 763 ], "_not": [ - 776 + 763 ], "_or": [ - 776 + 763 ], "description": [ 80 ], "match_clips": [ - 2152 + 1900 ], "match_clips_aggregate": [ - 2145 + 1893 ], "value": [ 80 @@ -12366,19 +12489,19 @@ export default { "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 778 + 765 ], "_in": [ - 778 + 765 ], "_is_null": [ 3 ], "_neq": [ - 778 + 765 ], "_nin": [ - 778 + 765 ], "__typename": [ 78 @@ -12389,7 +12512,7 @@ export default { 78 ], "match_clips": [ - 2149 + 1897 ], "value": [ 78 @@ -12425,7 +12548,7 @@ export default { 38 ], "returning": [ - 773 + 760 ], "__typename": [ 78 @@ -12433,13 +12556,13 @@ export default { }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 777 + 764 ], "update_columns": [ - 791 + 778 ], "where": [ - 776 + 763 ], "__typename": [ 78 @@ -12447,13 +12570,13 @@ export default { }, "e_match_clip_visibility_order_by": { "description": [ - 2781 + 2529 ], "match_clips_aggregate": [ - 2148 + 1896 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -12481,7 +12604,7 @@ export default { }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 790 + 777 ], "ordering": [ 236 @@ -12504,10 +12627,10 @@ export default { "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 788 + 775 ], "where": [ - 776 + 763 ], "__typename": [ 78 @@ -12518,10 +12641,10 @@ export default { 78 ], "match_maps": [ - 2434, + 2182, { "distinct_on": [ - 2456, + 2204, "[match_maps_select_column!]" ], "limit": [ @@ -12531,19 +12654,19 @@ export default { 38 ], "order_by": [ - 2454, + 2202, "[match_maps_order_by!]" ], "where": [ - 2443 + 2191 ] } ], "match_maps_aggregate": [ - 2435, + 2183, { "distinct_on": [ - 2456, + 2204, "[match_maps_select_column!]" ], "limit": [ @@ -12553,11 +12676,11 @@ export default { 38 ], "order_by": [ - 2454, + 2202, "[match_maps_order_by!]" ], "where": [ - 2443 + 2191 ] } ], @@ -12570,10 +12693,10 @@ export default { }, "e_match_map_status_aggregate": { "aggregate": [ - 795 + 782 ], "nodes": [ - 793 + 780 ], "__typename": [ 78 @@ -12584,7 +12707,7 @@ export default { 38, { "columns": [ - 808, + 795, "[e_match_map_status_select_column!]" ], "distinct": [ @@ -12593,10 +12716,10 @@ export default { } ], "max": [ - 801 + 788 ], "min": [ - 802 + 789 ], "__typename": [ 78 @@ -12604,22 +12727,22 @@ export default { }, "e_match_map_status_bool_exp": { "_and": [ - 796 + 783 ], "_not": [ - 796 + 783 ], "_or": [ - 796 + 783 ], "description": [ 80 ], "match_maps": [ - 2443 + 2191 ], "match_maps_aggregate": [ - 2436 + 2184 ], "value": [ 80 @@ -12632,19 +12755,19 @@ export default { "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 798 + 785 ], "_in": [ - 798 + 785 ], "_is_null": [ 3 ], "_neq": [ - 798 + 785 ], "_nin": [ - 798 + 785 ], "__typename": [ 78 @@ -12655,7 +12778,7 @@ export default { 78 ], "match_maps": [ - 2440 + 2188 ], "value": [ 78 @@ -12691,7 +12814,7 @@ export default { 38 ], "returning": [ - 793 + 780 ], "__typename": [ 78 @@ -12699,10 +12822,10 @@ export default { }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 800 + 787 ], "on_conflict": [ - 805 + 792 ], "__typename": [ 78 @@ -12710,13 +12833,13 @@ export default { }, "e_match_map_status_on_conflict": { "constraint": [ - 797 + 784 ], "update_columns": [ - 812 + 799 ], "where": [ - 796 + 783 ], "__typename": [ 78 @@ -12724,13 +12847,13 @@ export default { }, "e_match_map_status_order_by": { "description": [ - 2781 + 2529 ], "match_maps_aggregate": [ - 2439 + 2187 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -12758,7 +12881,7 @@ export default { }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 811 + 798 ], "ordering": [ 236 @@ -12781,10 +12904,10 @@ export default { "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 809 + 796 ], "where": [ - 796 + 783 ], "__typename": [ 78 @@ -12803,10 +12926,10 @@ export default { }, "e_match_mode_aggregate": { "aggregate": [ - 816 + 803 ], "nodes": [ - 814 + 801 ], "__typename": [ 78 @@ -12817,7 +12940,7 @@ export default { 38, { "columns": [ - 828, + 815, "[e_match_mode_select_column!]" ], "distinct": [ @@ -12826,10 +12949,10 @@ export default { } ], "max": [ - 822 + 809 ], "min": [ - 823 + 810 ], "__typename": [ 78 @@ -12837,13 +12960,13 @@ export default { }, "e_match_mode_bool_exp": { "_and": [ - 817 + 804 ], "_not": [ - 817 + 804 ], "_or": [ - 817 + 804 ], "description": [ 80 @@ -12859,19 +12982,19 @@ export default { "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 819 + 806 ], "_in": [ - 819 + 806 ], "_is_null": [ 3 ], "_neq": [ - 819 + 806 ], "_nin": [ - 819 + 806 ], "__typename": [ 78 @@ -12915,7 +13038,7 @@ export default { 38 ], "returning": [ - 814 + 801 ], "__typename": [ 78 @@ -12923,13 +13046,13 @@ export default { }, "e_match_mode_on_conflict": { "constraint": [ - 818 + 805 ], "update_columns": [ - 832 + 819 ], "where": [ - 817 + 804 ], "__typename": [ 78 @@ -12937,10 +13060,10 @@ export default { }, "e_match_mode_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -12968,7 +13091,7 @@ export default { }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 831 + 818 ], "ordering": [ 236 @@ -12991,10 +13114,10 @@ export default { "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 829 + 816 ], "where": [ - 817 + 804 ], "__typename": [ 78 @@ -13005,10 +13128,10 @@ export default { 78 ], "matches": [ - 2596, + 2344, { "distinct_on": [ - 2618, + 2366, "[matches_select_column!]" ], "limit": [ @@ -13018,19 +13141,19 @@ export default { 38 ], "order_by": [ - 2616, + 2364, "[matches_order_by!]" ], "where": [ - 2605 + 2353 ] } ], "matches_aggregate": [ - 2597, + 2345, { "distinct_on": [ - 2618, + 2366, "[matches_select_column!]" ], "limit": [ @@ -13040,11 +13163,11 @@ export default { 38 ], "order_by": [ - 2616, + 2364, "[matches_order_by!]" ], "where": [ - 2605 + 2353 ] } ], @@ -13057,10 +13180,10 @@ export default { }, "e_match_status_aggregate": { "aggregate": [ - 836 + 823 ], "nodes": [ - 834 + 821 ], "__typename": [ 78 @@ -13071,7 +13194,7 @@ export default { 38, { "columns": [ - 849, + 836, "[e_match_status_select_column!]" ], "distinct": [ @@ -13080,10 +13203,10 @@ export default { } ], "max": [ - 842 + 829 ], "min": [ - 843 + 830 ], "__typename": [ 78 @@ -13091,22 +13214,22 @@ export default { }, "e_match_status_bool_exp": { "_and": [ - 837 + 824 ], "_not": [ - 837 + 824 ], "_or": [ - 837 + 824 ], "description": [ 80 ], "matches": [ - 2605 + 2353 ], "matches_aggregate": [ - 2598 + 2346 ], "value": [ 80 @@ -13119,19 +13242,19 @@ export default { "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 839 + 826 ], "_in": [ - 839 + 826 ], "_is_null": [ 3 ], "_neq": [ - 839 + 826 ], "_nin": [ - 839 + 826 ], "__typename": [ 78 @@ -13142,7 +13265,7 @@ export default { 78 ], "matches": [ - 2602 + 2350 ], "value": [ 78 @@ -13178,7 +13301,7 @@ export default { 38 ], "returning": [ - 834 + 821 ], "__typename": [ 78 @@ -13186,10 +13309,10 @@ export default { }, "e_match_status_obj_rel_insert_input": { "data": [ - 841 + 828 ], "on_conflict": [ - 846 + 833 ], "__typename": [ 78 @@ -13197,13 +13320,13 @@ export default { }, "e_match_status_on_conflict": { "constraint": [ - 838 + 825 ], "update_columns": [ - 853 + 840 ], "where": [ - 837 + 824 ], "__typename": [ 78 @@ -13211,13 +13334,13 @@ export default { }, "e_match_status_order_by": { "description": [ - 2781 + 2529 ], "matches_aggregate": [ - 2601 + 2349 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -13245,7 +13368,7 @@ export default { }, "e_match_status_stream_cursor_input": { "initial_value": [ - 852 + 839 ], "ordering": [ 236 @@ -13268,10 +13391,10 @@ export default { "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 850 + 837 ], "where": [ - 837 + 824 ], "__typename": [ 78 @@ -13282,10 +13405,10 @@ export default { 78 ], "maps": [ - 2114, + 1862, { "distinct_on": [ - 2135, + 1883, "[maps_select_column!]" ], "limit": [ @@ -13295,19 +13418,19 @@ export default { 38 ], "order_by": [ - 2133, + 1881, "[maps_order_by!]" ], "where": [ - 2123 + 1871 ] } ], "maps_aggregate": [ - 2115, + 1863, { "distinct_on": [ - 2135, + 1883, "[maps_select_column!]" ], "limit": [ @@ -13317,11 +13440,11 @@ export default { 38 ], "order_by": [ - 2133, + 1881, "[maps_order_by!]" ], "where": [ - 2123 + 1871 ] } ], @@ -13334,10 +13457,10 @@ export default { }, "e_match_types_aggregate": { "aggregate": [ - 857 + 844 ], "nodes": [ - 855 + 842 ], "__typename": [ 78 @@ -13348,7 +13471,7 @@ export default { 38, { "columns": [ - 870, + 857, "[e_match_types_select_column!]" ], "distinct": [ @@ -13357,10 +13480,10 @@ export default { } ], "max": [ - 863 + 850 ], "min": [ - 864 + 851 ], "__typename": [ 78 @@ -13368,22 +13491,22 @@ export default { }, "e_match_types_bool_exp": { "_and": [ - 858 + 845 ], "_not": [ - 858 + 845 ], "_or": [ - 858 + 845 ], "description": [ 80 ], "maps": [ - 2123 + 1871 ], "maps_aggregate": [ - 2116 + 1864 ], "value": [ 80 @@ -13396,19 +13519,19 @@ export default { "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 860 + 847 ], "_in": [ - 860 + 847 ], "_is_null": [ 3 ], "_neq": [ - 860 + 847 ], "_nin": [ - 860 + 847 ], "__typename": [ 78 @@ -13419,7 +13542,7 @@ export default { 78 ], "maps": [ - 2122 + 1870 ], "value": [ 78 @@ -13455,7 +13578,7 @@ export default { 38 ], "returning": [ - 855 + 842 ], "__typename": [ 78 @@ -13463,10 +13586,10 @@ export default { }, "e_match_types_obj_rel_insert_input": { "data": [ - 862 + 849 ], "on_conflict": [ - 867 + 854 ], "__typename": [ 78 @@ -13474,13 +13597,13 @@ export default { }, "e_match_types_on_conflict": { "constraint": [ - 859 + 846 ], "update_columns": [ - 874 + 861 ], "where": [ - 858 + 845 ], "__typename": [ 78 @@ -13488,13 +13611,13 @@ export default { }, "e_match_types_order_by": { "description": [ - 2781 + 2529 ], "maps_aggregate": [ - 2121 + 1869 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -13522,7 +13645,7 @@ export default { }, "e_match_types_stream_cursor_input": { "initial_value": [ - 873 + 860 ], "ordering": [ 236 @@ -13545,10 +13668,10 @@ export default { "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 871 + 858 ], "where": [ - 858 + 845 ], "__typename": [ 78 @@ -13567,10 +13690,10 @@ export default { }, "e_notification_types_aggregate": { "aggregate": [ - 878 + 865 ], "nodes": [ - 876 + 863 ], "__typename": [ 78 @@ -13581,7 +13704,7 @@ export default { 38, { "columns": [ - 890, + 877, "[e_notification_types_select_column!]" ], "distinct": [ @@ -13590,10 +13713,10 @@ export default { } ], "max": [ - 884 + 871 ], "min": [ - 885 + 872 ], "__typename": [ 78 @@ -13601,13 +13724,13 @@ export default { }, "e_notification_types_bool_exp": { "_and": [ - 879 + 866 ], "_not": [ - 879 + 866 ], "_or": [ - 879 + 866 ], "description": [ 80 @@ -13623,19 +13746,19 @@ export default { "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 881 + 868 ], "_in": [ - 881 + 868 ], "_is_null": [ 3 ], "_neq": [ - 881 + 868 ], "_nin": [ - 881 + 868 ], "__typename": [ 78 @@ -13679,7 +13802,7 @@ export default { 38 ], "returning": [ - 876 + 863 ], "__typename": [ 78 @@ -13687,13 +13810,13 @@ export default { }, "e_notification_types_on_conflict": { "constraint": [ - 880 + 867 ], "update_columns": [ - 894 + 881 ], "where": [ - 879 + 866 ], "__typename": [ 78 @@ -13701,10 +13824,10 @@ export default { }, "e_notification_types_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -13732,7 +13855,7 @@ export default { }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 893 + 880 ], "ordering": [ 236 @@ -13755,10 +13878,10 @@ export default { "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 891 + 878 ], "where": [ - 879 + 866 ], "__typename": [ 78 @@ -13769,10 +13892,10 @@ export default { 78 ], "player_objectives": [ - 3337, + 3085, { "distinct_on": [ - 3358, + 3106, "[player_objectives_select_column!]" ], "limit": [ @@ -13782,19 +13905,19 @@ export default { 38 ], "order_by": [ - 3356, + 3104, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3094 ] } ], "player_objectives_aggregate": [ - 3338, + 3086, { "distinct_on": [ - 3358, + 3106, "[player_objectives_select_column!]" ], "limit": [ @@ -13804,11 +13927,11 @@ export default { 38 ], "order_by": [ - 3356, + 3104, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3094 ] } ], @@ -13821,10 +13944,10 @@ export default { }, "e_objective_types_aggregate": { "aggregate": [ - 898 + 885 ], "nodes": [ - 896 + 883 ], "__typename": [ 78 @@ -13835,7 +13958,7 @@ export default { 38, { "columns": [ - 910, + 897, "[e_objective_types_select_column!]" ], "distinct": [ @@ -13844,10 +13967,10 @@ export default { } ], "max": [ - 904 + 891 ], "min": [ - 905 + 892 ], "__typename": [ 78 @@ -13855,22 +13978,22 @@ export default { }, "e_objective_types_bool_exp": { "_and": [ - 899 + 886 ], "_not": [ - 899 + 886 ], "_or": [ - 899 + 886 ], "description": [ 80 ], "player_objectives": [ - 3346 + 3094 ], "player_objectives_aggregate": [ - 3339 + 3087 ], "value": [ 80 @@ -13883,19 +14006,19 @@ export default { "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 901 + 888 ], "_in": [ - 901 + 888 ], "_is_null": [ 3 ], "_neq": [ - 901 + 888 ], "_nin": [ - 901 + 888 ], "__typename": [ 78 @@ -13906,7 +14029,7 @@ export default { 78 ], "player_objectives": [ - 3343 + 3091 ], "value": [ 78 @@ -13942,7 +14065,7 @@ export default { 38 ], "returning": [ - 896 + 883 ], "__typename": [ 78 @@ -13950,13 +14073,13 @@ export default { }, "e_objective_types_on_conflict": { "constraint": [ - 900 + 887 ], "update_columns": [ - 914 + 901 ], "where": [ - 899 + 886 ], "__typename": [ 78 @@ -13964,13 +14087,13 @@ export default { }, "e_objective_types_order_by": { "description": [ - 2781 + 2529 ], "player_objectives_aggregate": [ - 3342 + 3090 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -13998,7 +14121,7 @@ export default { }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 913 + 900 ], "ordering": [ 236 @@ -14021,10 +14144,10 @@ export default { "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 911 + 898 ], "where": [ - 899 + 886 ], "__typename": [ 78 @@ -14043,10 +14166,10 @@ export default { }, "e_player_roles_aggregate": { "aggregate": [ - 918 + 905 ], "nodes": [ - 916 + 903 ], "__typename": [ 78 @@ -14057,7 +14180,7 @@ export default { 38, { "columns": [ - 930, + 917, "[e_player_roles_select_column!]" ], "distinct": [ @@ -14066,10 +14189,10 @@ export default { } ], "max": [ - 924 + 911 ], "min": [ - 925 + 912 ], "__typename": [ 78 @@ -14077,13 +14200,13 @@ export default { }, "e_player_roles_bool_exp": { "_and": [ - 919 + 906 ], "_not": [ - 919 + 906 ], "_or": [ - 919 + 906 ], "description": [ 80 @@ -14099,19 +14222,19 @@ export default { "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 921 + 908 ], "_in": [ - 921 + 908 ], "_is_null": [ 3 ], "_neq": [ - 921 + 908 ], "_nin": [ - 921 + 908 ], "__typename": [ 78 @@ -14155,7 +14278,7 @@ export default { 38 ], "returning": [ - 916 + 903 ], "__typename": [ 78 @@ -14163,13 +14286,13 @@ export default { }, "e_player_roles_on_conflict": { "constraint": [ - 920 + 907 ], "update_columns": [ - 934 + 921 ], "where": [ - 919 + 906 ], "__typename": [ 78 @@ -14177,10 +14300,10 @@ export default { }, "e_player_roles_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -14208,7 +14331,7 @@ export default { }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 933 + 920 ], "ordering": [ 236 @@ -14231,10 +14354,10 @@ export default { "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 931 + 918 ], "where": [ - 919 + 906 ], "__typename": [ 78 @@ -14253,10 +14376,10 @@ export default { }, "e_plugin_runtimes_aggregate": { "aggregate": [ - 938 + 925 ], "nodes": [ - 936 + 923 ], "__typename": [ 78 @@ -14267,7 +14390,7 @@ export default { 38, { "columns": [ - 950, + 937, "[e_plugin_runtimes_select_column!]" ], "distinct": [ @@ -14276,10 +14399,10 @@ export default { } ], "max": [ - 944 + 931 ], "min": [ - 945 + 932 ], "__typename": [ 78 @@ -14287,13 +14410,13 @@ export default { }, "e_plugin_runtimes_bool_exp": { "_and": [ - 939 + 926 ], "_not": [ - 939 + 926 ], "_or": [ - 939 + 926 ], "description": [ 80 @@ -14309,19 +14432,19 @@ export default { "e_plugin_runtimes_enum": {}, "e_plugin_runtimes_enum_comparison_exp": { "_eq": [ - 941 + 928 ], "_in": [ - 941 + 928 ], "_is_null": [ 3 ], "_neq": [ - 941 + 928 ], "_nin": [ - 941 + 928 ], "__typename": [ 78 @@ -14365,7 +14488,7 @@ export default { 38 ], "returning": [ - 936 + 923 ], "__typename": [ 78 @@ -14373,13 +14496,13 @@ export default { }, "e_plugin_runtimes_on_conflict": { "constraint": [ - 940 + 927 ], "update_columns": [ - 954 + 941 ], "where": [ - 939 + 926 ], "__typename": [ 78 @@ -14387,10 +14510,10 @@ export default { }, "e_plugin_runtimes_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -14418,7 +14541,7 @@ export default { }, "e_plugin_runtimes_stream_cursor_input": { "initial_value": [ - 953 + 940 ], "ordering": [ 236 @@ -14441,10 +14564,10 @@ export default { "e_plugin_runtimes_update_column": {}, "e_plugin_runtimes_updates": { "_set": [ - 951 + 938 ], "where": [ - 939 + 926 ], "__typename": [ 78 @@ -14463,10 +14586,10 @@ export default { }, "e_ready_settings_aggregate": { "aggregate": [ - 958 + 945 ], "nodes": [ - 956 + 943 ], "__typename": [ 78 @@ -14477,7 +14600,7 @@ export default { 38, { "columns": [ - 970, + 957, "[e_ready_settings_select_column!]" ], "distinct": [ @@ -14486,10 +14609,10 @@ export default { } ], "max": [ - 964 + 951 ], "min": [ - 965 + 952 ], "__typename": [ 78 @@ -14497,13 +14620,13 @@ export default { }, "e_ready_settings_bool_exp": { "_and": [ - 959 + 946 ], "_not": [ - 959 + 946 ], "_or": [ - 959 + 946 ], "description": [ 80 @@ -14519,19 +14642,19 @@ export default { "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 961 + 948 ], "_in": [ - 961 + 948 ], "_is_null": [ 3 ], "_neq": [ - 961 + 948 ], "_nin": [ - 961 + 948 ], "__typename": [ 78 @@ -14575,7 +14698,7 @@ export default { 38 ], "returning": [ - 956 + 943 ], "__typename": [ 78 @@ -14583,13 +14706,13 @@ export default { }, "e_ready_settings_on_conflict": { "constraint": [ - 960 + 947 ], "update_columns": [ - 974 + 961 ], "where": [ - 959 + 946 ], "__typename": [ 78 @@ -14597,10 +14720,10 @@ export default { }, "e_ready_settings_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -14628,7 +14751,7 @@ export default { }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 973 + 960 ], "ordering": [ 236 @@ -14651,10 +14774,10 @@ export default { "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 971 + 958 ], "where": [ - 959 + 946 ], "__typename": [ 78 @@ -14673,10 +14796,10 @@ export default { }, "e_sanction_types_aggregate": { "aggregate": [ - 978 + 965 ], "nodes": [ - 976 + 963 ], "__typename": [ 78 @@ -14687,7 +14810,7 @@ export default { 38, { "columns": [ - 991, + 978, "[e_sanction_types_select_column!]" ], "distinct": [ @@ -14696,10 +14819,10 @@ export default { } ], "max": [ - 984 + 971 ], "min": [ - 985 + 972 ], "__typename": [ 78 @@ -14707,13 +14830,13 @@ export default { }, "e_sanction_types_bool_exp": { "_and": [ - 979 + 966 ], "_not": [ - 979 + 966 ], "_or": [ - 979 + 966 ], "description": [ 80 @@ -14729,19 +14852,19 @@ export default { "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 981 + 968 ], "_in": [ - 981 + 968 ], "_is_null": [ 3 ], "_neq": [ - 981 + 968 ], "_nin": [ - 981 + 968 ], "__typename": [ 78 @@ -14785,7 +14908,7 @@ export default { 38 ], "returning": [ - 976 + 963 ], "__typename": [ 78 @@ -14793,10 +14916,10 @@ export default { }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 983 + 970 ], "on_conflict": [ - 988 + 975 ], "__typename": [ 78 @@ -14804,13 +14927,13 @@ export default { }, "e_sanction_types_on_conflict": { "constraint": [ - 980 + 967 ], "update_columns": [ - 995 + 982 ], "where": [ - 979 + 966 ], "__typename": [ 78 @@ -14818,10 +14941,10 @@ export default { }, "e_sanction_types_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -14849,7 +14972,7 @@ export default { }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 994 + 981 ], "ordering": [ 236 @@ -14872,10 +14995,10 @@ export default { "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 992 + 979 ], "where": [ - 979 + 966 ], "__typename": [ 78 @@ -14886,10 +15009,10 @@ export default { 78 ], "scrim_requests": [ - 4180, + 3928, { "distinct_on": [ - 4204, + 3952, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14899,19 +15022,19 @@ export default { 38 ], "order_by": [ - 4202, + 3950, "[team_scrim_requests_order_by!]" ], "where": [ - 4191 + 3939 ] } ], "scrim_requests_aggregate": [ - 4181, + 3929, { "distinct_on": [ - 4204, + 3952, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14921,11 +15044,11 @@ export default { 38 ], "order_by": [ - 4202, + 3950, "[team_scrim_requests_order_by!]" ], "where": [ - 4191 + 3939 ] } ], @@ -14938,10 +15061,10 @@ export default { }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 999 + 986 ], "nodes": [ - 997 + 984 ], "__typename": [ 78 @@ -14952,7 +15075,7 @@ export default { 38, { "columns": [ - 1011, + 998, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ @@ -14961,10 +15084,10 @@ export default { } ], "max": [ - 1005 + 992 ], "min": [ - 1006 + 993 ], "__typename": [ 78 @@ -14972,22 +15095,22 @@ export default { }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 1000 + 987 ], "_not": [ - 1000 + 987 ], "_or": [ - 1000 + 987 ], "description": [ 80 ], "scrim_requests": [ - 4191 + 3939 ], "scrim_requests_aggregate": [ - 4182 + 3930 ], "value": [ 80 @@ -15000,19 +15123,19 @@ export default { "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 1002 + 989 ], "_in": [ - 1002 + 989 ], "_is_null": [ 3 ], "_neq": [ - 1002 + 989 ], "_nin": [ - 1002 + 989 ], "__typename": [ 78 @@ -15023,7 +15146,7 @@ export default { 78 ], "scrim_requests": [ - 4188 + 3936 ], "value": [ 78 @@ -15059,7 +15182,7 @@ export default { 38 ], "returning": [ - 997 + 984 ], "__typename": [ 78 @@ -15067,13 +15190,13 @@ export default { }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 1001 + 988 ], "update_columns": [ - 1015 + 1002 ], "where": [ - 1000 + 987 ], "__typename": [ 78 @@ -15081,13 +15204,13 @@ export default { }, "e_scrim_request_statuses_order_by": { "description": [ - 2781 + 2529 ], "scrim_requests_aggregate": [ - 4187 + 3935 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -15115,7 +15238,7 @@ export default { }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 1014 + 1001 ], "ordering": [ 236 @@ -15138,10 +15261,10 @@ export default { "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 1012 + 999 ], "where": [ - 1000 + 987 ], "__typename": [ 78 @@ -15152,10 +15275,10 @@ export default { 78 ], "servers": [ - 3853, + 3601, { "distinct_on": [ - 3877, + 3625, "[servers_select_column!]" ], "limit": [ @@ -15165,19 +15288,19 @@ export default { 38 ], "order_by": [ - 3875, + 3623, "[servers_order_by!]" ], "where": [ - 3864 + 3612 ] } ], "servers_aggregate": [ - 3854, + 3602, { "distinct_on": [ - 3877, + 3625, "[servers_select_column!]" ], "limit": [ @@ -15187,11 +15310,11 @@ export default { 38 ], "order_by": [ - 3875, + 3623, "[servers_order_by!]" ], "where": [ - 3864 + 3612 ] } ], @@ -15204,10 +15327,10 @@ export default { }, "e_server_types_aggregate": { "aggregate": [ - 1019 + 1006 ], "nodes": [ - 1017 + 1004 ], "__typename": [ 78 @@ -15218,7 +15341,7 @@ export default { 38, { "columns": [ - 1031, + 1018, "[e_server_types_select_column!]" ], "distinct": [ @@ -15227,10 +15350,10 @@ export default { } ], "max": [ - 1025 + 1012 ], "min": [ - 1026 + 1013 ], "__typename": [ 78 @@ -15238,22 +15361,22 @@ export default { }, "e_server_types_bool_exp": { "_and": [ - 1020 + 1007 ], "_not": [ - 1020 + 1007 ], "_or": [ - 1020 + 1007 ], "description": [ 80 ], "servers": [ - 3864 + 3612 ], "servers_aggregate": [ - 3855 + 3603 ], "value": [ 80 @@ -15266,19 +15389,19 @@ export default { "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 1022 + 1009 ], "_in": [ - 1022 + 1009 ], "_is_null": [ 3 ], "_neq": [ - 1022 + 1009 ], "_nin": [ - 1022 + 1009 ], "__typename": [ 78 @@ -15289,7 +15412,7 @@ export default { 78 ], "servers": [ - 3861 + 3609 ], "value": [ 78 @@ -15325,7 +15448,7 @@ export default { 38 ], "returning": [ - 1017 + 1004 ], "__typename": [ 78 @@ -15333,13 +15456,13 @@ export default { }, "e_server_types_on_conflict": { "constraint": [ - 1021 + 1008 ], "update_columns": [ - 1035 + 1022 ], "where": [ - 1020 + 1007 ], "__typename": [ 78 @@ -15347,13 +15470,13 @@ export default { }, "e_server_types_order_by": { "description": [ - 2781 + 2529 ], "servers_aggregate": [ - 3860 + 3608 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -15381,7 +15504,7 @@ export default { }, "e_server_types_stream_cursor_input": { "initial_value": [ - 1034 + 1021 ], "ordering": [ 236 @@ -15404,10 +15527,10 @@ export default { "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 1032 + 1019 ], "where": [ - 1020 + 1007 ], "__typename": [ 78 @@ -15418,10 +15541,10 @@ export default { 78 ], "match_map_lineup_1": [ - 2434, + 2182, { "distinct_on": [ - 2456, + 2204, "[match_maps_select_column!]" ], "limit": [ @@ -15431,19 +15554,19 @@ export default { 38 ], "order_by": [ - 2454, + 2202, "[match_maps_order_by!]" ], "where": [ - 2443 + 2191 ] } ], "match_map_lineup_1_aggregate": [ - 2435, + 2183, { "distinct_on": [ - 2456, + 2204, "[match_maps_select_column!]" ], "limit": [ @@ -15453,19 +15576,19 @@ export default { 38 ], "order_by": [ - 2454, + 2202, "[match_maps_order_by!]" ], "where": [ - 2443 + 2191 ] } ], "match_map_lineup_2": [ - 2434, + 2182, { "distinct_on": [ - 2456, + 2204, "[match_maps_select_column!]" ], "limit": [ @@ -15475,19 +15598,19 @@ export default { 38 ], "order_by": [ - 2454, + 2202, "[match_maps_order_by!]" ], "where": [ - 2443 + 2191 ] } ], "match_map_lineup_2_aggregate": [ - 2435, + 2183, { "distinct_on": [ - 2456, + 2204, "[match_maps_select_column!]" ], "limit": [ @@ -15497,11 +15620,11 @@ export default { 38 ], "order_by": [ - 2454, + 2202, "[match_maps_order_by!]" ], "where": [ - 2443 + 2191 ] } ], @@ -15514,10 +15637,10 @@ export default { }, "e_sides_aggregate": { "aggregate": [ - 1039 + 1026 ], "nodes": [ - 1037 + 1024 ], "__typename": [ 78 @@ -15528,7 +15651,7 @@ export default { 38, { "columns": [ - 1051, + 1038, "[e_sides_select_column!]" ], "distinct": [ @@ -15537,10 +15660,10 @@ export default { } ], "max": [ - 1045 + 1032 ], "min": [ - 1046 + 1033 ], "__typename": [ 78 @@ -15548,28 +15671,28 @@ export default { }, "e_sides_bool_exp": { "_and": [ - 1040 + 1027 ], "_not": [ - 1040 + 1027 ], "_or": [ - 1040 + 1027 ], "description": [ 80 ], "match_map_lineup_1": [ - 2443 + 2191 ], "match_map_lineup_1_aggregate": [ - 2436 + 2184 ], "match_map_lineup_2": [ - 2443 + 2191 ], "match_map_lineup_2_aggregate": [ - 2436 + 2184 ], "value": [ 80 @@ -15582,19 +15705,19 @@ export default { "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 1042 + 1029 ], "_in": [ - 1042 + 1029 ], "_is_null": [ 3 ], "_neq": [ - 1042 + 1029 ], "_nin": [ - 1042 + 1029 ], "__typename": [ 78 @@ -15605,10 +15728,10 @@ export default { 78 ], "match_map_lineup_1": [ - 2440 + 2188 ], "match_map_lineup_2": [ - 2440 + 2188 ], "value": [ 78 @@ -15644,7 +15767,7 @@ export default { 38 ], "returning": [ - 1037 + 1024 ], "__typename": [ 78 @@ -15652,13 +15775,13 @@ export default { }, "e_sides_on_conflict": { "constraint": [ - 1041 + 1028 ], "update_columns": [ - 1055 + 1042 ], "where": [ - 1040 + 1027 ], "__typename": [ 78 @@ -15666,16 +15789,16 @@ export default { }, "e_sides_order_by": { "description": [ - 2781 + 2529 ], "match_map_lineup_1_aggregate": [ - 2439 + 2187 ], "match_map_lineup_2_aggregate": [ - 2439 + 2187 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -15703,7 +15826,7 @@ export default { }, "e_sides_stream_cursor_input": { "initial_value": [ - 1054 + 1041 ], "ordering": [ 236 @@ -15726,10 +15849,10 @@ export default { "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 1052 + 1039 ], "where": [ - 1040 + 1027 ], "__typename": [ 78 @@ -15748,10 +15871,10 @@ export default { }, "e_system_alert_types_aggregate": { "aggregate": [ - 1059 + 1046 ], "nodes": [ - 1057 + 1044 ], "__typename": [ 78 @@ -15762,7 +15885,7 @@ export default { 38, { "columns": [ - 1071, + 1058, "[e_system_alert_types_select_column!]" ], "distinct": [ @@ -15771,10 +15894,10 @@ export default { } ], "max": [ - 1065 + 1052 ], "min": [ - 1066 + 1053 ], "__typename": [ 78 @@ -15782,13 +15905,13 @@ export default { }, "e_system_alert_types_bool_exp": { "_and": [ - 1060 + 1047 ], "_not": [ - 1060 + 1047 ], "_or": [ - 1060 + 1047 ], "description": [ 80 @@ -15804,19 +15927,19 @@ export default { "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 1062 + 1049 ], "_in": [ - 1062 + 1049 ], "_is_null": [ 3 ], "_neq": [ - 1062 + 1049 ], "_nin": [ - 1062 + 1049 ], "__typename": [ 78 @@ -15860,7 +15983,7 @@ export default { 38 ], "returning": [ - 1057 + 1044 ], "__typename": [ 78 @@ -15868,13 +15991,13 @@ export default { }, "e_system_alert_types_on_conflict": { "constraint": [ - 1061 + 1048 ], "update_columns": [ - 1075 + 1062 ], "where": [ - 1060 + 1047 ], "__typename": [ 78 @@ -15882,10 +16005,10 @@ export default { }, "e_system_alert_types_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -15913,7 +16036,7 @@ export default { }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 1074 + 1061 ], "ordering": [ 236 @@ -15936,10 +16059,10 @@ export default { "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 1072 + 1059 ], "where": [ - 1060 + 1047 ], "__typename": [ 78 @@ -15950,10 +16073,10 @@ export default { 78 ], "team_rosters": [ - 4039, + 3787, { "distinct_on": [ - 4062, + 3810, "[team_roster_select_column!]" ], "limit": [ @@ -15963,19 +16086,19 @@ export default { 38 ], "order_by": [ - 4060, + 3808, "[team_roster_order_by!]" ], "where": [ - 4050 + 3798 ] } ], "team_rosters_aggregate": [ - 4040, + 3788, { "distinct_on": [ - 4062, + 3810, "[team_roster_select_column!]" ], "limit": [ @@ -15985,19 +16108,19 @@ export default { 38 ], "order_by": [ - 4060, + 3808, "[team_roster_order_by!]" ], "where": [ - 4050 + 3798 ] } ], "tournament_team_rosters": [ - 4546, + 4387, { "distinct_on": [ - 4567, + 4408, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -16007,19 +16130,19 @@ export default { 38 ], "order_by": [ - 4565, + 4406, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4396 ] } ], "tournament_team_rosters_aggregate": [ - 4547, + 4388, { "distinct_on": [ - 4567, + 4408, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -16029,11 +16152,11 @@ export default { 38 ], "order_by": [ - 4565, + 4406, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4396 ] } ], @@ -16046,10 +16169,10 @@ export default { }, "e_team_roles_aggregate": { "aggregate": [ - 1079 + 1066 ], "nodes": [ - 1077 + 1064 ], "__typename": [ 78 @@ -16060,7 +16183,7 @@ export default { 38, { "columns": [ - 1092, + 1079, "[e_team_roles_select_column!]" ], "distinct": [ @@ -16069,10 +16192,10 @@ export default { } ], "max": [ - 1085 + 1072 ], "min": [ - 1086 + 1073 ], "__typename": [ 78 @@ -16080,28 +16203,28 @@ export default { }, "e_team_roles_bool_exp": { "_and": [ - 1080 + 1067 ], "_not": [ - 1080 + 1067 ], "_or": [ - 1080 + 1067 ], "description": [ 80 ], "team_rosters": [ - 4050 + 3798 ], "team_rosters_aggregate": [ - 4041 + 3789 ], "tournament_team_rosters": [ - 4555 + 4396 ], "tournament_team_rosters_aggregate": [ - 4548 + 4389 ], "value": [ 80 @@ -16114,19 +16237,19 @@ export default { "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 1082 + 1069 ], "_in": [ - 1082 + 1069 ], "_is_null": [ 3 ], "_neq": [ - 1082 + 1069 ], "_nin": [ - 1082 + 1069 ], "__typename": [ 78 @@ -16137,10 +16260,10 @@ export default { 78 ], "team_rosters": [ - 4047 + 3795 ], "tournament_team_rosters": [ - 4552 + 4393 ], "value": [ 78 @@ -16176,7 +16299,7 @@ export default { 38 ], "returning": [ - 1077 + 1064 ], "__typename": [ 78 @@ -16184,10 +16307,10 @@ export default { }, "e_team_roles_obj_rel_insert_input": { "data": [ - 1084 + 1071 ], "on_conflict": [ - 1089 + 1076 ], "__typename": [ 78 @@ -16195,13 +16318,13 @@ export default { }, "e_team_roles_on_conflict": { "constraint": [ - 1081 + 1068 ], "update_columns": [ - 1096 + 1083 ], "where": [ - 1080 + 1067 ], "__typename": [ 78 @@ -16209,16 +16332,16 @@ export default { }, "e_team_roles_order_by": { "description": [ - 2781 + 2529 ], "team_rosters_aggregate": [ - 4046 + 3794 ], "tournament_team_rosters_aggregate": [ - 4551 + 4392 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -16246,7 +16369,7 @@ export default { }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 1095 + 1082 ], "ordering": [ 236 @@ -16269,10 +16392,10 @@ export default { "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 1093 + 1080 ], "where": [ - 1080 + 1067 ], "__typename": [ 78 @@ -16291,10 +16414,10 @@ export default { }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 1100 + 1087 ], "nodes": [ - 1098 + 1085 ], "__typename": [ 78 @@ -16305,7 +16428,7 @@ export default { 38, { "columns": [ - 1112, + 1099, "[e_team_roster_statuses_select_column!]" ], "distinct": [ @@ -16314,10 +16437,10 @@ export default { } ], "max": [ - 1106 + 1093 ], "min": [ - 1107 + 1094 ], "__typename": [ 78 @@ -16325,13 +16448,13 @@ export default { }, "e_team_roster_statuses_bool_exp": { "_and": [ - 1101 + 1088 ], "_not": [ - 1101 + 1088 ], "_or": [ - 1101 + 1088 ], "description": [ 80 @@ -16347,19 +16470,19 @@ export default { "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 1103 + 1090 ], "_in": [ - 1103 + 1090 ], "_is_null": [ 3 ], "_neq": [ - 1103 + 1090 ], "_nin": [ - 1103 + 1090 ], "__typename": [ 78 @@ -16403,7 +16526,7 @@ export default { 38 ], "returning": [ - 1098 + 1085 ], "__typename": [ 78 @@ -16411,13 +16534,13 @@ export default { }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 1102 + 1089 ], "update_columns": [ - 1116 + 1103 ], "where": [ - 1101 + 1088 ], "__typename": [ 78 @@ -16425,10 +16548,10 @@ export default { }, "e_team_roster_statuses_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -16456,7 +16579,7 @@ export default { }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 1115 + 1102 ], "ordering": [ 236 @@ -16479,10 +16602,10 @@ export default { "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 1113 + 1100 ], "where": [ - 1101 + 1088 ], "__typename": [ 78 @@ -16501,10 +16624,10 @@ export default { }, "e_timeout_settings_aggregate": { "aggregate": [ - 1120 + 1107 ], "nodes": [ - 1118 + 1105 ], "__typename": [ 78 @@ -16515,7 +16638,7 @@ export default { 38, { "columns": [ - 1132, + 1119, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -16524,10 +16647,10 @@ export default { } ], "max": [ - 1126 + 1113 ], "min": [ - 1127 + 1114 ], "__typename": [ 78 @@ -16535,13 +16658,13 @@ export default { }, "e_timeout_settings_bool_exp": { "_and": [ - 1121 + 1108 ], "_not": [ - 1121 + 1108 ], "_or": [ - 1121 + 1108 ], "description": [ 80 @@ -16557,19 +16680,19 @@ export default { "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 1123 + 1110 ], "_in": [ - 1123 + 1110 ], "_is_null": [ 3 ], "_neq": [ - 1123 + 1110 ], "_nin": [ - 1123 + 1110 ], "__typename": [ 78 @@ -16613,7 +16736,7 @@ export default { 38 ], "returning": [ - 1118 + 1105 ], "__typename": [ 78 @@ -16621,13 +16744,13 @@ export default { }, "e_timeout_settings_on_conflict": { "constraint": [ - 1122 + 1109 ], "update_columns": [ - 1136 + 1123 ], "where": [ - 1121 + 1108 ], "__typename": [ 78 @@ -16635,10 +16758,10 @@ export default { }, "e_timeout_settings_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -16666,7 +16789,7 @@ export default { }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 1135 + 1122 ], "ordering": [ 236 @@ -16689,10 +16812,287 @@ export default { "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ + 1120 + ], + "where": [ + 1108 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories": { + "description": [ + 78 + ], + "tournament_categories": [ + 4124, + { + "distinct_on": [ + 4142, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4140, + "[tournament_categories_order_by!]" + ], + "where": [ + 4131 + ] + } + ], + "tournament_categories_aggregate": [ + 4125, + { + "distinct_on": [ + 4142, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4140, + "[tournament_categories_order_by!]" + ], + "where": [ + 4131 + ] + } + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_aggregate": { + "aggregate": [ + 1127 + ], + "nodes": [ + 1125 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_aggregate_fields": { + "count": [ + 38, + { + "columns": [ + 1140, + "[e_tournament_categories_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ 1133 ], + "min": [ + 1134 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_bool_exp": { + "_and": [ + 1128 + ], + "_not": [ + 1128 + ], + "_or": [ + 1128 + ], + "description": [ + 80 + ], + "tournament_categories": [ + 4131 + ], + "tournament_categories_aggregate": [ + 4126 + ], + "value": [ + 80 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_constraint": {}, + "e_tournament_categories_enum": {}, + "e_tournament_categories_enum_comparison_exp": { + "_eq": [ + 1130 + ], + "_in": [ + 1130 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 1130 + ], + "_nin": [ + 1130 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_insert_input": { + "description": [ + 78 + ], + "tournament_categories": [ + 4130 + ], + "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": [ + 1125 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_obj_rel_insert_input": { + "data": [ + 1132 + ], + "on_conflict": [ + 1137 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_on_conflict": { + "constraint": [ + 1129 + ], + "update_columns": [ + 1144 + ], + "where": [ + 1128 + ], + "__typename": [ + 78 + ] + }, + "e_tournament_categories_order_by": { + "description": [ + 2529 + ], + "tournament_categories_aggregate": [ + 4129 + ], + "value": [ + 2529 + ], + "__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": [ + 1143 + ], + "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": [ + 1141 + ], "where": [ - 1121 + 1128 ], "__typename": [ 78 @@ -16703,10 +17103,10 @@ export default { 78 ], "tournament_stages": [ - 4454, + 4295, { "distinct_on": [ - 4483, + 4324, "[tournament_stages_select_column!]" ], "limit": [ @@ -16716,19 +17116,19 @@ export default { 38 ], "order_by": [ - 4480, + 4321, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4307 ] } ], "tournament_stages_aggregate": [ - 4455, + 4296, { "distinct_on": [ - 4483, + 4324, "[tournament_stages_select_column!]" ], "limit": [ @@ -16738,11 +17138,11 @@ export default { 38 ], "order_by": [ - 4480, + 4321, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4307 ] } ], @@ -16755,10 +17155,10 @@ export default { }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 1140 + 1148 ], "nodes": [ - 1138 + 1146 ], "__typename": [ 78 @@ -16769,7 +17169,7 @@ export default { 38, { "columns": [ - 1153, + 1161, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -16778,10 +17178,10 @@ export default { } ], "max": [ - 1146 + 1154 ], "min": [ - 1147 + 1155 ], "__typename": [ 78 @@ -16789,22 +17189,22 @@ export default { }, "e_tournament_stage_types_bool_exp": { "_and": [ - 1141 + 1149 ], "_not": [ - 1141 + 1149 ], "_or": [ - 1141 + 1149 ], "description": [ 80 ], "tournament_stages": [ - 4466 + 4307 ], "tournament_stages_aggregate": [ - 4456 + 4297 ], "value": [ 80 @@ -16817,19 +17217,19 @@ export default { "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 1143 + 1151 ], "_in": [ - 1143 + 1151 ], "_is_null": [ 3 ], "_neq": [ - 1143 + 1151 ], "_nin": [ - 1143 + 1151 ], "__typename": [ 78 @@ -16840,7 +17240,7 @@ export default { 78 ], "tournament_stages": [ - 4463 + 4304 ], "value": [ 78 @@ -16876,7 +17276,7 @@ export default { 38 ], "returning": [ - 1138 + 1146 ], "__typename": [ 78 @@ -16884,10 +17284,10 @@ export default { }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 1145 + 1153 ], "on_conflict": [ - 1150 + 1158 ], "__typename": [ 78 @@ -16895,13 +17295,13 @@ export default { }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 1142 + 1150 ], "update_columns": [ - 1157 + 1165 ], "where": [ - 1141 + 1149 ], "__typename": [ 78 @@ -16909,13 +17309,13 @@ export default { }, "e_tournament_stage_types_order_by": { "description": [ - 2781 + 2529 ], "tournament_stages_aggregate": [ - 4461 + 4302 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -16943,7 +17343,7 @@ export default { }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1156 + 1164 ], "ordering": [ 236 @@ -16966,10 +17366,10 @@ export default { "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 1154 + 1162 ], "where": [ - 1141 + 1149 ], "__typename": [ 78 @@ -16980,10 +17380,10 @@ export default { 78 ], "tournaments": [ - 4716, + 4557, { "distinct_on": [ - 4740, + 4591, "[tournaments_select_column!]" ], "limit": [ @@ -16993,19 +17393,19 @@ export default { 38 ], "order_by": [ - 4738, + 4589, "[tournaments_order_by!]" ], "where": [ - 4727 + 4578 ] } ], "tournaments_aggregate": [ - 4717, + 4558, { "distinct_on": [ - 4740, + 4591, "[tournaments_select_column!]" ], "limit": [ @@ -17015,11 +17415,11 @@ export default { 38 ], "order_by": [ - 4738, + 4589, "[tournaments_order_by!]" ], "where": [ - 4727 + 4578 ] } ], @@ -17032,10 +17432,10 @@ export default { }, "e_tournament_status_aggregate": { "aggregate": [ - 1161 + 1169 ], "nodes": [ - 1159 + 1167 ], "__typename": [ 78 @@ -17046,7 +17446,7 @@ export default { 38, { "columns": [ - 1174, + 1182, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -17055,10 +17455,10 @@ export default { } ], "max": [ - 1167 + 1175 ], "min": [ - 1168 + 1176 ], "__typename": [ 78 @@ -17066,22 +17466,22 @@ export default { }, "e_tournament_status_bool_exp": { "_and": [ - 1162 + 1170 ], "_not": [ - 1162 + 1170 ], "_or": [ - 1162 + 1170 ], "description": [ 80 ], "tournaments": [ - 4727 + 4578 ], "tournaments_aggregate": [ - 4718 + 4559 ], "value": [ 80 @@ -17094,19 +17494,19 @@ export default { "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1164 + 1172 ], "_in": [ - 1164 + 1172 ], "_is_null": [ 3 ], "_neq": [ - 1164 + 1172 ], "_nin": [ - 1164 + 1172 ], "__typename": [ 78 @@ -17117,7 +17517,7 @@ export default { 78 ], "tournaments": [ - 4724 + 4575 ], "value": [ 78 @@ -17153,7 +17553,7 @@ export default { 38 ], "returning": [ - 1159 + 1167 ], "__typename": [ 78 @@ -17161,10 +17561,10 @@ export default { }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1166 + 1174 ], "on_conflict": [ - 1171 + 1179 ], "__typename": [ 78 @@ -17172,13 +17572,13 @@ export default { }, "e_tournament_status_on_conflict": { "constraint": [ - 1163 + 1171 ], "update_columns": [ - 1178 + 1186 ], "where": [ - 1162 + 1170 ], "__typename": [ 78 @@ -17186,13 +17586,13 @@ export default { }, "e_tournament_status_order_by": { "description": [ - 2781 + 2529 ], "tournaments_aggregate": [ - 4723 + 4574 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -17220,7 +17620,7 @@ export default { }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1177 + 1185 ], "ordering": [ 236 @@ -17243,10 +17643,10 @@ export default { "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1175 + 1183 ], "where": [ - 1162 + 1170 ], "__typename": [ 78 @@ -17257,10 +17657,10 @@ export default { 78 ], "player_utilities": [ - 3665, + 3413, { "distinct_on": [ - 3686, + 3434, "[player_utility_select_column!]" ], "limit": [ @@ -17270,19 +17670,19 @@ export default { 38 ], "order_by": [ - 3684, + 3432, "[player_utility_order_by!]" ], "where": [ - 3674 + 3422 ] } ], "player_utilities_aggregate": [ - 3666, + 3414, { "distinct_on": [ - 3686, + 3434, "[player_utility_select_column!]" ], "limit": [ @@ -17292,11 +17692,11 @@ export default { 38 ], "order_by": [ - 3684, + 3432, "[player_utility_order_by!]" ], "where": [ - 3674 + 3422 ] } ], @@ -17309,10 +17709,10 @@ export default { }, "e_utility_types_aggregate": { "aggregate": [ - 1182 + 1190 ], "nodes": [ - 1180 + 1188 ], "__typename": [ 78 @@ -17323,7 +17723,7 @@ export default { 38, { "columns": [ - 1194, + 1202, "[e_utility_types_select_column!]" ], "distinct": [ @@ -17332,10 +17732,10 @@ export default { } ], "max": [ - 1188 + 1196 ], "min": [ - 1189 + 1197 ], "__typename": [ 78 @@ -17343,22 +17743,22 @@ export default { }, "e_utility_types_bool_exp": { "_and": [ - 1183 + 1191 ], "_not": [ - 1183 + 1191 ], "_or": [ - 1183 + 1191 ], "description": [ 80 ], "player_utilities": [ - 3674 + 3422 ], "player_utilities_aggregate": [ - 3667 + 3415 ], "value": [ 80 @@ -17371,19 +17771,19 @@ export default { "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1185 + 1193 ], "_in": [ - 1185 + 1193 ], "_is_null": [ 3 ], "_neq": [ - 1185 + 1193 ], "_nin": [ - 1185 + 1193 ], "__typename": [ 78 @@ -17394,7 +17794,7 @@ export default { 78 ], "player_utilities": [ - 3671 + 3419 ], "value": [ 78 @@ -17430,7 +17830,7 @@ export default { 38 ], "returning": [ - 1180 + 1188 ], "__typename": [ 78 @@ -17438,13 +17838,13 @@ export default { }, "e_utility_types_on_conflict": { "constraint": [ - 1184 + 1192 ], "update_columns": [ - 1198 + 1206 ], "where": [ - 1183 + 1191 ], "__typename": [ 78 @@ -17452,13 +17852,13 @@ export default { }, "e_utility_types_order_by": { "description": [ - 2781 + 2529 ], "player_utilities_aggregate": [ - 3670 + 3418 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -17486,7 +17886,7 @@ export default { }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1197 + 1205 ], "ordering": [ 236 @@ -17509,10 +17909,10 @@ export default { "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1195 + 1203 ], "where": [ - 1183 + 1191 ], "__typename": [ 78 @@ -17523,10 +17923,10 @@ export default { 78 ], "match_veto_picks": [ - 2410, + 2158, { "distinct_on": [ - 2428, + 2176, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -17536,19 +17936,19 @@ export default { 38 ], "order_by": [ - 2426, + 2174, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2165 ] } ], "match_veto_picks_aggregate": [ - 2411, + 2159, { "distinct_on": [ - 2428, + 2176, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -17558,11 +17958,11 @@ export default { 38 ], "order_by": [ - 2426, + 2174, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2165 ] } ], @@ -17575,10 +17975,10 @@ export default { }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1202 + 1210 ], "nodes": [ - 1200 + 1208 ], "__typename": [ 78 @@ -17589,7 +17989,7 @@ export default { 38, { "columns": [ - 1214, + 1222, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -17598,10 +17998,10 @@ export default { } ], "max": [ - 1208 + 1216 ], "min": [ - 1209 + 1217 ], "__typename": [ 78 @@ -17609,22 +18009,22 @@ export default { }, "e_veto_pick_types_bool_exp": { "_and": [ - 1203 + 1211 ], "_not": [ - 1203 + 1211 ], "_or": [ - 1203 + 1211 ], "description": [ 80 ], "match_veto_picks": [ - 2417 + 2165 ], "match_veto_picks_aggregate": [ - 2412 + 2160 ], "value": [ 80 @@ -17637,19 +18037,19 @@ export default { "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1205 + 1213 ], "_in": [ - 1205 + 1213 ], "_is_null": [ 3 ], "_neq": [ - 1205 + 1213 ], "_nin": [ - 1205 + 1213 ], "__typename": [ 78 @@ -17660,7 +18060,7 @@ export default { 78 ], "match_veto_picks": [ - 2416 + 2164 ], "value": [ 78 @@ -17696,7 +18096,7 @@ export default { 38 ], "returning": [ - 1200 + 1208 ], "__typename": [ 78 @@ -17704,13 +18104,13 @@ export default { }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1204 + 1212 ], "update_columns": [ - 1218 + 1226 ], "where": [ - 1203 + 1211 ], "__typename": [ 78 @@ -17718,13 +18118,13 @@ export default { }, "e_veto_pick_types_order_by": { "description": [ - 2781 + 2529 ], "match_veto_picks_aggregate": [ - 2415 + 2163 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -17752,7 +18152,7 @@ export default { }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1217 + 1225 ], "ordering": [ 236 @@ -17775,10 +18175,10 @@ export default { "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1215 + 1223 ], "where": [ - 1203 + 1211 ], "__typename": [ 78 @@ -17797,10 +18197,10 @@ export default { }, "e_winning_reasons_aggregate": { "aggregate": [ - 1222 + 1230 ], "nodes": [ - 1220 + 1228 ], "__typename": [ 78 @@ -17811,7 +18211,7 @@ export default { 38, { "columns": [ - 1234, + 1242, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -17820,10 +18220,10 @@ export default { } ], "max": [ - 1228 + 1236 ], "min": [ - 1229 + 1237 ], "__typename": [ 78 @@ -17831,13 +18231,13 @@ export default { }, "e_winning_reasons_bool_exp": { "_and": [ - 1223 + 1231 ], "_not": [ - 1223 + 1231 ], "_or": [ - 1223 + 1231 ], "description": [ 80 @@ -17853,19 +18253,19 @@ export default { "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1225 + 1233 ], "_in": [ - 1225 + 1233 ], "_is_null": [ 3 ], "_neq": [ - 1225 + 1233 ], "_nin": [ - 1225 + 1233 ], "__typename": [ 78 @@ -17909,7 +18309,7 @@ export default { 38 ], "returning": [ - 1220 + 1228 ], "__typename": [ 78 @@ -17917,13 +18317,13 @@ export default { }, "e_winning_reasons_on_conflict": { "constraint": [ - 1224 + 1232 ], "update_columns": [ - 1238 + 1246 ], "where": [ - 1223 + 1231 ], "__typename": [ 78 @@ -17931,10 +18331,10 @@ export default { }, "e_winning_reasons_order_by": { "description": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -17962,7 +18362,7 @@ export default { }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1237 + 1245 ], "ordering": [ 236 @@ -17985,53 +18385,86 @@ export default { "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1235 + 1243 ], "where": [ - 1223 + 1231 ], "__typename": [ 78 ] }, - "event_match_links": { - "created_at": [ - 4324 + "float8": {}, + "float8_comparison_exp": { + "_eq": [ + 1248 ], - "event": [ - 1471 + "_gt": [ + 1248 ], - "event_id": [ - 4762 + "_gte": [ + 1248 ], - "match": [ - 2596 + "_in": [ + 1248 ], - "match_id": [ - 4762 + "_is_null": [ + 3 + ], + "_lt": [ + 1248 + ], + "_lte": [ + 1248 + ], + "_neq": [ + 1248 + ], + "_nin": [ + 1248 + ], + "__typename": [ + 78 + ] + }, + "friends": { + "e_status": [ + 552 + ], + "other_player_steam_id": [ + 180 + ], + "player_steam_id": [ + 180 + ], + "status": [ + 557 ], "__typename": [ 78 ] }, - "event_match_links_aggregate": { + "friends_aggregate": { "aggregate": [ - 1242 + 1252 ], "nodes": [ - 1240 + 1250 ], "__typename": [ 78 ] }, - "event_match_links_aggregate_fields": { + "friends_aggregate_fields": { + "avg": [ + 1253 + ], "count": [ 38, { "columns": [ - 1252, - "[event_match_links_select_column!]" + 1264, + "[friends_select_column!]" ], "distinct": [ 3 @@ -18039,167 +18472,228 @@ export default { } ], "max": [ - 1246 + 1258 ], "min": [ - 1247 + 1259 + ], + "stddev": [ + 1266 + ], + "stddev_pop": [ + 1267 + ], + "stddev_samp": [ + 1268 + ], + "sum": [ + 1271 + ], + "var_pop": [ + 1274 + ], + "var_samp": [ + 1275 + ], + "variance": [ + 1276 + ], + "__typename": [ + 78 + ] + }, + "friends_avg_fields": { + "other_player_steam_id": [ + 29 + ], + "player_steam_id": [ + 29 ], "__typename": [ 78 ] }, - "event_match_links_bool_exp": { + "friends_bool_exp": { "_and": [ - 1243 + 1254 ], "_not": [ - 1243 + 1254 ], "_or": [ - 1243 + 1254 ], - "created_at": [ - 4325 - ], - "event": [ - 1475 + "e_status": [ + 555 ], - "event_id": [ - 4764 + "other_player_steam_id": [ + 182 ], - "match": [ - 2605 + "player_steam_id": [ + 182 ], - "match_id": [ - 4764 + "status": [ + 558 ], "__typename": [ 78 ] }, - "event_match_links_constraint": {}, - "event_match_links_insert_input": { - "created_at": [ - 4324 + "friends_constraint": {}, + "friends_inc_input": { + "other_player_steam_id": [ + 180 ], - "event": [ - 1482 + "player_steam_id": [ + 180 ], - "event_id": [ - 4762 + "__typename": [ + 78 + ] + }, + "friends_insert_input": { + "e_status": [ + 563 ], - "match": [ - 2614 + "other_player_steam_id": [ + 180 ], - "match_id": [ - 4762 + "player_steam_id": [ + 180 + ], + "status": [ + 557 ], "__typename": [ 78 ] }, - "event_match_links_max_fields": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 + "friends_max_fields": { + "other_player_steam_id": [ + 180 ], - "match_id": [ - 4762 + "player_steam_id": [ + 180 ], "__typename": [ 78 ] }, - "event_match_links_min_fields": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 + "friends_min_fields": { + "other_player_steam_id": [ + 180 ], - "match_id": [ - 4762 + "player_steam_id": [ + 180 ], "__typename": [ 78 ] }, - "event_match_links_mutation_response": { + "friends_mutation_response": { "affected_rows": [ 38 ], "returning": [ - 1240 + 1250 ], "__typename": [ 78 ] }, - "event_match_links_on_conflict": { + "friends_on_conflict": { "constraint": [ - 1244 + 1255 ], "update_columns": [ - 1256 + 1272 ], "where": [ - 1243 + 1254 ], "__typename": [ 78 ] }, - "event_match_links_order_by": { - "created_at": [ - 2781 + "friends_order_by": { + "e_status": [ + 565 ], - "event": [ - 1484 + "other_player_steam_id": [ + 2529 ], - "event_id": [ - 2781 + "player_steam_id": [ + 2529 ], - "match": [ - 2616 + "status": [ + 2529 ], - "match_id": [ - 2781 + "__typename": [ + 78 + ] + }, + "friends_pk_columns_input": { + "other_player_steam_id": [ + 180 + ], + "player_steam_id": [ + 180 ], "__typename": [ 78 ] }, - "event_match_links_pk_columns_input": { - "event_id": [ - 4762 + "friends_select_column": {}, + "friends_set_input": { + "other_player_steam_id": [ + 180 ], - "match_id": [ - 4762 + "player_steam_id": [ + 180 + ], + "status": [ + 557 ], "__typename": [ 78 ] }, - "event_match_links_select_column": {}, - "event_match_links_set_input": { - "created_at": [ - 4324 + "friends_stddev_fields": { + "other_player_steam_id": [ + 29 ], - "event_id": [ - 4762 + "player_steam_id": [ + 29 ], - "match_id": [ - 4762 + "__typename": [ + 78 + ] + }, + "friends_stddev_pop_fields": { + "other_player_steam_id": [ + 29 + ], + "player_steam_id": [ + 29 ], "__typename": [ 78 ] }, - "event_match_links_stream_cursor_input": { + "friends_stddev_samp_fields": { + "other_player_steam_id": [ + 29 + ], + "player_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "friends_stream_cursor_input": { "initial_value": [ - 1255 + 1270 ], "ordering": [ 236 @@ -18208,60 +18702,224 @@ export default { 78 ] }, - "event_match_links_stream_cursor_value_input": { - "created_at": [ - 4324 + "friends_stream_cursor_value_input": { + "other_player_steam_id": [ + 180 ], - "event_id": [ - 4762 + "player_steam_id": [ + 180 ], - "match_id": [ - 4762 + "status": [ + 557 + ], + "__typename": [ + 78 + ] + }, + "friends_sum_fields": { + "other_player_steam_id": [ + 180 + ], + "player_steam_id": [ + 180 ], "__typename": [ 78 ] }, - "event_match_links_update_column": {}, - "event_match_links_updates": { + "friends_update_column": {}, + "friends_updates": { + "_inc": [ + 1256 + ], "_set": [ - 1253 + 1265 ], "where": [ - 1243 + 1254 ], "__typename": [ 78 ] }, - "event_media": { - "created_at": [ - 4324 + "friends_var_pop_fields": { + "other_player_steam_id": [ + 29 ], - "event": [ - 1471 + "player_steam_id": [ + 29 ], - "event_id": [ - 4762 + "__typename": [ + 78 + ] + }, + "friends_var_samp_fields": { + "other_player_steam_id": [ + 29 ], - "external_url": [ + "player_steam_id": [ + 29 + ], + "__typename": [ 78 + ] + }, + "friends_variance_fields": { + "other_player_steam_id": [ + 29 + ], + "player_steam_id": [ + 29 ], - "filename": [ + "__typename": [ 78 + ] + }, + "game_server_nodes": { + "available_server_count": [ + 38 + ], + "build_id": [ + 38 + ], + "cpu_cores_per_socket": [ + 38 + ], + "cpu_frequency_info": [ + 1400, + { + "path": [ + 78 + ] + } + ], + "cpu_governor_info": [ + 1400, + { + "path": [ + 78 + ] + } + ], + "cpu_sockets": [ + 38 + ], + "cpu_threads_per_core": [ + 38 + ], + "cpu_warnings": [ + 1400, + { + "path": [ + 78 + ] + } + ], + "cs2_launch_options": [ + 1400, + { + "path": [ + 78 + ] + } + ], + "cs2_video_settings": [ + 1400, + { + "path": [ + 78 + ] + } + ], + "csgo_build_id": [ + 38 + ], + "demo_network_limiter": [ + 38 + ], + "disk_available_gb": [ + 38 + ], + "disk_used_percent": [ + 38 + ], + "e_region": [ + 3574 + ], + "e_status": [ + 593 + ], + "enabled": [ + 3 + ], + "enabled_for_match_making": [ + 3 + ], + "end_port_range": [ + 38 + ], + "gpu": [ + 3 + ], + "gpu_demos_enabled": [ + 3 + ], + "gpu_info": [ + 1400, + { + "path": [ + 78 + ] + } + ], + "gpu_rendering_enabled": [ + 3 + ], + "gpu_streaming_enabled": [ + 3 ], "id": [ - 4762 + 78 ], - "mime_type": [ + "label": [ 78 ], - "players": [ - 1280, + "lan_ip": [ + 1396 + ], + "node_ip": [ + 1396 + ], + "offline_at": [ + 4076 + ], + "pin_build_id": [ + 38 + ], + "pin_plugin_runtime": [ + 78 + ], + "pin_plugin_version": [ + 78 + ], + "pinned_version": [ + 1328 + ], + "plugin_supported": [ + 3 + ], + "public_ip": [ + 1396 + ], + "region": [ + 78 + ], + "servers": [ + 3601, { "distinct_on": [ - 1301, - "[event_media_players_select_column!]" + 3625, + "[servers_select_column!]" ], "limit": [ 38 @@ -18270,20 +18928,20 @@ export default { 38 ], "order_by": [ - 1299, - "[event_media_players_order_by!]" + 3623, + "[servers_order_by!]" ], "where": [ - 1289 + 3612 ] } ], - "players_aggregate": [ - 1281, + "servers_aggregate": [ + 3602, { "distinct_on": [ - 1301, - "[event_media_players_select_column!]" + 3625, + "[servers_select_column!]" ], "limit": [ 38 @@ -18292,61 +18950,127 @@ export default { 38 ], "order_by": [ - 1299, - "[event_media_players_order_by!]" + 3623, + "[servers_order_by!]" ], "where": [ - 1289 + 3612 ] } ], - "size": [ - 180 + "shader_bake_progress": [ + 2527 ], - "thumbnail_filename": [ + "shader_bake_progress_stage": [ 78 ], - "title": [ + "shader_bake_status": [ 78 ], - "uploader": [ - 3739 + "shader_bake_status_history": [ + 1400, + { + "path": [ + 78 + ] + } ], - "uploader_steam_id": [ - 180 + "start_port_range": [ + 38 + ], + "status": [ + 598 + ], + "supports_cpu_pinning": [ + 3 + ], + "supports_low_latency": [ + 3 + ], + "token": [ + 78 + ], + "total_server_count": [ + 38 + ], + "update_status": [ + 78 + ], + "version": [ + 1328 ], "__typename": [ 78 ] }, - "event_media_aggregate": { + "game_server_nodes_aggregate": { "aggregate": [ - 1262 + 1283 ], "nodes": [ - 1258 + 1277 ], "__typename": [ 78 ] }, - "event_media_aggregate_bool_exp": { + "game_server_nodes_aggregate_bool_exp": { + "bool_and": [ + 1280 + ], + "bool_or": [ + 1281 + ], "count": [ - 1261 + 1282 ], "__typename": [ 78 ] }, - "event_media_aggregate_bool_exp_count": { + "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 1321 + 1307 ], "distinct": [ 3 ], "filter": [ - 1267 + 1289 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "game_server_nodes_aggregate_bool_exp_bool_or": { + "arguments": [ + 1308 + ], + "distinct": [ + 3 + ], + "filter": [ + 1289 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "game_server_nodes_aggregate_bool_exp_count": { + "arguments": [ + 1306 + ], + "distinct": [ + 3 + ], + "filter": [ + 1289 ], "predicate": [ 39 @@ -18355,16 +19079,16 @@ export default { 78 ] }, - "event_media_aggregate_fields": { + "game_server_nodes_aggregate_fields": { "avg": [ - 1265 + 1287 ], "count": [ 38, { "columns": [ - 1321, - "[event_media_select_column!]" + 1306, + "[game_server_nodes_select_column!]" ], "distinct": [ 3 @@ -18372,4837 +19096,408 @@ export default { } ], "max": [ - 1271 + 1296 ], "min": [ - 1273 + 1298 ], "stddev": [ - 1323 + 1310 ], "stddev_pop": [ - 1325 + 1312 ], "stddev_samp": [ - 1327 + 1314 ], "sum": [ - 1331 + 1318 ], "var_pop": [ - 1335 + 1322 ], "var_samp": [ - 1337 + 1324 ], "variance": [ - 1339 + 1326 ], "__typename": [ 78 ] }, - "event_media_aggregate_order_by": { + "game_server_nodes_aggregate_order_by": { "avg": [ - 1266 + 1288 ], "count": [ - 2781 + 2529 ], "max": [ - 1272 + 1297 ], "min": [ - 1274 + 1299 ], "stddev": [ - 1324 + 1311 ], "stddev_pop": [ - 1326 + 1313 ], "stddev_samp": [ - 1328 + 1315 ], "sum": [ - 1332 + 1319 ], "var_pop": [ - 1336 + 1323 ], "var_samp": [ - 1338 + 1325 ], "variance": [ - 1340 + 1327 ], "__typename": [ 78 ] }, - "event_media_arr_rel_insert_input": { - "data": [ - 1270 + "game_server_nodes_append_input": { + "cpu_frequency_info": [ + 1400 ], - "on_conflict": [ - 1277 + "cpu_governor_info": [ + 1400 ], - "__typename": [ - 78 - ] - }, - "event_media_avg_fields": { - "size": [ - 29 + "cpu_warnings": [ + 1400 ], - "uploader_steam_id": [ - 29 + "cs2_launch_options": [ + 1400 + ], + "cs2_video_settings": [ + 1400 + ], + "gpu_info": [ + 1400 + ], + "shader_bake_status_history": [ + 1400 ], "__typename": [ 78 ] }, - "event_media_avg_order_by": { - "size": [ - 2781 + "game_server_nodes_arr_rel_insert_input": { + "data": [ + 1295 ], - "uploader_steam_id": [ - 2781 + "on_conflict": [ + 1302 ], "__typename": [ 78 ] }, - "event_media_bool_exp": { - "_and": [ - 1267 - ], - "_not": [ - 1267 - ], - "_or": [ - 1267 - ], - "created_at": [ - 4325 + "game_server_nodes_avg_fields": { + "available_server_count": [ + 38 ], - "event": [ - 1475 + "build_id": [ + 29 ], - "event_id": [ - 4764 + "cpu_cores_per_socket": [ + 29 ], - "external_url": [ - 80 + "cpu_sockets": [ + 29 ], - "filename": [ - 80 + "cpu_threads_per_core": [ + 29 ], - "id": [ - 4764 + "csgo_build_id": [ + 29 ], - "mime_type": [ - 80 + "demo_network_limiter": [ + 29 ], - "players": [ - 1289 + "disk_available_gb": [ + 29 ], - "players_aggregate": [ - 1282 + "disk_used_percent": [ + 29 ], - "size": [ - 182 + "end_port_range": [ + 29 ], - "thumbnail_filename": [ - 80 + "pin_build_id": [ + 29 ], - "title": [ - 80 + "shader_bake_progress": [ + 29 ], - "uploader": [ - 3743 + "start_port_range": [ + 29 ], - "uploader_steam_id": [ - 182 + "total_server_count": [ + 38 ], "__typename": [ 78 ] }, - "event_media_constraint": {}, - "event_media_inc_input": { - "size": [ - 180 + "game_server_nodes_avg_order_by": { + "build_id": [ + 2529 ], - "uploader_steam_id": [ - 180 + "cpu_cores_per_socket": [ + 2529 + ], + "cpu_sockets": [ + 2529 + ], + "cpu_threads_per_core": [ + 2529 + ], + "csgo_build_id": [ + 2529 + ], + "demo_network_limiter": [ + 2529 + ], + "disk_available_gb": [ + 2529 + ], + "disk_used_percent": [ + 2529 + ], + "end_port_range": [ + 2529 + ], + "pin_build_id": [ + 2529 + ], + "shader_bake_progress": [ + 2529 + ], + "start_port_range": [ + 2529 ], "__typename": [ 78 ] }, - "event_media_insert_input": { - "created_at": [ - 4324 + "game_server_nodes_bool_exp": { + "_and": [ + 1289 ], - "event": [ - 1482 + "_not": [ + 1289 ], - "event_id": [ - 4762 + "_or": [ + 1289 ], - "external_url": [ - 78 + "available_server_count": [ + 39 ], - "filename": [ - 78 + "build_id": [ + 39 ], - "id": [ - 4762 + "cpu_cores_per_socket": [ + 39 ], - "mime_type": [ - 78 + "cpu_frequency_info": [ + 1402 ], - "players": [ - 1286 + "cpu_governor_info": [ + 1402 ], - "size": [ - 180 + "cpu_sockets": [ + 39 ], - "thumbnail_filename": [ - 78 + "cpu_threads_per_core": [ + 39 ], - "title": [ - 78 + "cpu_warnings": [ + 1402 ], - "uploader": [ - 3750 + "cs2_launch_options": [ + 1402 ], - "uploader_steam_id": [ - 180 + "cs2_video_settings": [ + 1402 ], - "__typename": [ - 78 - ] - }, - "event_media_max_fields": { - "created_at": [ - 4324 + "csgo_build_id": [ + 39 ], - "event_id": [ - 4762 + "demo_network_limiter": [ + 39 ], - "external_url": [ - 78 + "disk_available_gb": [ + 39 ], - "filename": [ - 78 + "disk_used_percent": [ + 39 ], - "id": [ - 4762 + "e_region": [ + 3578 ], - "mime_type": [ - 78 + "e_status": [ + 596 ], - "size": [ - 180 + "enabled": [ + 4 ], - "thumbnail_filename": [ - 78 + "enabled_for_match_making": [ + 4 ], - "title": [ - 78 + "end_port_range": [ + 39 ], - "uploader_steam_id": [ - 180 + "gpu": [ + 4 ], - "__typename": [ - 78 - ] - }, - "event_media_max_order_by": { - "created_at": [ - 2781 + "gpu_demos_enabled": [ + 4 ], - "event_id": [ - 2781 + "gpu_info": [ + 1402 ], - "external_url": [ - 2781 + "gpu_rendering_enabled": [ + 4 ], - "filename": [ - 2781 + "gpu_streaming_enabled": [ + 4 ], "id": [ - 2781 + 80 ], - "mime_type": [ - 2781 + "label": [ + 80 ], - "size": [ - 2781 + "lan_ip": [ + 1397 ], - "thumbnail_filename": [ - 2781 + "node_ip": [ + 1397 ], - "title": [ - 2781 + "offline_at": [ + 4077 ], - "uploader_steam_id": [ - 2781 + "pin_build_id": [ + 39 ], - "__typename": [ - 78 - ] - }, - "event_media_min_fields": { - "created_at": [ - 4324 + "pin_plugin_runtime": [ + 80 ], - "event_id": [ - 4762 + "pin_plugin_version": [ + 80 ], - "external_url": [ - 78 + "pinned_version": [ + 1333 ], - "filename": [ - 78 + "plugin_supported": [ + 4 ], - "id": [ - 4762 + "public_ip": [ + 1397 ], - "mime_type": [ - 78 + "region": [ + 80 ], - "size": [ - 180 + "servers": [ + 3612 ], - "thumbnail_filename": [ - 78 + "servers_aggregate": [ + 3603 ], - "title": [ - 78 + "shader_bake_progress": [ + 2528 ], - "uploader_steam_id": [ - 180 + "shader_bake_progress_stage": [ + 80 ], - "__typename": [ - 78 - ] - }, - "event_media_min_order_by": { - "created_at": [ - 2781 + "shader_bake_status": [ + 80 ], - "event_id": [ - 2781 + "shader_bake_status_history": [ + 1402 ], - "external_url": [ - 2781 + "start_port_range": [ + 39 ], - "filename": [ - 2781 + "status": [ + 599 ], - "id": [ - 2781 + "supports_cpu_pinning": [ + 4 ], - "mime_type": [ - 2781 + "supports_low_latency": [ + 4 ], - "size": [ - 2781 + "token": [ + 80 ], - "thumbnail_filename": [ - 2781 + "total_server_count": [ + 39 ], - "title": [ - 2781 + "update_status": [ + 80 ], - "uploader_steam_id": [ - 2781 + "version": [ + 1333 ], "__typename": [ 78 ] }, - "event_media_mutation_response": { - "affected_rows": [ - 38 + "game_server_nodes_constraint": {}, + "game_server_nodes_delete_at_path_input": { + "cpu_frequency_info": [ + 78 ], - "returning": [ - 1258 + "cpu_governor_info": [ + 78 ], - "__typename": [ + "cpu_warnings": [ 78 - ] - }, - "event_media_obj_rel_insert_input": { - "data": [ - 1270 ], - "on_conflict": [ - 1277 + "cs2_launch_options": [ + 78 ], - "__typename": [ + "cs2_video_settings": [ 78 - ] - }, - "event_media_on_conflict": { - "constraint": [ - 1268 ], - "update_columns": [ - 1333 + "gpu_info": [ + 78 ], - "where": [ - 1267 + "shader_bake_status_history": [ + 78 ], "__typename": [ 78 ] }, - "event_media_order_by": { - "created_at": [ - 2781 + "game_server_nodes_delete_elem_input": { + "cpu_frequency_info": [ + 38 ], - "event": [ - 1484 + "cpu_governor_info": [ + 38 ], - "event_id": [ - 2781 + "cpu_warnings": [ + 38 ], - "external_url": [ - 2781 + "cs2_launch_options": [ + 38 ], - "filename": [ - 2781 + "cs2_video_settings": [ + 38 ], - "id": [ - 2781 - ], - "mime_type": [ - 2781 - ], - "players_aggregate": [ - 1285 - ], - "size": [ - 2781 - ], - "thumbnail_filename": [ - 2781 - ], - "title": [ - 2781 - ], - "uploader": [ - 3752 - ], - "uploader_steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_pk_columns_input": { - "id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "event_media_players": { - "created_at": [ - 4324 - ], - "media": [ - 1258 - ], - "media_id": [ - 4762 - ], - "player": [ - 3739 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_aggregate": { - "aggregate": [ - 1284 - ], - "nodes": [ - 1280 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_aggregate_bool_exp": { - "count": [ - 1283 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_aggregate_bool_exp_count": { - "arguments": [ - 1301 - ], - "distinct": [ - 3 - ], - "filter": [ - 1289 - ], - "predicate": [ - 39 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_aggregate_fields": { - "avg": [ - 1287 - ], - "count": [ - 38, - { - "columns": [ - 1301, - "[event_media_players_select_column!]" - ], - "distinct": [ - 3 - ] - } - ], - "max": [ - 1293 - ], - "min": [ - 1295 - ], - "stddev": [ - 1303 - ], - "stddev_pop": [ - 1305 - ], - "stddev_samp": [ - 1307 - ], - "sum": [ - 1311 - ], - "var_pop": [ - 1315 - ], - "var_samp": [ - 1317 - ], - "variance": [ - 1319 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_aggregate_order_by": { - "avg": [ - 1288 - ], - "count": [ - 2781 - ], - "max": [ - 1294 - ], - "min": [ - 1296 - ], - "stddev": [ - 1304 - ], - "stddev_pop": [ - 1306 - ], - "stddev_samp": [ - 1308 - ], - "sum": [ - 1312 - ], - "var_pop": [ - 1316 - ], - "var_samp": [ - 1318 - ], - "variance": [ - 1320 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_arr_rel_insert_input": { - "data": [ - 1292 - ], - "on_conflict": [ - 1298 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_avg_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_avg_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_bool_exp": { - "_and": [ - 1289 - ], - "_not": [ - 1289 - ], - "_or": [ - 1289 - ], - "created_at": [ - 4325 - ], - "media": [ - 1267 - ], - "media_id": [ - 4764 - ], - "player": [ - 3743 - ], - "steam_id": [ - 182 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_constraint": {}, - "event_media_players_inc_input": { - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_insert_input": { - "created_at": [ - 4324 - ], - "media": [ - 1276 - ], - "media_id": [ - 4762 - ], - "player": [ - 3750 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_max_fields": { - "created_at": [ - 4324 - ], - "media_id": [ - 4762 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_max_order_by": { - "created_at": [ - 2781 - ], - "media_id": [ - 2781 - ], - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_min_fields": { - "created_at": [ - 4324 - ], - "media_id": [ - 4762 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_min_order_by": { - "created_at": [ - 2781 - ], - "media_id": [ - 2781 - ], - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_mutation_response": { - "affected_rows": [ - 38 - ], - "returning": [ - 1280 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_on_conflict": { - "constraint": [ - 1290 - ], - "update_columns": [ - 1313 - ], - "where": [ - 1289 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_order_by": { - "created_at": [ - 2781 - ], - "media": [ - 1278 - ], - "media_id": [ - 2781 - ], - "player": [ - 3752 - ], - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_pk_columns_input": { - "media_id": [ - 4762 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_select_column": {}, - "event_media_players_set_input": { - "created_at": [ - 4324 - ], - "media_id": [ - 4762 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_stddev_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_stddev_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_stddev_pop_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_stddev_pop_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_stddev_samp_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_stddev_samp_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_stream_cursor_input": { - "initial_value": [ - 1310 - ], - "ordering": [ - 236 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_stream_cursor_value_input": { - "created_at": [ - 4324 - ], - "media_id": [ - 4762 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_sum_fields": { - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_sum_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_update_column": {}, - "event_media_players_updates": { - "_inc": [ - 1291 - ], - "_set": [ - 1302 - ], - "where": [ - 1289 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_var_pop_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_var_pop_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_var_samp_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_var_samp_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_variance_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_media_players_variance_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_select_column": {}, - "event_media_set_input": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "external_url": [ - 78 - ], - "filename": [ - 78 - ], - "id": [ - 4762 - ], - "mime_type": [ - 78 - ], - "size": [ - 180 - ], - "thumbnail_filename": [ - 78 - ], - "title": [ - 78 - ], - "uploader_steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_media_stddev_fields": { - "size": [ - 29 - ], - "uploader_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_media_stddev_order_by": { - "size": [ - 2781 - ], - "uploader_steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_stddev_pop_fields": { - "size": [ - 29 - ], - "uploader_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_media_stddev_pop_order_by": { - "size": [ - 2781 - ], - "uploader_steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_stddev_samp_fields": { - "size": [ - 29 - ], - "uploader_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_media_stddev_samp_order_by": { - "size": [ - 2781 - ], - "uploader_steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_stream_cursor_input": { - "initial_value": [ - 1330 - ], - "ordering": [ - 236 - ], - "__typename": [ - 78 - ] - }, - "event_media_stream_cursor_value_input": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "external_url": [ - 78 - ], - "filename": [ - 78 - ], - "id": [ - 4762 - ], - "mime_type": [ - 78 - ], - "size": [ - 180 - ], - "thumbnail_filename": [ - 78 - ], - "title": [ - 78 - ], - "uploader_steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_media_sum_fields": { - "size": [ - 180 - ], - "uploader_steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_media_sum_order_by": { - "size": [ - 2781 - ], - "uploader_steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_update_column": {}, - "event_media_updates": { - "_inc": [ - 1269 - ], - "_set": [ - 1322 - ], - "where": [ - 1267 - ], - "__typename": [ - 78 - ] - }, - "event_media_var_pop_fields": { - "size": [ - 29 - ], - "uploader_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_media_var_pop_order_by": { - "size": [ - 2781 - ], - "uploader_steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_var_samp_fields": { - "size": [ - 29 - ], - "uploader_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_media_var_samp_order_by": { - "size": [ - 2781 - ], - "uploader_steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_media_variance_fields": { - "size": [ - 29 - ], - "uploader_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_media_variance_order_by": { - "size": [ - 2781 - ], - "uploader_steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_organizers": { - "created_at": [ - 4324 - ], - "event": [ - 1471 - ], - "event_id": [ - 4762 - ], - "organizer": [ - 3739 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_aggregate": { - "aggregate": [ - 1345 - ], - "nodes": [ - 1341 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_aggregate_bool_exp": { - "count": [ - 1344 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_aggregate_bool_exp_count": { - "arguments": [ - 1362 - ], - "distinct": [ - 3 - ], - "filter": [ - 1350 - ], - "predicate": [ - 39 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_aggregate_fields": { - "avg": [ - 1348 - ], - "count": [ - 38, - { - "columns": [ - 1362, - "[event_organizers_select_column!]" - ], - "distinct": [ - 3 - ] - } - ], - "max": [ - 1354 - ], - "min": [ - 1356 - ], - "stddev": [ - 1364 - ], - "stddev_pop": [ - 1366 - ], - "stddev_samp": [ - 1368 - ], - "sum": [ - 1372 - ], - "var_pop": [ - 1376 - ], - "var_samp": [ - 1378 - ], - "variance": [ - 1380 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_aggregate_order_by": { - "avg": [ - 1349 - ], - "count": [ - 2781 - ], - "max": [ - 1355 - ], - "min": [ - 1357 - ], - "stddev": [ - 1365 - ], - "stddev_pop": [ - 1367 - ], - "stddev_samp": [ - 1369 - ], - "sum": [ - 1373 - ], - "var_pop": [ - 1377 - ], - "var_samp": [ - 1379 - ], - "variance": [ - 1381 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_arr_rel_insert_input": { - "data": [ - 1353 - ], - "on_conflict": [ - 1359 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_avg_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_avg_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_bool_exp": { - "_and": [ - 1350 - ], - "_not": [ - 1350 - ], - "_or": [ - 1350 - ], - "created_at": [ - 4325 - ], - "event": [ - 1475 - ], - "event_id": [ - 4764 - ], - "organizer": [ - 3743 - ], - "steam_id": [ - 182 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_constraint": {}, - "event_organizers_inc_input": { - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_insert_input": { - "created_at": [ - 4324 - ], - "event": [ - 1482 - ], - "event_id": [ - 4762 - ], - "organizer": [ - 3750 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_max_fields": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_max_order_by": { - "created_at": [ - 2781 - ], - "event_id": [ - 2781 - ], - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_min_fields": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_min_order_by": { - "created_at": [ - 2781 - ], - "event_id": [ - 2781 - ], - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_mutation_response": { - "affected_rows": [ - 38 - ], - "returning": [ - 1341 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_on_conflict": { - "constraint": [ - 1351 - ], - "update_columns": [ - 1374 - ], - "where": [ - 1350 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_order_by": { - "created_at": [ - 2781 - ], - "event": [ - 1484 - ], - "event_id": [ - 2781 - ], - "organizer": [ - 3752 - ], - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_pk_columns_input": { - "event_id": [ - 4762 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_select_column": {}, - "event_organizers_set_input": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_stddev_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_stddev_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_stddev_pop_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_stddev_pop_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_stddev_samp_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_stddev_samp_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_stream_cursor_input": { - "initial_value": [ - 1371 - ], - "ordering": [ - 236 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_stream_cursor_value_input": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_sum_fields": { - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_sum_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_update_column": {}, - "event_organizers_updates": { - "_inc": [ - 1352 - ], - "_set": [ - 1363 - ], - "where": [ - 1350 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_var_pop_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_var_pop_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_var_samp_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_var_samp_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_variance_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_organizers_variance_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_players": { - "created_at": [ - 4324 - ], - "event": [ - 1471 - ], - "event_id": [ - 4762 - ], - "player": [ - 3739 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_players_aggregate": { - "aggregate": [ - 1386 - ], - "nodes": [ - 1382 - ], - "__typename": [ - 78 - ] - }, - "event_players_aggregate_bool_exp": { - "count": [ - 1385 - ], - "__typename": [ - 78 - ] - }, - "event_players_aggregate_bool_exp_count": { - "arguments": [ - 1403 - ], - "distinct": [ - 3 - ], - "filter": [ - 1391 - ], - "predicate": [ - 39 - ], - "__typename": [ - 78 - ] - }, - "event_players_aggregate_fields": { - "avg": [ - 1389 - ], - "count": [ - 38, - { - "columns": [ - 1403, - "[event_players_select_column!]" - ], - "distinct": [ - 3 - ] - } - ], - "max": [ - 1395 - ], - "min": [ - 1397 - ], - "stddev": [ - 1405 - ], - "stddev_pop": [ - 1407 - ], - "stddev_samp": [ - 1409 - ], - "sum": [ - 1413 - ], - "var_pop": [ - 1417 - ], - "var_samp": [ - 1419 - ], - "variance": [ - 1421 - ], - "__typename": [ - 78 - ] - }, - "event_players_aggregate_order_by": { - "avg": [ - 1390 - ], - "count": [ - 2781 - ], - "max": [ - 1396 - ], - "min": [ - 1398 - ], - "stddev": [ - 1406 - ], - "stddev_pop": [ - 1408 - ], - "stddev_samp": [ - 1410 - ], - "sum": [ - 1414 - ], - "var_pop": [ - 1418 - ], - "var_samp": [ - 1420 - ], - "variance": [ - 1422 - ], - "__typename": [ - 78 - ] - }, - "event_players_arr_rel_insert_input": { - "data": [ - 1394 - ], - "on_conflict": [ - 1400 - ], - "__typename": [ - 78 - ] - }, - "event_players_avg_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_players_avg_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_players_bool_exp": { - "_and": [ - 1391 - ], - "_not": [ - 1391 - ], - "_or": [ - 1391 - ], - "created_at": [ - 4325 - ], - "event": [ - 1475 - ], - "event_id": [ - 4764 - ], - "player": [ - 3743 - ], - "steam_id": [ - 182 - ], - "__typename": [ - 78 - ] - }, - "event_players_constraint": {}, - "event_players_inc_input": { - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_players_insert_input": { - "created_at": [ - 4324 - ], - "event": [ - 1482 - ], - "event_id": [ - 4762 - ], - "player": [ - 3750 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_players_max_fields": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_players_max_order_by": { - "created_at": [ - 2781 - ], - "event_id": [ - 2781 - ], - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_players_min_fields": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_players_min_order_by": { - "created_at": [ - 2781 - ], - "event_id": [ - 2781 - ], - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_players_mutation_response": { - "affected_rows": [ - 38 - ], - "returning": [ - 1382 - ], - "__typename": [ - 78 - ] - }, - "event_players_on_conflict": { - "constraint": [ - 1392 - ], - "update_columns": [ - 1415 - ], - "where": [ - 1391 - ], - "__typename": [ - 78 - ] - }, - "event_players_order_by": { - "created_at": [ - 2781 - ], - "event": [ - 1484 - ], - "event_id": [ - 2781 - ], - "player": [ - 3752 - ], - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_players_pk_columns_input": { - "event_id": [ - 4762 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_players_select_column": {}, - "event_players_set_input": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_players_stddev_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_players_stddev_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_players_stddev_pop_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_players_stddev_pop_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_players_stddev_samp_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_players_stddev_samp_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_players_stream_cursor_input": { - "initial_value": [ - 1412 - ], - "ordering": [ - 236 - ], - "__typename": [ - 78 - ] - }, - "event_players_stream_cursor_value_input": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_players_sum_fields": { - "steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "event_players_sum_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_players_update_column": {}, - "event_players_updates": { - "_inc": [ - 1393 - ], - "_set": [ - 1404 - ], - "where": [ - 1391 - ], - "__typename": [ - 78 - ] - }, - "event_players_var_pop_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_players_var_pop_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_players_var_samp_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_players_var_samp_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_players_variance_fields": { - "steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "event_players_variance_order_by": { - "steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_teams": { - "created_at": [ - 4324 - ], - "event": [ - 1471 - ], - "event_id": [ - 4762 - ], - "team": [ - 4281 - ], - "team_id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "event_teams_aggregate": { - "aggregate": [ - 1427 - ], - "nodes": [ - 1423 - ], - "__typename": [ - 78 - ] - }, - "event_teams_aggregate_bool_exp": { - "count": [ - 1426 - ], - "__typename": [ - 78 - ] - }, - "event_teams_aggregate_bool_exp_count": { - "arguments": [ - 1441 - ], - "distinct": [ - 3 - ], - "filter": [ - 1430 - ], - "predicate": [ - 39 - ], - "__typename": [ - 78 - ] - }, - "event_teams_aggregate_fields": { - "count": [ - 38, - { - "columns": [ - 1441, - "[event_teams_select_column!]" - ], - "distinct": [ - 3 - ] - } - ], - "max": [ - 1433 - ], - "min": [ - 1435 - ], - "__typename": [ - 78 - ] - }, - "event_teams_aggregate_order_by": { - "count": [ - 2781 - ], - "max": [ - 1434 - ], - "min": [ - 1436 - ], - "__typename": [ - 78 - ] - }, - "event_teams_arr_rel_insert_input": { - "data": [ - 1432 - ], - "on_conflict": [ - 1438 - ], - "__typename": [ - 78 - ] - }, - "event_teams_bool_exp": { - "_and": [ - 1430 - ], - "_not": [ - 1430 - ], - "_or": [ - 1430 - ], - "created_at": [ - 4325 - ], - "event": [ - 1475 - ], - "event_id": [ - 4764 - ], - "team": [ - 4290 - ], - "team_id": [ - 4764 - ], - "__typename": [ - 78 - ] - }, - "event_teams_constraint": {}, - "event_teams_insert_input": { - "created_at": [ - 4324 - ], - "event": [ - 1482 - ], - "event_id": [ - 4762 - ], - "team": [ - 4299 - ], - "team_id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "event_teams_max_fields": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "team_id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "event_teams_max_order_by": { - "created_at": [ - 2781 - ], - "event_id": [ - 2781 - ], - "team_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_teams_min_fields": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "team_id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "event_teams_min_order_by": { - "created_at": [ - 2781 - ], - "event_id": [ - 2781 - ], - "team_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_teams_mutation_response": { - "affected_rows": [ - 38 - ], - "returning": [ - 1423 - ], - "__typename": [ - 78 - ] - }, - "event_teams_on_conflict": { - "constraint": [ - 1431 - ], - "update_columns": [ - 1445 - ], - "where": [ - 1430 - ], - "__typename": [ - 78 - ] - }, - "event_teams_order_by": { - "created_at": [ - 2781 - ], - "event": [ - 1484 - ], - "event_id": [ - 2781 - ], - "team": [ - 4301 - ], - "team_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_teams_pk_columns_input": { - "event_id": [ - 4762 - ], - "team_id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "event_teams_select_column": {}, - "event_teams_set_input": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "team_id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "event_teams_stream_cursor_input": { - "initial_value": [ - 1444 - ], - "ordering": [ - 236 - ], - "__typename": [ - 78 - ] - }, - "event_teams_stream_cursor_value_input": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "team_id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "event_teams_update_column": {}, - "event_teams_updates": { - "_set": [ - 1442 - ], - "where": [ - 1430 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments": { - "created_at": [ - 4324 - ], - "event": [ - 1471 - ], - "event_id": [ - 4762 - ], - "tournament": [ - 4716 - ], - "tournament_id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_aggregate": { - "aggregate": [ - 1451 - ], - "nodes": [ - 1447 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_aggregate_bool_exp": { - "count": [ - 1450 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_aggregate_bool_exp_count": { - "arguments": [ - 1465 - ], - "distinct": [ - 3 - ], - "filter": [ - 1454 - ], - "predicate": [ - 39 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_aggregate_fields": { - "count": [ - 38, - { - "columns": [ - 1465, - "[event_tournaments_select_column!]" - ], - "distinct": [ - 3 - ] - } - ], - "max": [ - 1457 - ], - "min": [ - 1459 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_aggregate_order_by": { - "count": [ - 2781 - ], - "max": [ - 1458 - ], - "min": [ - 1460 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_arr_rel_insert_input": { - "data": [ - 1456 - ], - "on_conflict": [ - 1462 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_bool_exp": { - "_and": [ - 1454 - ], - "_not": [ - 1454 - ], - "_or": [ - 1454 - ], - "created_at": [ - 4325 - ], - "event": [ - 1475 - ], - "event_id": [ - 4764 - ], - "tournament": [ - 4727 - ], - "tournament_id": [ - 4764 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_constraint": {}, - "event_tournaments_insert_input": { - "created_at": [ - 4324 - ], - "event": [ - 1482 - ], - "event_id": [ - 4762 - ], - "tournament": [ - 4736 - ], - "tournament_id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_max_fields": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "tournament_id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_max_order_by": { - "created_at": [ - 2781 - ], - "event_id": [ - 2781 - ], - "tournament_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_min_fields": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "tournament_id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_min_order_by": { - "created_at": [ - 2781 - ], - "event_id": [ - 2781 - ], - "tournament_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_mutation_response": { - "affected_rows": [ - 38 - ], - "returning": [ - 1447 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_on_conflict": { - "constraint": [ - 1455 - ], - "update_columns": [ - 1469 - ], - "where": [ - 1454 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_order_by": { - "created_at": [ - 2781 - ], - "event": [ - 1484 - ], - "event_id": [ - 2781 - ], - "tournament": [ - 4738 - ], - "tournament_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_pk_columns_input": { - "event_id": [ - 4762 - ], - "tournament_id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_select_column": {}, - "event_tournaments_set_input": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "tournament_id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_stream_cursor_input": { - "initial_value": [ - 1468 - ], - "ordering": [ - 236 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_stream_cursor_value_input": { - "created_at": [ - 4324 - ], - "event_id": [ - 4762 - ], - "tournament_id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "event_tournaments_update_column": {}, - "event_tournaments_updates": { - "_set": [ - 1466 - ], - "where": [ - 1454 - ], - "__typename": [ - 78 - ] - }, - "events": { - "banner": [ - 1258 - ], - "banner_media_id": [ - 4762 - ], - "can_upload_media": [ - 3 - ], - "can_view": [ - 3 - ], - "created_at": [ - 4324 - ], - "description": [ - 78 - ], - "ends_at": [ - 4324 - ], - "hide_creator_organizer": [ - 3 - ], - "id": [ - 4762 - ], - "is_organizer": [ - 3 - ], - "media": [ - 1258, - { - "distinct_on": [ - 1321, - "[event_media_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1278, - "[event_media_order_by!]" - ], - "where": [ - 1267 - ] - } - ], - "media_access": [ - 530 - ], - "media_aggregate": [ - 1259, - { - "distinct_on": [ - 1321, - "[event_media_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1278, - "[event_media_order_by!]" - ], - "where": [ - 1267 - ] - } - ], - "name": [ - 78 - ], - "organizer": [ - 3739 - ], - "organizer_steam_id": [ - 180 - ], - "organizers": [ - 1341, - { - "distinct_on": [ - 1362, - "[event_organizers_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1360, - "[event_organizers_order_by!]" - ], - "where": [ - 1350 - ] - } - ], - "organizers_aggregate": [ - 1342, - { - "distinct_on": [ - 1362, - "[event_organizers_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1360, - "[event_organizers_order_by!]" - ], - "where": [ - 1350 - ] - } - ], - "player_stats": [ - 4765, - { - "distinct_on": [ - 4791, - "[v_event_player_stats_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4790, - "[v_event_player_stats_order_by!]" - ], - "where": [ - 4784 - ] - } - ], - "player_stats_aggregate": [ - 4766, - { - "distinct_on": [ - 4791, - "[v_event_player_stats_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4790, - "[v_event_player_stats_order_by!]" - ], - "where": [ - 4784 - ] - } - ], - "players": [ - 1382, - { - "distinct_on": [ - 1403, - "[event_players_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1401, - "[event_players_order_by!]" - ], - "where": [ - 1391 - ] - } - ], - "players_aggregate": [ - 1383, - { - "distinct_on": [ - 1403, - "[event_players_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1401, - "[event_players_order_by!]" - ], - "where": [ - 1391 - ] - } - ], - "starts_at": [ - 4324 - ], - "teams": [ - 1423, - { - "distinct_on": [ - 1441, - "[event_teams_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1439, - "[event_teams_order_by!]" - ], - "where": [ - 1430 - ] - } - ], - "teams_aggregate": [ - 1424, - { - "distinct_on": [ - 1441, - "[event_teams_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1439, - "[event_teams_order_by!]" - ], - "where": [ - 1430 - ] - } - ], - "tournaments": [ - 1447, - { - "distinct_on": [ - 1465, - "[event_tournaments_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1463, - "[event_tournaments_order_by!]" - ], - "where": [ - 1454 - ] - } - ], - "tournaments_aggregate": [ - 1448, - { - "distinct_on": [ - 1465, - "[event_tournaments_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1463, - "[event_tournaments_order_by!]" - ], - "where": [ - 1454 - ] - } - ], - "visibility": [ - 550 - ], - "__typename": [ - 78 - ] - }, - "events_aggregate": { - "aggregate": [ - 1473 - ], - "nodes": [ - 1471 - ], - "__typename": [ - 78 - ] - }, - "events_aggregate_fields": { - "avg": [ - 1474 - ], - "count": [ - 38, - { - "columns": [ - 1486, - "[events_select_column!]" - ], - "distinct": [ - 3 - ] - } - ], - "max": [ - 1479 - ], - "min": [ - 1480 - ], - "stddev": [ - 1488 - ], - "stddev_pop": [ - 1489 - ], - "stddev_samp": [ - 1490 - ], - "sum": [ - 1493 - ], - "var_pop": [ - 1496 - ], - "var_samp": [ - 1497 - ], - "variance": [ - 1498 - ], - "__typename": [ - 78 - ] - }, - "events_avg_fields": { - "organizer_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "events_bool_exp": { - "_and": [ - 1475 - ], - "_not": [ - 1475 - ], - "_or": [ - 1475 - ], - "banner": [ - 1267 - ], - "banner_media_id": [ - 4764 - ], - "can_upload_media": [ - 4 - ], - "can_view": [ - 4 - ], - "created_at": [ - 4325 - ], - "description": [ - 80 - ], - "ends_at": [ - 4325 - ], - "hide_creator_organizer": [ - 4 - ], - "id": [ - 4764 - ], - "is_organizer": [ - 4 - ], - "media": [ - 1267 - ], - "media_access": [ - 531 - ], - "media_aggregate": [ - 1260 - ], - "name": [ - 80 - ], - "organizer": [ - 3743 - ], - "organizer_steam_id": [ - 182 - ], - "organizers": [ - 1350 - ], - "organizers_aggregate": [ - 1343 - ], - "player_stats": [ - 4784 - ], - "player_stats_aggregate": [ - 4767 - ], - "players": [ - 1391 - ], - "players_aggregate": [ - 1384 - ], - "starts_at": [ - 4325 - ], - "teams": [ - 1430 - ], - "teams_aggregate": [ - 1425 - ], - "tournaments": [ - 1454 - ], - "tournaments_aggregate": [ - 1449 - ], - "visibility": [ - 551 - ], - "__typename": [ - 78 - ] - }, - "events_constraint": {}, - "events_inc_input": { - "organizer_steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "events_insert_input": { - "banner": [ - 1276 - ], - "banner_media_id": [ - 4762 - ], - "created_at": [ - 4324 - ], - "description": [ - 78 - ], - "ends_at": [ - 4324 - ], - "hide_creator_organizer": [ - 3 - ], - "id": [ - 4762 - ], - "media": [ - 1264 - ], - "media_access": [ - 530 - ], - "name": [ - 78 - ], - "organizer": [ - 3750 - ], - "organizer_steam_id": [ - 180 - ], - "organizers": [ - 1347 - ], - "player_stats": [ - 4781 - ], - "players": [ - 1388 - ], - "starts_at": [ - 4324 - ], - "teams": [ - 1429 - ], - "tournaments": [ - 1453 - ], - "visibility": [ - 550 - ], - "__typename": [ - 78 - ] - }, - "events_max_fields": { - "banner_media_id": [ - 4762 - ], - "created_at": [ - 4324 - ], - "description": [ - 78 - ], - "ends_at": [ - 4324 - ], - "id": [ - 4762 - ], - "name": [ - 78 - ], - "organizer_steam_id": [ - 180 - ], - "starts_at": [ - 4324 - ], - "__typename": [ - 78 - ] - }, - "events_min_fields": { - "banner_media_id": [ - 4762 - ], - "created_at": [ - 4324 - ], - "description": [ - 78 - ], - "ends_at": [ - 4324 - ], - "id": [ - 4762 - ], - "name": [ - 78 - ], - "organizer_steam_id": [ - 180 - ], - "starts_at": [ - 4324 - ], - "__typename": [ - 78 - ] - }, - "events_mutation_response": { - "affected_rows": [ - 38 - ], - "returning": [ - 1471 - ], - "__typename": [ - 78 - ] - }, - "events_obj_rel_insert_input": { - "data": [ - 1478 - ], - "on_conflict": [ - 1483 - ], - "__typename": [ - 78 - ] - }, - "events_on_conflict": { - "constraint": [ - 1476 - ], - "update_columns": [ - 1494 - ], - "where": [ - 1475 - ], - "__typename": [ - 78 - ] - }, - "events_order_by": { - "banner": [ - 1278 - ], - "banner_media_id": [ - 2781 - ], - "can_upload_media": [ - 2781 - ], - "can_view": [ - 2781 - ], - "created_at": [ - 2781 - ], - "description": [ - 2781 - ], - "ends_at": [ - 2781 - ], - "hide_creator_organizer": [ - 2781 - ], - "id": [ - 2781 - ], - "is_organizer": [ - 2781 - ], - "media_access": [ - 2781 - ], - "media_aggregate": [ - 1263 - ], - "name": [ - 2781 - ], - "organizer": [ - 3752 - ], - "organizer_steam_id": [ - 2781 - ], - "organizers_aggregate": [ - 1346 - ], - "player_stats_aggregate": [ - 4780 - ], - "players_aggregate": [ - 1387 - ], - "starts_at": [ - 2781 - ], - "teams_aggregate": [ - 1428 - ], - "tournaments_aggregate": [ - 1452 - ], - "visibility": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "events_pk_columns_input": { - "id": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "events_select_column": {}, - "events_set_input": { - "banner_media_id": [ - 4762 - ], - "created_at": [ - 4324 - ], - "description": [ - 78 - ], - "ends_at": [ - 4324 - ], - "hide_creator_organizer": [ - 3 - ], - "id": [ - 4762 - ], - "media_access": [ - 530 - ], - "name": [ - 78 - ], - "organizer_steam_id": [ - 180 - ], - "starts_at": [ - 4324 - ], - "visibility": [ - 550 - ], - "__typename": [ - 78 - ] - }, - "events_stddev_fields": { - "organizer_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "events_stddev_pop_fields": { - "organizer_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "events_stddev_samp_fields": { - "organizer_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "events_stream_cursor_input": { - "initial_value": [ - 1492 - ], - "ordering": [ - 236 - ], - "__typename": [ - 78 - ] - }, - "events_stream_cursor_value_input": { - "banner_media_id": [ - 4762 - ], - "created_at": [ - 4324 - ], - "description": [ - 78 - ], - "ends_at": [ - 4324 - ], - "hide_creator_organizer": [ - 3 - ], - "id": [ - 4762 - ], - "media_access": [ - 530 - ], - "name": [ - 78 - ], - "organizer_steam_id": [ - 180 - ], - "starts_at": [ - 4324 - ], - "visibility": [ - 550 - ], - "__typename": [ - 78 - ] - }, - "events_sum_fields": { - "organizer_steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "events_update_column": {}, - "events_updates": { - "_inc": [ - 1477 - ], - "_set": [ - 1487 - ], - "where": [ - 1475 - ], - "__typename": [ - 78 - ] - }, - "events_var_pop_fields": { - "organizer_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "events_var_samp_fields": { - "organizer_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "events_variance_fields": { - "organizer_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "float8": {}, - "float8_comparison_exp": { - "_eq": [ - 1499 - ], - "_gt": [ - 1499 - ], - "_gte": [ - 1499 - ], - "_in": [ - 1499 - ], - "_is_null": [ - 3 - ], - "_lt": [ - 1499 - ], - "_lte": [ - 1499 - ], - "_neq": [ - 1499 - ], - "_nin": [ - 1499 - ], - "__typename": [ - 78 - ] - }, - "friends": { - "e_status": [ - 565 - ], - "other_player_steam_id": [ - 180 - ], - "player_steam_id": [ - 180 - ], - "status": [ - 570 - ], - "__typename": [ - 78 - ] - }, - "friends_aggregate": { - "aggregate": [ - 1503 - ], - "nodes": [ - 1501 - ], - "__typename": [ - 78 - ] - }, - "friends_aggregate_fields": { - "avg": [ - 1504 - ], - "count": [ - 38, - { - "columns": [ - 1515, - "[friends_select_column!]" - ], - "distinct": [ - 3 - ] - } - ], - "max": [ - 1509 - ], - "min": [ - 1510 - ], - "stddev": [ - 1517 - ], - "stddev_pop": [ - 1518 - ], - "stddev_samp": [ - 1519 - ], - "sum": [ - 1522 - ], - "var_pop": [ - 1525 - ], - "var_samp": [ - 1526 - ], - "variance": [ - 1527 - ], - "__typename": [ - 78 - ] - }, - "friends_avg_fields": { - "other_player_steam_id": [ - 29 - ], - "player_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "friends_bool_exp": { - "_and": [ - 1505 - ], - "_not": [ - 1505 - ], - "_or": [ - 1505 - ], - "e_status": [ - 568 - ], - "other_player_steam_id": [ - 182 - ], - "player_steam_id": [ - 182 - ], - "status": [ - 571 - ], - "__typename": [ - 78 - ] - }, - "friends_constraint": {}, - "friends_inc_input": { - "other_player_steam_id": [ - 180 - ], - "player_steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "friends_insert_input": { - "e_status": [ - 576 - ], - "other_player_steam_id": [ - 180 - ], - "player_steam_id": [ - 180 - ], - "status": [ - 570 - ], - "__typename": [ - 78 - ] - }, - "friends_max_fields": { - "other_player_steam_id": [ - 180 - ], - "player_steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "friends_min_fields": { - "other_player_steam_id": [ - 180 - ], - "player_steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "friends_mutation_response": { - "affected_rows": [ - 38 - ], - "returning": [ - 1501 - ], - "__typename": [ - 78 - ] - }, - "friends_on_conflict": { - "constraint": [ - 1506 - ], - "update_columns": [ - 1523 - ], - "where": [ - 1505 - ], - "__typename": [ - 78 - ] - }, - "friends_order_by": { - "e_status": [ - 578 - ], - "other_player_steam_id": [ - 2781 - ], - "player_steam_id": [ - 2781 - ], - "status": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "friends_pk_columns_input": { - "other_player_steam_id": [ - 180 - ], - "player_steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "friends_select_column": {}, - "friends_set_input": { - "other_player_steam_id": [ - 180 - ], - "player_steam_id": [ - 180 - ], - "status": [ - 570 - ], - "__typename": [ - 78 - ] - }, - "friends_stddev_fields": { - "other_player_steam_id": [ - 29 - ], - "player_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "friends_stddev_pop_fields": { - "other_player_steam_id": [ - 29 - ], - "player_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "friends_stddev_samp_fields": { - "other_player_steam_id": [ - 29 - ], - "player_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "friends_stream_cursor_input": { - "initial_value": [ - 1521 - ], - "ordering": [ - 236 - ], - "__typename": [ - 78 - ] - }, - "friends_stream_cursor_value_input": { - "other_player_steam_id": [ - 180 - ], - "player_steam_id": [ - 180 - ], - "status": [ - 570 - ], - "__typename": [ - 78 - ] - }, - "friends_sum_fields": { - "other_player_steam_id": [ - 180 - ], - "player_steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "friends_update_column": {}, - "friends_updates": { - "_inc": [ - 1507 - ], - "_set": [ - 1516 - ], - "where": [ - 1505 - ], - "__typename": [ - 78 - ] - }, - "friends_var_pop_fields": { - "other_player_steam_id": [ - 29 - ], - "player_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "friends_var_samp_fields": { - "other_player_steam_id": [ - 29 - ], - "player_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "friends_variance_fields": { - "other_player_steam_id": [ - 29 - ], - "player_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes": { - "available_server_count": [ - 38 - ], - "build_id": [ - 38 - ], - "cpu_cores_per_socket": [ - 38 - ], - "cpu_frequency_info": [ - 1652, - { - "path": [ - 78 - ] - } - ], - "cpu_governor_info": [ - 1652, - { - "path": [ - 78 - ] - } - ], - "cpu_sockets": [ - 38 - ], - "cpu_threads_per_core": [ - 38 - ], - "cpu_warnings": [ - 1652, - { - "path": [ - 78 - ] - } - ], - "cs2_launch_options": [ - 1652, - { - "path": [ - 78 - ] - } - ], - "cs2_video_settings": [ - 1652, - { - "path": [ - 78 - ] - } - ], - "csgo_build_id": [ - 38 - ], - "demo_network_limiter": [ - 38 - ], - "disk_available_gb": [ - 38 - ], - "disk_used_percent": [ - 38 - ], - "e_region": [ - 3826 - ], - "e_status": [ - 606 - ], - "enabled": [ - 3 - ], - "enabled_for_match_making": [ - 3 - ], - "end_port_range": [ - 38 - ], - "gpu": [ - 3 - ], - "gpu_demos_enabled": [ - 3 - ], - "gpu_info": [ - 1652, - { - "path": [ - 78 - ] - } - ], - "gpu_rendering_enabled": [ - 3 - ], - "gpu_streaming_enabled": [ - 3 - ], - "id": [ - 78 - ], - "label": [ - 78 - ], - "lan_ip": [ - 1648 - ], - "node_ip": [ - 1648 - ], - "offline_at": [ - 4324 - ], - "pin_build_id": [ - 38 - ], - "pin_plugin_runtime": [ - 78 - ], - "pin_plugin_version": [ - 78 - ], - "pinned_version": [ - 1579 - ], - "plugin_supported": [ - 3 - ], - "public_ip": [ - 1648 - ], - "region": [ - 78 - ], - "servers": [ - 3853, - { - "distinct_on": [ - 3877, - "[servers_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 3875, - "[servers_order_by!]" - ], - "where": [ - 3864 - ] - } - ], - "servers_aggregate": [ - 3854, - { - "distinct_on": [ - 3877, - "[servers_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 3875, - "[servers_order_by!]" - ], - "where": [ - 3864 - ] - } - ], - "shader_bake_progress": [ - 2779 - ], - "shader_bake_progress_stage": [ - 78 - ], - "shader_bake_status": [ - 78 - ], - "shader_bake_status_history": [ - 1652, - { - "path": [ - 78 - ] - } - ], - "start_port_range": [ - 38 - ], - "status": [ - 611 - ], - "supports_cpu_pinning": [ - 3 - ], - "supports_low_latency": [ - 3 - ], - "token": [ - 78 - ], - "total_server_count": [ - 38 - ], - "update_status": [ - 78 - ], - "version": [ - 1579 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_aggregate": { - "aggregate": [ - 1534 - ], - "nodes": [ - 1528 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_aggregate_bool_exp": { - "bool_and": [ - 1531 - ], - "bool_or": [ - 1532 - ], - "count": [ - 1533 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_aggregate_bool_exp_bool_and": { - "arguments": [ - 1558 - ], - "distinct": [ - 3 - ], - "filter": [ - 1540 - ], - "predicate": [ - 4 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_aggregate_bool_exp_bool_or": { - "arguments": [ - 1559 - ], - "distinct": [ - 3 - ], - "filter": [ - 1540 - ], - "predicate": [ - 4 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_aggregate_bool_exp_count": { - "arguments": [ - 1557 - ], - "distinct": [ - 3 - ], - "filter": [ - 1540 - ], - "predicate": [ - 39 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_aggregate_fields": { - "avg": [ - 1538 - ], - "count": [ - 38, - { - "columns": [ - 1557, - "[game_server_nodes_select_column!]" - ], - "distinct": [ - 3 - ] - } - ], - "max": [ - 1547 - ], - "min": [ - 1549 - ], - "stddev": [ - 1561 - ], - "stddev_pop": [ - 1563 - ], - "stddev_samp": [ - 1565 - ], - "sum": [ - 1569 - ], - "var_pop": [ - 1573 - ], - "var_samp": [ - 1575 - ], - "variance": [ - 1577 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_aggregate_order_by": { - "avg": [ - 1539 - ], - "count": [ - 2781 - ], - "max": [ - 1548 - ], - "min": [ - 1550 - ], - "stddev": [ - 1562 - ], - "stddev_pop": [ - 1564 - ], - "stddev_samp": [ - 1566 - ], - "sum": [ - 1570 - ], - "var_pop": [ - 1574 - ], - "var_samp": [ - 1576 - ], - "variance": [ - 1578 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_append_input": { - "cpu_frequency_info": [ - 1652 - ], - "cpu_governor_info": [ - 1652 - ], - "cpu_warnings": [ - 1652 - ], - "cs2_launch_options": [ - 1652 - ], - "cs2_video_settings": [ - 1652 - ], - "gpu_info": [ - 1652 - ], - "shader_bake_status_history": [ - 1652 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_arr_rel_insert_input": { - "data": [ - 1546 - ], - "on_conflict": [ - 1553 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_avg_fields": { - "available_server_count": [ - 38 - ], - "build_id": [ - 29 - ], - "cpu_cores_per_socket": [ - 29 - ], - "cpu_sockets": [ - 29 - ], - "cpu_threads_per_core": [ - 29 - ], - "csgo_build_id": [ - 29 - ], - "demo_network_limiter": [ - 29 - ], - "disk_available_gb": [ - 29 - ], - "disk_used_percent": [ - 29 - ], - "end_port_range": [ - 29 - ], - "pin_build_id": [ - 29 - ], - "shader_bake_progress": [ - 29 - ], - "start_port_range": [ - 29 - ], - "total_server_count": [ - 38 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_avg_order_by": { - "build_id": [ - 2781 - ], - "cpu_cores_per_socket": [ - 2781 - ], - "cpu_sockets": [ - 2781 - ], - "cpu_threads_per_core": [ - 2781 - ], - "csgo_build_id": [ - 2781 - ], - "demo_network_limiter": [ - 2781 - ], - "disk_available_gb": [ - 2781 - ], - "disk_used_percent": [ - 2781 - ], - "end_port_range": [ - 2781 - ], - "pin_build_id": [ - 2781 - ], - "shader_bake_progress": [ - 2781 - ], - "start_port_range": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_bool_exp": { - "_and": [ - 1540 - ], - "_not": [ - 1540 - ], - "_or": [ - 1540 - ], - "available_server_count": [ - 39 - ], - "build_id": [ - 39 - ], - "cpu_cores_per_socket": [ - 39 - ], - "cpu_frequency_info": [ - 1654 - ], - "cpu_governor_info": [ - 1654 - ], - "cpu_sockets": [ - 39 - ], - "cpu_threads_per_core": [ - 39 - ], - "cpu_warnings": [ - 1654 - ], - "cs2_launch_options": [ - 1654 - ], - "cs2_video_settings": [ - 1654 - ], - "csgo_build_id": [ - 39 - ], - "demo_network_limiter": [ - 39 - ], - "disk_available_gb": [ - 39 - ], - "disk_used_percent": [ - 39 - ], - "e_region": [ - 3830 - ], - "e_status": [ - 609 - ], - "enabled": [ - 4 - ], - "enabled_for_match_making": [ - 4 - ], - "end_port_range": [ - 39 - ], - "gpu": [ - 4 - ], - "gpu_demos_enabled": [ - 4 - ], - "gpu_info": [ - 1654 - ], - "gpu_rendering_enabled": [ - 4 - ], - "gpu_streaming_enabled": [ - 4 - ], - "id": [ - 80 - ], - "label": [ - 80 - ], - "lan_ip": [ - 1649 - ], - "node_ip": [ - 1649 - ], - "offline_at": [ - 4325 - ], - "pin_build_id": [ - 39 - ], - "pin_plugin_runtime": [ - 80 - ], - "pin_plugin_version": [ - 80 - ], - "pinned_version": [ - 1584 - ], - "plugin_supported": [ - 4 - ], - "public_ip": [ - 1649 - ], - "region": [ - 80 - ], - "servers": [ - 3864 - ], - "servers_aggregate": [ - 3855 - ], - "shader_bake_progress": [ - 2780 - ], - "shader_bake_progress_stage": [ - 80 - ], - "shader_bake_status": [ - 80 - ], - "shader_bake_status_history": [ - 1654 - ], - "start_port_range": [ - 39 - ], - "status": [ - 612 - ], - "supports_cpu_pinning": [ - 4 - ], - "supports_low_latency": [ - 4 - ], - "token": [ - 80 - ], - "total_server_count": [ - 39 - ], - "update_status": [ - 80 - ], - "version": [ - 1584 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_constraint": {}, - "game_server_nodes_delete_at_path_input": { - "cpu_frequency_info": [ - 78 - ], - "cpu_governor_info": [ - 78 - ], - "cpu_warnings": [ - 78 - ], - "cs2_launch_options": [ - 78 - ], - "cs2_video_settings": [ - 78 - ], - "gpu_info": [ - 78 - ], - "shader_bake_status_history": [ - 78 - ], - "__typename": [ - 78 - ] - }, - "game_server_nodes_delete_elem_input": { - "cpu_frequency_info": [ - 38 - ], - "cpu_governor_info": [ - 38 - ], - "cpu_warnings": [ - 38 - ], - "cs2_launch_options": [ - 38 - ], - "cs2_video_settings": [ - 38 - ], - "gpu_info": [ - 38 + "gpu_info": [ + 38 ], "shader_bake_status_history": [ 38 @@ -23269,7 +19564,7 @@ export default { 38 ], "shader_bake_progress": [ - 2779 + 2527 ], "start_port_range": [ 38 @@ -23286,10 +19581,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1652 + 1400 ], "cpu_governor_info": [ - 1652 + 1400 ], "cpu_sockets": [ 38 @@ -23298,13 +19593,13 @@ export default { 38 ], "cpu_warnings": [ - 1652 + 1400 ], "cs2_launch_options": [ - 1652 + 1400 ], "cs2_video_settings": [ - 1652 + 1400 ], "csgo_build_id": [ 38 @@ -23319,10 +19614,10 @@ export default { 38 ], "e_region": [ - 3836 + 3584 ], "e_status": [ - 617 + 604 ], "enabled": [ 3 @@ -23340,7 +19635,7 @@ export default { 3 ], "gpu_info": [ - 1652 + 1400 ], "gpu_rendering_enabled": [ 3 @@ -23355,13 +19650,13 @@ export default { 78 ], "lan_ip": [ - 1648 + 1396 ], "node_ip": [ - 1648 + 1396 ], "offline_at": [ - 4324 + 4076 ], "pin_build_id": [ 38 @@ -23373,19 +19668,19 @@ export default { 78 ], "pinned_version": [ - 1594 + 1343 ], "public_ip": [ - 1648 + 1396 ], "region": [ 78 ], "servers": [ - 3861 + 3609 ], "shader_bake_progress": [ - 2779 + 2527 ], "shader_bake_progress_stage": [ 78 @@ -23394,13 +19689,13 @@ export default { 78 ], "shader_bake_status_history": [ - 1652 + 1400 ], "start_port_range": [ 38 ], "status": [ - 611 + 598 ], "supports_cpu_pinning": [ 3 @@ -23415,7 +19710,7 @@ export default { 78 ], "version": [ - 1594 + 1343 ], "__typename": [ 78 @@ -23459,7 +19754,7 @@ export default { 78 ], "offline_at": [ - 4324 + 4076 ], "pin_build_id": [ 38 @@ -23474,7 +19769,7 @@ export default { 78 ], "shader_bake_progress": [ - 2779 + 2527 ], "shader_bake_progress_stage": [ 78 @@ -23500,70 +19795,70 @@ export default { }, "game_server_nodes_max_order_by": { "build_id": [ - 2781 + 2529 ], "cpu_cores_per_socket": [ - 2781 + 2529 ], "cpu_sockets": [ - 2781 + 2529 ], "cpu_threads_per_core": [ - 2781 + 2529 ], "csgo_build_id": [ - 2781 + 2529 ], "demo_network_limiter": [ - 2781 + 2529 ], "disk_available_gb": [ - 2781 + 2529 ], "disk_used_percent": [ - 2781 + 2529 ], "end_port_range": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "offline_at": [ - 2781 + 2529 ], "pin_build_id": [ - 2781 + 2529 ], "pin_plugin_runtime": [ - 2781 + 2529 ], "pin_plugin_version": [ - 2781 + 2529 ], "region": [ - 2781 + 2529 ], "shader_bake_progress": [ - 2781 + 2529 ], "shader_bake_progress_stage": [ - 2781 + 2529 ], "shader_bake_status": [ - 2781 + 2529 ], "start_port_range": [ - 2781 + 2529 ], "token": [ - 2781 + 2529 ], "update_status": [ - 2781 + 2529 ], "__typename": [ 78 @@ -23607,7 +19902,7 @@ export default { 78 ], "offline_at": [ - 4324 + 4076 ], "pin_build_id": [ 38 @@ -23622,7 +19917,7 @@ export default { 78 ], "shader_bake_progress": [ - 2779 + 2527 ], "shader_bake_progress_stage": [ 78 @@ -23648,70 +19943,70 @@ export default { }, "game_server_nodes_min_order_by": { "build_id": [ - 2781 + 2529 ], "cpu_cores_per_socket": [ - 2781 + 2529 ], "cpu_sockets": [ - 2781 + 2529 ], "cpu_threads_per_core": [ - 2781 + 2529 ], "csgo_build_id": [ - 2781 + 2529 ], "demo_network_limiter": [ - 2781 + 2529 ], "disk_available_gb": [ - 2781 + 2529 ], "disk_used_percent": [ - 2781 + 2529 ], "end_port_range": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "offline_at": [ - 2781 + 2529 ], "pin_build_id": [ - 2781 + 2529 ], "pin_plugin_runtime": [ - 2781 + 2529 ], "pin_plugin_version": [ - 2781 + 2529 ], "region": [ - 2781 + 2529 ], "shader_bake_progress": [ - 2781 + 2529 ], "shader_bake_progress_stage": [ - 2781 + 2529 ], "shader_bake_status": [ - 2781 + 2529 ], "start_port_range": [ - 2781 + 2529 ], "token": [ - 2781 + 2529 ], "update_status": [ - 2781 + 2529 ], "__typename": [ 78 @@ -23722,7 +20017,7 @@ export default { 38 ], "returning": [ - 1528 + 1277 ], "__typename": [ 78 @@ -23730,10 +20025,10 @@ export default { }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1546 + 1295 ], "on_conflict": [ - 1553 + 1302 ], "__typename": [ 78 @@ -23741,13 +20036,13 @@ export default { }, "game_server_nodes_on_conflict": { "constraint": [ - 1541 + 1290 ], "update_columns": [ - 1571 + 1320 ], "where": [ - 1540 + 1289 ], "__typename": [ 78 @@ -23755,151 +20050,151 @@ export default { }, "game_server_nodes_order_by": { "available_server_count": [ - 2781 + 2529 ], "build_id": [ - 2781 + 2529 ], "cpu_cores_per_socket": [ - 2781 + 2529 ], "cpu_frequency_info": [ - 2781 + 2529 ], "cpu_governor_info": [ - 2781 + 2529 ], "cpu_sockets": [ - 2781 + 2529 ], "cpu_threads_per_core": [ - 2781 + 2529 ], "cpu_warnings": [ - 2781 + 2529 ], "cs2_launch_options": [ - 2781 + 2529 ], "cs2_video_settings": [ - 2781 + 2529 ], "csgo_build_id": [ - 2781 + 2529 ], "demo_network_limiter": [ - 2781 + 2529 ], "disk_available_gb": [ - 2781 + 2529 ], "disk_used_percent": [ - 2781 + 2529 ], "e_region": [ - 3838 + 3586 ], "e_status": [ - 619 + 606 ], "enabled": [ - 2781 + 2529 ], "enabled_for_match_making": [ - 2781 + 2529 ], "end_port_range": [ - 2781 + 2529 ], "gpu": [ - 2781 + 2529 ], "gpu_demos_enabled": [ - 2781 + 2529 ], "gpu_info": [ - 2781 + 2529 ], "gpu_rendering_enabled": [ - 2781 + 2529 ], "gpu_streaming_enabled": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "lan_ip": [ - 2781 + 2529 ], "node_ip": [ - 2781 + 2529 ], "offline_at": [ - 2781 + 2529 ], "pin_build_id": [ - 2781 + 2529 ], "pin_plugin_runtime": [ - 2781 + 2529 ], "pin_plugin_version": [ - 2781 + 2529 ], "pinned_version": [ - 1596 + 1345 ], "plugin_supported": [ - 2781 + 2529 ], "public_ip": [ - 2781 + 2529 ], "region": [ - 2781 + 2529 ], "servers_aggregate": [ - 3860 + 3608 ], "shader_bake_progress": [ - 2781 + 2529 ], "shader_bake_progress_stage": [ - 2781 + 2529 ], "shader_bake_status": [ - 2781 + 2529 ], "shader_bake_status_history": [ - 2781 + 2529 ], "start_port_range": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "supports_cpu_pinning": [ - 2781 + 2529 ], "supports_low_latency": [ - 2781 + 2529 ], "token": [ - 2781 + 2529 ], "total_server_count": [ - 2781 + 2529 ], "update_status": [ - 2781 + 2529 ], "version": [ - 1596 + 1345 ], "__typename": [ 78 @@ -23915,25 +20210,25 @@ export default { }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1652 + 1400 ], "cpu_governor_info": [ - 1652 + 1400 ], "cpu_warnings": [ - 1652 + 1400 ], "cs2_launch_options": [ - 1652 + 1400 ], "cs2_video_settings": [ - 1652 + 1400 ], "gpu_info": [ - 1652 + 1400 ], "shader_bake_status_history": [ - 1652 + 1400 ], "__typename": [ 78 @@ -23950,10 +20245,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1652 + 1400 ], "cpu_governor_info": [ - 1652 + 1400 ], "cpu_sockets": [ 38 @@ -23962,13 +20257,13 @@ export default { 38 ], "cpu_warnings": [ - 1652 + 1400 ], "cs2_launch_options": [ - 1652 + 1400 ], "cs2_video_settings": [ - 1652 + 1400 ], "csgo_build_id": [ 38 @@ -23998,7 +20293,7 @@ export default { 3 ], "gpu_info": [ - 1652 + 1400 ], "gpu_rendering_enabled": [ 3 @@ -24013,13 +20308,13 @@ export default { 78 ], "lan_ip": [ - 1648 + 1396 ], "node_ip": [ - 1648 + 1396 ], "offline_at": [ - 4324 + 4076 ], "pin_build_id": [ 38 @@ -24031,13 +20326,13 @@ export default { 78 ], "public_ip": [ - 1648 + 1396 ], "region": [ 78 ], "shader_bake_progress": [ - 2779 + 2527 ], "shader_bake_progress_stage": [ 78 @@ -24046,13 +20341,13 @@ export default { 78 ], "shader_bake_status_history": [ - 1652 + 1400 ], "start_port_range": [ 38 ], "status": [ - 611 + 598 ], "supports_cpu_pinning": [ 3 @@ -24119,40 +20414,40 @@ export default { }, "game_server_nodes_stddev_order_by": { "build_id": [ - 2781 + 2529 ], "cpu_cores_per_socket": [ - 2781 + 2529 ], "cpu_sockets": [ - 2781 + 2529 ], "cpu_threads_per_core": [ - 2781 + 2529 ], "csgo_build_id": [ - 2781 + 2529 ], "demo_network_limiter": [ - 2781 + 2529 ], "disk_available_gb": [ - 2781 + 2529 ], "disk_used_percent": [ - 2781 + 2529 ], "end_port_range": [ - 2781 + 2529 ], "pin_build_id": [ - 2781 + 2529 ], "shader_bake_progress": [ - 2781 + 2529 ], "start_port_range": [ - 2781 + 2529 ], "__typename": [ 78 @@ -24207,40 +20502,40 @@ export default { }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 2781 + 2529 ], "cpu_cores_per_socket": [ - 2781 + 2529 ], "cpu_sockets": [ - 2781 + 2529 ], "cpu_threads_per_core": [ - 2781 + 2529 ], "csgo_build_id": [ - 2781 + 2529 ], "demo_network_limiter": [ - 2781 + 2529 ], "disk_available_gb": [ - 2781 + 2529 ], "disk_used_percent": [ - 2781 + 2529 ], "end_port_range": [ - 2781 + 2529 ], "pin_build_id": [ - 2781 + 2529 ], "shader_bake_progress": [ - 2781 + 2529 ], "start_port_range": [ - 2781 + 2529 ], "__typename": [ 78 @@ -24295,40 +20590,40 @@ export default { }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 2781 + 2529 ], "cpu_cores_per_socket": [ - 2781 + 2529 ], "cpu_sockets": [ - 2781 + 2529 ], "cpu_threads_per_core": [ - 2781 + 2529 ], "csgo_build_id": [ - 2781 + 2529 ], "demo_network_limiter": [ - 2781 + 2529 ], "disk_available_gb": [ - 2781 + 2529 ], "disk_used_percent": [ - 2781 + 2529 ], "end_port_range": [ - 2781 + 2529 ], "pin_build_id": [ - 2781 + 2529 ], "shader_bake_progress": [ - 2781 + 2529 ], "start_port_range": [ - 2781 + 2529 ], "__typename": [ 78 @@ -24336,7 +20631,7 @@ export default { }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1568 + 1317 ], "ordering": [ 236 @@ -24353,10 +20648,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1652 + 1400 ], "cpu_governor_info": [ - 1652 + 1400 ], "cpu_sockets": [ 38 @@ -24365,13 +20660,13 @@ export default { 38 ], "cpu_warnings": [ - 1652 + 1400 ], "cs2_launch_options": [ - 1652 + 1400 ], "cs2_video_settings": [ - 1652 + 1400 ], "csgo_build_id": [ 38 @@ -24401,7 +20696,7 @@ export default { 3 ], "gpu_info": [ - 1652 + 1400 ], "gpu_rendering_enabled": [ 3 @@ -24416,13 +20711,13 @@ export default { 78 ], "lan_ip": [ - 1648 + 1396 ], "node_ip": [ - 1648 + 1396 ], "offline_at": [ - 4324 + 4076 ], "pin_build_id": [ 38 @@ -24434,13 +20729,13 @@ export default { 78 ], "public_ip": [ - 1648 + 1396 ], "region": [ 78 ], "shader_bake_progress": [ - 2779 + 2527 ], "shader_bake_progress_stage": [ 78 @@ -24449,13 +20744,13 @@ export default { 78 ], "shader_bake_status_history": [ - 1652 + 1400 ], "start_port_range": [ 38 ], "status": [ - 611 + 598 ], "supports_cpu_pinning": [ 3 @@ -24508,7 +20803,7 @@ export default { 38 ], "shader_bake_progress": [ - 2779 + 2527 ], "start_port_range": [ 38 @@ -24522,40 +20817,40 @@ export default { }, "game_server_nodes_sum_order_by": { "build_id": [ - 2781 + 2529 ], "cpu_cores_per_socket": [ - 2781 + 2529 ], "cpu_sockets": [ - 2781 + 2529 ], "cpu_threads_per_core": [ - 2781 + 2529 ], "csgo_build_id": [ - 2781 + 2529 ], "demo_network_limiter": [ - 2781 + 2529 ], "disk_available_gb": [ - 2781 + 2529 ], "disk_used_percent": [ - 2781 + 2529 ], "end_port_range": [ - 2781 + 2529 ], "pin_build_id": [ - 2781 + 2529 ], "shader_bake_progress": [ - 2781 + 2529 ], "start_port_range": [ - 2781 + 2529 ], "__typename": [ 78 @@ -24564,28 +20859,28 @@ export default { "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1536 + 1285 ], "_delete_at_path": [ - 1542 + 1291 ], "_delete_elem": [ - 1543 + 1292 ], "_delete_key": [ - 1544 + 1293 ], "_inc": [ - 1545 + 1294 ], "_prepend": [ - 1556 + 1305 ], "_set": [ - 1560 + 1309 ], "where": [ - 1540 + 1289 ], "__typename": [ 78 @@ -24640,40 +20935,40 @@ export default { }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 2781 + 2529 ], "cpu_cores_per_socket": [ - 2781 + 2529 ], "cpu_sockets": [ - 2781 + 2529 ], "cpu_threads_per_core": [ - 2781 + 2529 ], "csgo_build_id": [ - 2781 + 2529 ], "demo_network_limiter": [ - 2781 + 2529 ], "disk_available_gb": [ - 2781 + 2529 ], "disk_used_percent": [ - 2781 + 2529 ], "end_port_range": [ - 2781 + 2529 ], "pin_build_id": [ - 2781 + 2529 ], "shader_bake_progress": [ - 2781 + 2529 ], "start_port_range": [ - 2781 + 2529 ], "__typename": [ 78 @@ -24728,40 +21023,40 @@ export default { }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 2781 + 2529 ], "cpu_cores_per_socket": [ - 2781 + 2529 ], "cpu_sockets": [ - 2781 + 2529 ], "cpu_threads_per_core": [ - 2781 + 2529 ], "csgo_build_id": [ - 2781 + 2529 ], "demo_network_limiter": [ - 2781 + 2529 ], "disk_available_gb": [ - 2781 + 2529 ], "disk_used_percent": [ - 2781 + 2529 ], "end_port_range": [ - 2781 + 2529 ], "pin_build_id": [ - 2781 + 2529 ], "shader_bake_progress": [ - 2781 + 2529 ], "start_port_range": [ - 2781 + 2529 ], "__typename": [ 78 @@ -24816,40 +21111,40 @@ export default { }, "game_server_nodes_variance_order_by": { "build_id": [ - 2781 + 2529 ], "cpu_cores_per_socket": [ - 2781 + 2529 ], "cpu_sockets": [ - 2781 + 2529 ], "cpu_threads_per_core": [ - 2781 + 2529 ], "csgo_build_id": [ - 2781 + 2529 ], "demo_network_limiter": [ - 2781 + 2529 ], "disk_available_gb": [ - 2781 + 2529 ], "disk_used_percent": [ - 2781 + 2529 ], "end_port_range": [ - 2781 + 2529 ], "pin_build_id": [ - 2781 + 2529 ], "shader_bake_progress": [ - 2781 + 2529 ], "start_port_range": [ - 2781 + 2529 ], "__typename": [ 78 @@ -24869,7 +21164,7 @@ export default { 78 ], "downloads": [ - 1652, + 1400, { "path": [ 78 @@ -24877,7 +21172,7 @@ export default { } ], "updated_at": [ - 4324 + 4076 ], "version": [ 78 @@ -24888,10 +21183,10 @@ export default { }, "game_versions_aggregate": { "aggregate": [ - 1581 + 1330 ], "nodes": [ - 1579 + 1328 ], "__typename": [ 78 @@ -24899,13 +21194,13 @@ export default { }, "game_versions_aggregate_fields": { "avg": [ - 1583 + 1332 ], "count": [ 38, { "columns": [ - 1599, + 1348, "[game_versions_select_column!]" ], "distinct": [ @@ -24914,31 +21209,31 @@ export default { } ], "max": [ - 1591 + 1340 ], "min": [ - 1592 + 1341 ], "stddev": [ - 1601 + 1350 ], "stddev_pop": [ - 1602 + 1351 ], "stddev_samp": [ - 1603 + 1352 ], "sum": [ - 1606 + 1355 ], "var_pop": [ - 1609 + 1358 ], "var_samp": [ - 1610 + 1359 ], "variance": [ - 1611 + 1360 ], "__typename": [ 78 @@ -24946,7 +21241,7 @@ export default { }, "game_versions_append_input": { "downloads": [ - 1652 + 1400 ], "__typename": [ 78 @@ -24962,13 +21257,13 @@ export default { }, "game_versions_bool_exp": { "_and": [ - 1584 + 1333 ], "_not": [ - 1584 + 1333 ], "_or": [ - 1584 + 1333 ], "build_id": [ 39 @@ -24983,10 +21278,10 @@ export default { 80 ], "downloads": [ - 1654 + 1402 ], "updated_at": [ - 4325 + 4077 ], "version": [ 80 @@ -25042,10 +21337,10 @@ export default { 78 ], "downloads": [ - 1652 + 1400 ], "updated_at": [ - 4324 + 4076 ], "version": [ 78 @@ -25062,7 +21357,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "version": [ 78 @@ -25079,7 +21374,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "version": [ 78 @@ -25093,7 +21388,7 @@ export default { 38 ], "returning": [ - 1579 + 1328 ], "__typename": [ 78 @@ -25101,10 +21396,10 @@ export default { }, "game_versions_obj_rel_insert_input": { "data": [ - 1590 + 1339 ], "on_conflict": [ - 1595 + 1344 ], "__typename": [ 78 @@ -25112,13 +21407,13 @@ export default { }, "game_versions_on_conflict": { "constraint": [ - 1585 + 1334 ], "update_columns": [ - 1607 + 1356 ], "where": [ - 1584 + 1333 ], "__typename": [ 78 @@ -25126,25 +21421,25 @@ export default { }, "game_versions_order_by": { "build_id": [ - 2781 + 2529 ], "current": [ - 2781 + 2529 ], "cvars": [ - 2781 + 2529 ], "description": [ - 2781 + 2529 ], "downloads": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "version": [ - 2781 + 2529 ], "__typename": [ 78 @@ -25160,7 +21455,7 @@ export default { }, "game_versions_prepend_input": { "downloads": [ - 1652 + 1400 ], "__typename": [ 78 @@ -25181,10 +21476,10 @@ export default { 78 ], "downloads": [ - 1652 + 1400 ], "updated_at": [ - 4324 + 4076 ], "version": [ 78 @@ -25219,7 +21514,7 @@ export default { }, "game_versions_stream_cursor_input": { "initial_value": [ - 1605 + 1354 ], "ordering": [ 236 @@ -25242,10 +21537,10 @@ export default { 78 ], "downloads": [ - 1652 + 1400 ], "updated_at": [ - 4324 + 4076 ], "version": [ 78 @@ -25265,28 +21560,28 @@ export default { "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1582 + 1331 ], "_delete_at_path": [ - 1586 + 1335 ], "_delete_elem": [ - 1587 + 1336 ], "_delete_key": [ - 1588 + 1337 ], "_inc": [ - 1589 + 1338 ], "_prepend": [ - 1598 + 1347 ], "_set": [ - 1600 + 1349 ], "where": [ - 1584 + 1333 ], "__typename": [ 78 @@ -25324,13 +21619,13 @@ export default { 38 ], "game_version": [ - 1579 + 1328 ], "id": [ - 4762 + 4621 ], "results": [ - 1652, + 1400, { "path": [ 78 @@ -25341,7 +21636,7 @@ export default { 78 ], "validated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -25349,10 +21644,10 @@ export default { }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1614 + 1363 ], "nodes": [ - 1612 + 1361 ], "__typename": [ 78 @@ -25360,13 +21655,13 @@ export default { }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1616 + 1365 ], "count": [ 38, { "columns": [ - 1631, + 1380, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -25375,31 +21670,31 @@ export default { } ], "max": [ - 1624 + 1373 ], "min": [ - 1625 + 1374 ], "stddev": [ - 1633 + 1382 ], "stddev_pop": [ - 1634 + 1383 ], "stddev_samp": [ - 1635 + 1384 ], "sum": [ - 1638 + 1387 ], "var_pop": [ - 1641 + 1390 ], "var_samp": [ - 1642 + 1391 ], "variance": [ - 1643 + 1392 ], "__typename": [ 78 @@ -25407,7 +21702,7 @@ export default { }, "gamedata_signature_validations_append_input": { "results": [ - 1652 + 1400 ], "__typename": [ 78 @@ -25423,13 +21718,13 @@ export default { }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1617 + 1366 ], "_not": [ - 1617 + 1366 ], "_or": [ - 1617 + 1366 ], "branch": [ 80 @@ -25438,19 +21733,19 @@ export default { 39 ], "game_version": [ - 1584 + 1333 ], "id": [ - 4764 + 4623 ], "results": [ - 1654 + 1402 ], "status": [ 80 ], "validated_at": [ - 4325 + 4077 ], "__typename": [ 78 @@ -25497,19 +21792,19 @@ export default { 38 ], "game_version": [ - 1594 + 1343 ], "id": [ - 4762 + 4621 ], "results": [ - 1652 + 1400 ], "status": [ 78 ], "validated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -25523,13 +21818,13 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "status": [ 78 ], "validated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -25543,13 +21838,13 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "status": [ 78 ], "validated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -25560,7 +21855,7 @@ export default { 38 ], "returning": [ - 1612 + 1361 ], "__typename": [ 78 @@ -25568,13 +21863,13 @@ export default { }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1618 + 1367 ], "update_columns": [ - 1639 + 1388 ], "where": [ - 1617 + 1366 ], "__typename": [ 78 @@ -25582,25 +21877,25 @@ export default { }, "gamedata_signature_validations_order_by": { "branch": [ - 2781 + 2529 ], "build_id": [ - 2781 + 2529 ], "game_version": [ - 1596 + 1345 ], "id": [ - 2781 + 2529 ], "results": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "validated_at": [ - 2781 + 2529 ], "__typename": [ 78 @@ -25608,7 +21903,7 @@ export default { }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -25616,7 +21911,7 @@ export default { }, "gamedata_signature_validations_prepend_input": { "results": [ - 1652 + 1400 ], "__typename": [ 78 @@ -25631,16 +21926,16 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "results": [ - 1652 + 1400 ], "status": [ 78 ], "validated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -25672,7 +21967,7 @@ export default { }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1637 + 1386 ], "ordering": [ 236 @@ -25689,16 +21984,16 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "results": [ - 1652 + 1400 ], "status": [ 78 ], "validated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -25715,28 +22010,28 @@ export default { "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1615 + 1364 ], "_delete_at_path": [ - 1619 + 1368 ], "_delete_elem": [ - 1620 + 1369 ], "_delete_key": [ - 1621 + 1370 ], "_inc": [ - 1622 + 1371 ], "_prepend": [ - 1630 + 1379 ], "_set": [ - 1632 + 1381 ], "where": [ - 1617 + 1366 ], "__typename": [ 78 @@ -25766,23 +22061,6 @@ export default { 78 ] }, - "get_event_leaderboard_args": { - "_category": [ - 78 - ], - "_event_id": [ - 4762 - ], - "_match_type": [ - 78 - ], - "_min_rounds": [ - 38 - ], - "__typename": [ - 78 - ] - }, "get_leaderboard_args": { "_category": [ 78 @@ -25797,7 +22075,7 @@ export default { 78 ], "_season_id": [ - 4762 + 4621 ], "_window_days": [ 38 @@ -25811,7 +22089,7 @@ export default { 78 ], "_league_season_id": [ - 4762 + 4621 ], "_role": [ 78 @@ -25834,7 +22112,7 @@ export default { 78 ], "_season_id": [ - 4762 + 4621 ], "_window_days": [ 38 @@ -25846,31 +22124,31 @@ export default { "inet": {}, "inet_comparison_exp": { "_eq": [ - 1648 + 1396 ], "_gt": [ - 1648 + 1396 ], "_gte": [ - 1648 + 1396 ], "_in": [ - 1648 + 1396 ], "_is_null": [ 3 ], "_lt": [ - 1648 + 1396 ], "_lte": [ - 1648 + 1396 ], "_neq": [ - 1648 + 1396 ], "_nin": [ - 1648 + 1396 ], "__typename": [ 78 @@ -25879,31 +22157,31 @@ export default { "json": {}, "json_comparison_exp": { "_eq": [ - 1650 + 1398 ], "_gt": [ - 1650 + 1398 ], "_gte": [ - 1650 + 1398 ], "_in": [ - 1650 + 1398 ], "_is_null": [ 3 ], "_lt": [ - 1650 + 1398 ], "_lte": [ - 1650 + 1398 ], "_neq": [ - 1650 + 1398 ], "_nin": [ - 1650 + 1398 ], "__typename": [ 78 @@ -25920,22 +22198,22 @@ export default { }, "jsonb_comparison_exp": { "_cast": [ - 1653 + 1401 ], "_contained_in": [ - 1652 + 1400 ], "_contains": [ - 1652 + 1400 ], "_eq": [ - 1652 + 1400 ], "_gt": [ - 1652 + 1400 ], "_gte": [ - 1652 + 1400 ], "_has_key": [ 78 @@ -25947,22 +22225,22 @@ export default { 78 ], "_in": [ - 1652 + 1400 ], "_is_null": [ 3 ], "_lt": [ - 1652 + 1400 ], "_lte": [ - 1652 + 1400 ], "_neq": [ - 1652 + 1400 ], "_nin": [ - 1652 + 1400 ], "__typename": [ 78 @@ -25985,13 +22263,13 @@ export default { 78 ], "secondary_value": [ - 1499 + 1248 ], "tertiary_value": [ - 1499 + 1248 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -25999,10 +22277,10 @@ export default { }, "leaderboard_entries_aggregate": { "aggregate": [ - 1657 + 1405 ], "nodes": [ - 1655 + 1403 ], "__typename": [ 78 @@ -26010,13 +22288,13 @@ export default { }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1658 + 1406 ], "count": [ 38, { "columns": [ - 1666, + 1414, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -26025,31 +22303,31 @@ export default { } ], "max": [ - 1662 + 1410 ], "min": [ - 1663 + 1411 ], "stddev": [ - 1668 + 1416 ], "stddev_pop": [ - 1669 + 1417 ], "stddev_samp": [ - 1670 + 1418 ], "sum": [ - 1673 + 1421 ], "var_pop": [ - 1675 + 1423 ], "var_samp": [ - 1676 + 1424 ], "variance": [ - 1677 + 1425 ], "__typename": [ 78 @@ -26074,13 +22352,13 @@ export default { }, "leaderboard_entries_bool_exp": { "_and": [ - 1659 + 1407 ], "_not": [ - 1659 + 1407 ], "_or": [ - 1659 + 1407 ], "matches_played": [ 39 @@ -26098,13 +22376,13 @@ export default { 80 ], "secondary_value": [ - 1500 + 1249 ], "tertiary_value": [ - 1500 + 1249 ], "value": [ - 1500 + 1249 ], "__typename": [ 78 @@ -26115,13 +22393,13 @@ export default { 38 ], "secondary_value": [ - 1499 + 1248 ], "tertiary_value": [ - 1499 + 1248 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -26144,13 +22422,13 @@ export default { 78 ], "secondary_value": [ - 1499 + 1248 ], "tertiary_value": [ - 1499 + 1248 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -26173,13 +22451,13 @@ export default { 78 ], "secondary_value": [ - 1499 + 1248 ], "tertiary_value": [ - 1499 + 1248 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -26202,13 +22480,13 @@ export default { 78 ], "secondary_value": [ - 1499 + 1248 ], "tertiary_value": [ - 1499 + 1248 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -26219,7 +22497,7 @@ export default { 38 ], "returning": [ - 1655 + 1403 ], "__typename": [ 78 @@ -26227,28 +22505,28 @@ export default { }, "leaderboard_entries_order_by": { "matches_played": [ - 2781 + 2529 ], "player_avatar_url": [ - 2781 + 2529 ], "player_country": [ - 2781 + 2529 ], "player_name": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "secondary_value": [ - 2781 + 2529 ], "tertiary_value": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -26272,13 +22550,13 @@ export default { 78 ], "secondary_value": [ - 1499 + 1248 ], "tertiary_value": [ - 1499 + 1248 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -26337,7 +22615,7 @@ export default { }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1672 + 1420 ], "ordering": [ 236 @@ -26363,13 +22641,13 @@ export default { 78 ], "secondary_value": [ - 1499 + 1248 ], "tertiary_value": [ - 1499 + 1248 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -26380,13 +22658,13 @@ export default { 38 ], "secondary_value": [ - 1499 + 1248 ], "tertiary_value": [ - 1499 + 1248 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -26394,13 +22672,13 @@ export default { }, "leaderboard_entries_updates": { "_inc": [ - 1660 + 1408 ], "_set": [ - 1667 + 1415 ], "where": [ - 1659 + 1407 ], "__typename": [ 78 @@ -26459,10 +22737,10 @@ export default { }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 4762 + 4621 ], "_winning_tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -26470,19 +22748,19 @@ export default { }, "league_divisions": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "name": [ 78 ], "season_divisions": [ - 1830, + 1578, { "distinct_on": [ - 1849, + 1597, "[league_season_divisions_select_column!]" ], "limit": [ @@ -26492,19 +22770,19 @@ export default { 38 ], "order_by": [ - 1847, + 1595, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1585 ] } ], "season_divisions_aggregate": [ - 1831, + 1579, { "distinct_on": [ - 1849, + 1597, "[league_season_divisions_select_column!]" ], "limit": [ @@ -26514,16 +22792,16 @@ export default { 38 ], "order_by": [ - 1847, + 1595, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1585 ] } ], "tier": [ - 3917 + 3665 ], "__typename": [ 78 @@ -26531,10 +22809,10 @@ export default { }, "league_divisions_aggregate": { "aggregate": [ - 1681 + 1429 ], "nodes": [ - 1679 + 1427 ], "__typename": [ 78 @@ -26542,13 +22820,13 @@ export default { }, "league_divisions_aggregate_fields": { "avg": [ - 1682 + 1430 ], "count": [ 38, { "columns": [ - 1694, + 1442, "[league_divisions_select_column!]" ], "distinct": [ @@ -26557,31 +22835,31 @@ export default { } ], "max": [ - 1687 + 1435 ], "min": [ - 1688 + 1436 ], "stddev": [ - 1696 + 1444 ], "stddev_pop": [ - 1697 + 1445 ], "stddev_samp": [ - 1698 + 1446 ], "sum": [ - 1701 + 1449 ], "var_pop": [ - 1704 + 1452 ], "var_samp": [ - 1705 + 1453 ], "variance": [ - 1706 + 1454 ], "__typename": [ 78 @@ -26597,31 +22875,31 @@ export default { }, "league_divisions_bool_exp": { "_and": [ - 1683 + 1431 ], "_not": [ - 1683 + 1431 ], "_or": [ - 1683 + 1431 ], "created_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "name": [ 80 ], "season_divisions": [ - 1837 + 1585 ], "season_divisions_aggregate": [ - 1832 + 1580 ], "tier": [ - 3918 + 3666 ], "__typename": [ 78 @@ -26630,7 +22908,7 @@ export default { "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 3917 + 3665 ], "__typename": [ 78 @@ -26638,19 +22916,19 @@ export default { }, "league_divisions_insert_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "name": [ 78 ], "season_divisions": [ - 1836 + 1584 ], "tier": [ - 3917 + 3665 ], "__typename": [ 78 @@ -26658,16 +22936,16 @@ export default { }, "league_divisions_max_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "name": [ 78 ], "tier": [ - 3917 + 3665 ], "__typename": [ 78 @@ -26675,16 +22953,16 @@ export default { }, "league_divisions_min_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "name": [ 78 ], "tier": [ - 3917 + 3665 ], "__typename": [ 78 @@ -26695,7 +22973,7 @@ export default { 38 ], "returning": [ - 1679 + 1427 ], "__typename": [ 78 @@ -26703,10 +22981,10 @@ export default { }, "league_divisions_obj_rel_insert_input": { "data": [ - 1686 + 1434 ], "on_conflict": [ - 1691 + 1439 ], "__typename": [ 78 @@ -26714,13 +22992,13 @@ export default { }, "league_divisions_on_conflict": { "constraint": [ - 1684 + 1432 ], "update_columns": [ - 1702 + 1450 ], "where": [ - 1683 + 1431 ], "__typename": [ 78 @@ -26728,19 +23006,19 @@ export default { }, "league_divisions_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "name": [ - 2781 + 2529 ], "season_divisions_aggregate": [ - 1835 + 1583 ], "tier": [ - 2781 + 2529 ], "__typename": [ 78 @@ -26748,7 +23026,7 @@ export default { }, "league_divisions_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -26757,16 +23035,16 @@ export default { "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "name": [ 78 ], "tier": [ - 3917 + 3665 ], "__typename": [ 78 @@ -26798,7 +23076,7 @@ export default { }, "league_divisions_stream_cursor_input": { "initial_value": [ - 1700 + 1448 ], "ordering": [ 236 @@ -26809,16 +23087,16 @@ export default { }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "name": [ 78 ], "tier": [ - 3917 + 3665 ], "__typename": [ 78 @@ -26826,7 +23104,7 @@ export default { }, "league_divisions_sum_fields": { "tier": [ - 3917 + 3665 ], "__typename": [ 78 @@ -26835,13 +23113,13 @@ export default { "league_divisions_update_column": {}, "league_divisions_updates": { "_inc": [ - 1685 + 1433 ], "_set": [ - 1695 + 1443 ], "where": [ - 1683 + 1431 ], "__typename": [ 78 @@ -26873,25 +23151,25 @@ export default { }, "league_match_weeks": { "closes_at": [ - 4324 + 4076 ], "created_at": [ - 4324 + 4076 ], "default_match_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "opens_at": [ - 4324 + 4076 ], "season": [ - 1855 + 1603 ], "week_number": [ 38 @@ -26902,10 +23180,10 @@ export default { }, "league_match_weeks_aggregate": { "aggregate": [ - 1711 + 1459 ], "nodes": [ - 1707 + 1455 ], "__typename": [ 78 @@ -26913,7 +23191,7 @@ export default { }, "league_match_weeks_aggregate_bool_exp": { "count": [ - 1710 + 1458 ], "__typename": [ 78 @@ -26921,13 +23199,13 @@ export default { }, "league_match_weeks_aggregate_bool_exp_count": { "arguments": [ - 1728 + 1476 ], "distinct": [ 3 ], "filter": [ - 1716 + 1464 ], "predicate": [ 39 @@ -26938,13 +23216,13 @@ export default { }, "league_match_weeks_aggregate_fields": { "avg": [ - 1714 + 1462 ], "count": [ 38, { "columns": [ - 1728, + 1476, "[league_match_weeks_select_column!]" ], "distinct": [ @@ -26953,31 +23231,31 @@ export default { } ], "max": [ - 1720 + 1468 ], "min": [ - 1722 + 1470 ], "stddev": [ - 1730 + 1478 ], "stddev_pop": [ - 1732 + 1480 ], "stddev_samp": [ - 1734 + 1482 ], "sum": [ - 1738 + 1486 ], "var_pop": [ - 1742 + 1490 ], "var_samp": [ - 1744 + 1492 ], "variance": [ - 1746 + 1494 ], "__typename": [ 78 @@ -26985,37 +23263,37 @@ export default { }, "league_match_weeks_aggregate_order_by": { "avg": [ - 1715 + 1463 ], "count": [ - 2781 + 2529 ], "max": [ - 1721 + 1469 ], "min": [ - 1723 + 1471 ], "stddev": [ - 1731 + 1479 ], "stddev_pop": [ - 1733 + 1481 ], "stddev_samp": [ - 1735 + 1483 ], "sum": [ - 1739 + 1487 ], "var_pop": [ - 1743 + 1491 ], "var_samp": [ - 1745 + 1493 ], "variance": [ - 1747 + 1495 ], "__typename": [ 78 @@ -27023,10 +23301,10 @@ export default { }, "league_match_weeks_arr_rel_insert_input": { "data": [ - 1719 + 1467 ], "on_conflict": [ - 1725 + 1473 ], "__typename": [ 78 @@ -27042,7 +23320,7 @@ export default { }, "league_match_weeks_avg_order_by": { "week_number": [ - 2781 + 2529 ], "__typename": [ 78 @@ -27050,34 +23328,34 @@ export default { }, "league_match_weeks_bool_exp": { "_and": [ - 1716 + 1464 ], "_not": [ - 1716 + 1464 ], "_or": [ - 1716 + 1464 ], "closes_at": [ - 4325 + 4077 ], "created_at": [ - 4325 + 4077 ], "default_match_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "league_season_id": [ - 4764 + 4623 ], "opens_at": [ - 4325 + 4077 ], "season": [ - 1860 + 1608 ], "week_number": [ 39 @@ -27097,25 +23375,25 @@ export default { }, "league_match_weeks_insert_input": { "closes_at": [ - 4324 + 4076 ], "created_at": [ - 4324 + 4076 ], "default_match_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "opens_at": [ - 4324 + 4076 ], "season": [ - 1870 + 1618 ], "week_number": [ 38 @@ -27126,22 +23404,22 @@ export default { }, "league_match_weeks_max_fields": { "closes_at": [ - 4324 + 4076 ], "created_at": [ - 4324 + 4076 ], "default_match_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "opens_at": [ - 4324 + 4076 ], "week_number": [ 38 @@ -27152,25 +23430,25 @@ export default { }, "league_match_weeks_max_order_by": { "closes_at": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "default_match_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "opens_at": [ - 2781 + 2529 ], "week_number": [ - 2781 + 2529 ], "__typename": [ 78 @@ -27178,22 +23456,22 @@ export default { }, "league_match_weeks_min_fields": { "closes_at": [ - 4324 + 4076 ], "created_at": [ - 4324 + 4076 ], "default_match_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "opens_at": [ - 4324 + 4076 ], "week_number": [ 38 @@ -27204,25 +23482,25 @@ export default { }, "league_match_weeks_min_order_by": { "closes_at": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "default_match_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "opens_at": [ - 2781 + 2529 ], "week_number": [ - 2781 + 2529 ], "__typename": [ 78 @@ -27233,7 +23511,7 @@ export default { 38 ], "returning": [ - 1707 + 1455 ], "__typename": [ 78 @@ -27241,13 +23519,13 @@ export default { }, "league_match_weeks_on_conflict": { "constraint": [ - 1717 + 1465 ], "update_columns": [ - 1740 + 1488 ], "where": [ - 1716 + 1464 ], "__typename": [ 78 @@ -27255,28 +23533,28 @@ export default { }, "league_match_weeks_order_by": { "closes_at": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "default_match_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "opens_at": [ - 2781 + 2529 ], "season": [ - 1872 + 1620 ], "week_number": [ - 2781 + 2529 ], "__typename": [ 78 @@ -27284,7 +23562,7 @@ export default { }, "league_match_weeks_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -27293,22 +23571,22 @@ export default { "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4324 + 4076 ], "created_at": [ - 4324 + 4076 ], "default_match_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "opens_at": [ - 4324 + 4076 ], "week_number": [ 38 @@ -27327,7 +23605,7 @@ export default { }, "league_match_weeks_stddev_order_by": { "week_number": [ - 2781 + 2529 ], "__typename": [ 78 @@ -27343,7 +23621,7 @@ export default { }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 2781 + 2529 ], "__typename": [ 78 @@ -27359,7 +23637,7 @@ export default { }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 2781 + 2529 ], "__typename": [ 78 @@ -27367,7 +23645,7 @@ export default { }, "league_match_weeks_stream_cursor_input": { "initial_value": [ - 1737 + 1485 ], "ordering": [ 236 @@ -27378,22 +23656,22 @@ export default { }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4324 + 4076 ], "created_at": [ - 4324 + 4076 ], "default_match_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "opens_at": [ - 4324 + 4076 ], "week_number": [ 38 @@ -27412,7 +23690,7 @@ export default { }, "league_match_weeks_sum_order_by": { "week_number": [ - 2781 + 2529 ], "__typename": [ 78 @@ -27421,13 +23699,13 @@ export default { "league_match_weeks_update_column": {}, "league_match_weeks_updates": { "_inc": [ - 1718 + 1466 ], "_set": [ - 1729 + 1477 ], "where": [ - 1716 + 1464 ], "__typename": [ 78 @@ -27443,7 +23721,7 @@ export default { }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 2781 + 2529 ], "__typename": [ 78 @@ -27459,7 +23737,7 @@ export default { }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 2781 + 2529 ], "__typename": [ 78 @@ -27475,7 +23753,7 @@ export default { }, "league_match_weeks_variance_order_by": { "week_number": [ - 2781 + 2529 ], "__typename": [ 78 @@ -27483,40 +23761,40 @@ export default { }, "league_relegation_playoffs": { "created_at": [ - 4324 + 4076 ], "higher_division": [ - 1679 + 1427 ], "higher_division_id": [ - 4762 + 4621 ], "higher_slots": [ 38 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "lower_division": [ - 1679 + 1427 ], "lower_division_id": [ - 4762 + 4621 ], "resolved_at": [ - 4324 + 4076 ], "season": [ - 1855 + 1603 ], "tournament": [ - 4716 + 4557 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -27524,10 +23802,10 @@ export default { }, "league_relegation_playoffs_aggregate": { "aggregate": [ - 1752 + 1500 ], "nodes": [ - 1748 + 1496 ], "__typename": [ 78 @@ -27535,7 +23813,7 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp": { "count": [ - 1751 + 1499 ], "__typename": [ 78 @@ -27543,13 +23821,13 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp_count": { "arguments": [ - 1769 + 1517 ], "distinct": [ 3 ], "filter": [ - 1757 + 1505 ], "predicate": [ 39 @@ -27560,13 +23838,13 @@ export default { }, "league_relegation_playoffs_aggregate_fields": { "avg": [ - 1755 + 1503 ], "count": [ 38, { "columns": [ - 1769, + 1517, "[league_relegation_playoffs_select_column!]" ], "distinct": [ @@ -27575,31 +23853,31 @@ export default { } ], "max": [ - 1761 + 1509 ], "min": [ - 1763 + 1511 ], "stddev": [ - 1771 + 1519 ], "stddev_pop": [ - 1773 + 1521 ], "stddev_samp": [ - 1775 + 1523 ], "sum": [ - 1779 + 1527 ], "var_pop": [ - 1783 + 1531 ], "var_samp": [ - 1785 + 1533 ], "variance": [ - 1787 + 1535 ], "__typename": [ 78 @@ -27607,37 +23885,37 @@ export default { }, "league_relegation_playoffs_aggregate_order_by": { "avg": [ - 1756 + 1504 ], "count": [ - 2781 + 2529 ], "max": [ - 1762 + 1510 ], "min": [ - 1764 + 1512 ], "stddev": [ - 1772 + 1520 ], "stddev_pop": [ - 1774 + 1522 ], "stddev_samp": [ - 1776 + 1524 ], "sum": [ - 1780 + 1528 ], "var_pop": [ - 1784 + 1532 ], "var_samp": [ - 1786 + 1534 ], "variance": [ - 1788 + 1536 ], "__typename": [ 78 @@ -27645,10 +23923,10 @@ export default { }, "league_relegation_playoffs_arr_rel_insert_input": { "data": [ - 1760 + 1508 ], "on_conflict": [ - 1766 + 1514 ], "__typename": [ 78 @@ -27664,7 +23942,7 @@ export default { }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 2781 + 2529 ], "__typename": [ 78 @@ -27672,49 +23950,49 @@ export default { }, "league_relegation_playoffs_bool_exp": { "_and": [ - 1757 + 1505 ], "_not": [ - 1757 + 1505 ], "_or": [ - 1757 + 1505 ], "created_at": [ - 4325 + 4077 ], "higher_division": [ - 1683 + 1431 ], "higher_division_id": [ - 4764 + 4623 ], "higher_slots": [ 39 ], "id": [ - 4764 + 4623 ], "league_season_id": [ - 4764 + 4623 ], "lower_division": [ - 1683 + 1431 ], "lower_division_id": [ - 4764 + 4623 ], "resolved_at": [ - 4325 + 4077 ], "season": [ - 1860 + 1608 ], "tournament": [ - 4727 + 4578 ], "tournament_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -27731,40 +24009,40 @@ export default { }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4324 + 4076 ], "higher_division": [ - 1690 + 1438 ], "higher_division_id": [ - 4762 + 4621 ], "higher_slots": [ 38 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "lower_division": [ - 1690 + 1438 ], "lower_division_id": [ - 4762 + 4621 ], "resolved_at": [ - 4324 + 4076 ], "season": [ - 1870 + 1618 ], "tournament": [ - 4736 + 4587 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -27772,28 +24050,28 @@ export default { }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4324 + 4076 ], "higher_division_id": [ - 4762 + 4621 ], "higher_slots": [ 38 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "lower_division_id": [ - 4762 + 4621 ], "resolved_at": [ - 4324 + 4076 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -27801,28 +24079,28 @@ export default { }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 2781 + 2529 ], "higher_division_id": [ - 2781 + 2529 ], "higher_slots": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "lower_division_id": [ - 2781 + 2529 ], "resolved_at": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -27830,28 +24108,28 @@ export default { }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4324 + 4076 ], "higher_division_id": [ - 4762 + 4621 ], "higher_slots": [ 38 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "lower_division_id": [ - 4762 + 4621 ], "resolved_at": [ - 4324 + 4076 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -27859,28 +24137,28 @@ export default { }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 2781 + 2529 ], "higher_division_id": [ - 2781 + 2529 ], "higher_slots": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "lower_division_id": [ - 2781 + 2529 ], "resolved_at": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -27891,7 +24169,7 @@ export default { 38 ], "returning": [ - 1748 + 1496 ], "__typename": [ 78 @@ -27899,13 +24177,13 @@ export default { }, "league_relegation_playoffs_on_conflict": { "constraint": [ - 1758 + 1506 ], "update_columns": [ - 1781 + 1529 ], "where": [ - 1757 + 1505 ], "__typename": [ 78 @@ -27913,40 +24191,40 @@ export default { }, "league_relegation_playoffs_order_by": { "created_at": [ - 2781 + 2529 ], "higher_division": [ - 1692 + 1440 ], "higher_division_id": [ - 2781 + 2529 ], "higher_slots": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "lower_division": [ - 1692 + 1440 ], "lower_division_id": [ - 2781 + 2529 ], "resolved_at": [ - 2781 + 2529 ], "season": [ - 1872 + 1620 ], "tournament": [ - 4738 + 4589 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -27954,7 +24232,7 @@ export default { }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -27963,28 +24241,28 @@ export default { "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4324 + 4076 ], "higher_division_id": [ - 4762 + 4621 ], "higher_slots": [ 38 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "lower_division_id": [ - 4762 + 4621 ], "resolved_at": [ - 4324 + 4076 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -28000,7 +24278,7 @@ export default { }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28016,7 +24294,7 @@ export default { }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28032,7 +24310,7 @@ export default { }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28040,7 +24318,7 @@ export default { }, "league_relegation_playoffs_stream_cursor_input": { "initial_value": [ - 1778 + 1526 ], "ordering": [ 236 @@ -28051,28 +24329,28 @@ export default { }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "higher_division_id": [ - 4762 + 4621 ], "higher_slots": [ 38 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "lower_division_id": [ - 4762 + 4621 ], "resolved_at": [ - 4324 + 4076 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -28088,7 +24366,7 @@ export default { }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28097,13 +24375,13 @@ export default { "league_relegation_playoffs_update_column": {}, "league_relegation_playoffs_updates": { "_inc": [ - 1759 + 1507 ], "_set": [ - 1770 + 1518 ], "where": [ - 1757 + 1505 ], "__typename": [ 78 @@ -28119,7 +24397,7 @@ export default { }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28135,7 +24413,7 @@ export default { }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28151,7 +24429,7 @@ export default { }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28159,46 +24437,46 @@ export default { }, "league_scheduling_proposals": { "bracket": [ - 4326 + 4078 ], "created_at": [ - 4324 + 4076 ], "e_proposal_status": [ - 648 + 635 ], "id": [ - 4762 + 4621 ], "message": [ 78 ], "proposed_by": [ - 3739 + 3487 ], "proposed_by_league_team_season_id": [ - 4762 + 4621 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4324 + 4076 ], "responded_by": [ - 3739 + 3487 ], "responded_by_steam_id": [ 180 ], "status": [ - 653 + 640 ], "team_season": [ - 1970 + 1718 ], "tournament_bracket_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -28206,10 +24484,10 @@ export default { }, "league_scheduling_proposals_aggregate": { "aggregate": [ - 1793 + 1541 ], "nodes": [ - 1789 + 1537 ], "__typename": [ 78 @@ -28217,7 +24495,7 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp": { "count": [ - 1792 + 1540 ], "__typename": [ 78 @@ -28225,13 +24503,13 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp_count": { "arguments": [ - 1810 + 1558 ], "distinct": [ 3 ], "filter": [ - 1798 + 1546 ], "predicate": [ 39 @@ -28242,13 +24520,13 @@ export default { }, "league_scheduling_proposals_aggregate_fields": { "avg": [ - 1796 + 1544 ], "count": [ 38, { "columns": [ - 1810, + 1558, "[league_scheduling_proposals_select_column!]" ], "distinct": [ @@ -28257,31 +24535,31 @@ export default { } ], "max": [ - 1802 + 1550 ], "min": [ - 1804 + 1552 ], "stddev": [ - 1812 + 1560 ], "stddev_pop": [ - 1814 + 1562 ], "stddev_samp": [ - 1816 + 1564 ], "sum": [ - 1820 + 1568 ], "var_pop": [ - 1824 + 1572 ], "var_samp": [ - 1826 + 1574 ], "variance": [ - 1828 + 1576 ], "__typename": [ 78 @@ -28289,37 +24567,37 @@ export default { }, "league_scheduling_proposals_aggregate_order_by": { "avg": [ - 1797 + 1545 ], "count": [ - 2781 + 2529 ], "max": [ - 1803 + 1551 ], "min": [ - 1805 + 1553 ], "stddev": [ - 1813 + 1561 ], "stddev_pop": [ - 1815 + 1563 ], "stddev_samp": [ - 1817 + 1565 ], "sum": [ - 1821 + 1569 ], "var_pop": [ - 1825 + 1573 ], "var_samp": [ - 1827 + 1575 ], "variance": [ - 1829 + 1577 ], "__typename": [ 78 @@ -28327,10 +24605,10 @@ export default { }, "league_scheduling_proposals_arr_rel_insert_input": { "data": [ - 1801 + 1549 ], "on_conflict": [ - 1807 + 1555 ], "__typename": [ 78 @@ -28349,10 +24627,10 @@ export default { }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "responded_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28360,55 +24638,55 @@ export default { }, "league_scheduling_proposals_bool_exp": { "_and": [ - 1798 + 1546 ], "_not": [ - 1798 + 1546 ], "_or": [ - 1798 + 1546 ], "bracket": [ - 4337 + 4089 ], "created_at": [ - 4325 + 4077 ], "e_proposal_status": [ - 651 + 638 ], "id": [ - 4764 + 4623 ], "message": [ 80 ], "proposed_by": [ - 3743 + 3491 ], "proposed_by_league_team_season_id": [ - 4764 + 4623 ], "proposed_by_steam_id": [ 182 ], "proposed_time": [ - 4325 + 4077 ], "responded_by": [ - 3743 + 3491 ], "responded_by_steam_id": [ 182 ], "status": [ - 654 + 641 ], "team_season": [ - 1979 + 1727 ], "tournament_bracket_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -28428,46 +24706,46 @@ export default { }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4346 + 4098 ], "created_at": [ - 4324 + 4076 ], "e_proposal_status": [ - 659 + 646 ], "id": [ - 4762 + 4621 ], "message": [ 78 ], "proposed_by": [ - 3750 + 3498 ], "proposed_by_league_team_season_id": [ - 4762 + 4621 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4324 + 4076 ], "responded_by": [ - 3750 + 3498 ], "responded_by_steam_id": [ 180 ], "status": [ - 653 + 640 ], "team_season": [ - 1988 + 1736 ], "tournament_bracket_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -28475,28 +24753,28 @@ export default { }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4762 + 4621 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4324 + 4076 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -28504,28 +24782,28 @@ export default { }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "message": [ - 2781 + 2529 ], "proposed_by_league_team_season_id": [ - 2781 + 2529 ], "proposed_by_steam_id": [ - 2781 + 2529 ], "proposed_time": [ - 2781 + 2529 ], "responded_by_steam_id": [ - 2781 + 2529 ], "tournament_bracket_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28533,28 +24811,28 @@ export default { }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4762 + 4621 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4324 + 4076 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -28562,28 +24840,28 @@ export default { }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "message": [ - 2781 + 2529 ], "proposed_by_league_team_season_id": [ - 2781 + 2529 ], "proposed_by_steam_id": [ - 2781 + 2529 ], "proposed_time": [ - 2781 + 2529 ], "responded_by_steam_id": [ - 2781 + 2529 ], "tournament_bracket_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28594,7 +24872,7 @@ export default { 38 ], "returning": [ - 1789 + 1537 ], "__typename": [ 78 @@ -28602,13 +24880,13 @@ export default { }, "league_scheduling_proposals_on_conflict": { "constraint": [ - 1799 + 1547 ], "update_columns": [ - 1822 + 1570 ], "where": [ - 1798 + 1546 ], "__typename": [ 78 @@ -28616,46 +24894,46 @@ export default { }, "league_scheduling_proposals_order_by": { "bracket": [ - 4348 + 4100 ], "created_at": [ - 2781 + 2529 ], "e_proposal_status": [ - 661 + 648 ], "id": [ - 2781 + 2529 ], "message": [ - 2781 + 2529 ], "proposed_by": [ - 3752 + 3500 ], "proposed_by_league_team_season_id": [ - 2781 + 2529 ], "proposed_by_steam_id": [ - 2781 + 2529 ], "proposed_time": [ - 2781 + 2529 ], "responded_by": [ - 3752 + 3500 ], "responded_by_steam_id": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "team_season": [ - 1990 + 1738 ], "tournament_bracket_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28663,7 +24941,7 @@ export default { }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -28672,31 +24950,31 @@ export default { "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4762 + 4621 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4324 + 4076 ], "responded_by_steam_id": [ 180 ], "status": [ - 653 + 640 ], "tournament_bracket_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -28715,10 +24993,10 @@ export default { }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "responded_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28737,10 +25015,10 @@ export default { }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "responded_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28759,10 +25037,10 @@ export default { }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "responded_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28770,7 +25048,7 @@ export default { }, "league_scheduling_proposals_stream_cursor_input": { "initial_value": [ - 1819 + 1567 ], "ordering": [ 236 @@ -28781,31 +25059,31 @@ export default { }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4762 + 4621 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4324 + 4076 ], "responded_by_steam_id": [ 180 ], "status": [ - 653 + 640 ], "tournament_bracket_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -28824,10 +25102,10 @@ export default { }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "responded_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28836,13 +25114,13 @@ export default { "league_scheduling_proposals_update_column": {}, "league_scheduling_proposals_updates": { "_inc": [ - 1800 + 1548 ], "_set": [ - 1811 + 1559 ], "where": [ - 1798 + 1546 ], "__typename": [ 78 @@ -28861,10 +25139,10 @@ export default { }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "responded_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28883,10 +25161,10 @@ export default { }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "responded_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28905,10 +25183,10 @@ export default { }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "responded_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -28916,28 +25194,28 @@ export default { }, "league_season_divisions": { "created_at": [ - 4324 + 4076 ], "division": [ - 1679 + 1427 ], "id": [ - 4762 + 4621 ], "league_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "season": [ - 1855 + 1603 ], "standings": [ - 4834, + 4642, { "distinct_on": [ - 4850, + 4658, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -28947,19 +25225,19 @@ export default { 38 ], "order_by": [ - 4849, + 4657, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 4651 ] } ], "standings_aggregate": [ - 4835, + 4643, { "distinct_on": [ - 4850, + 4658, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -28969,19 +25247,19 @@ export default { 38 ], "order_by": [ - 4849, + 4657, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 4651 ] } ], "tournament": [ - 4716 + 4557 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -28989,10 +25267,10 @@ export default { }, "league_season_divisions_aggregate": { "aggregate": [ - 1834 + 1582 ], "nodes": [ - 1830 + 1578 ], "__typename": [ 78 @@ -29000,7 +25278,7 @@ export default { }, "league_season_divisions_aggregate_bool_exp": { "count": [ - 1833 + 1581 ], "__typename": [ 78 @@ -29008,13 +25286,13 @@ export default { }, "league_season_divisions_aggregate_bool_exp_count": { "arguments": [ - 1849 + 1597 ], "distinct": [ 3 ], "filter": [ - 1837 + 1585 ], "predicate": [ 39 @@ -29028,7 +25306,7 @@ export default { 38, { "columns": [ - 1849, + 1597, "[league_season_divisions_select_column!]" ], "distinct": [ @@ -29037,10 +25315,10 @@ export default { } ], "max": [ - 1840 + 1588 ], "min": [ - 1842 + 1590 ], "__typename": [ 78 @@ -29048,13 +25326,13 @@ export default { }, "league_season_divisions_aggregate_order_by": { "count": [ - 2781 + 2529 ], "max": [ - 1841 + 1589 ], "min": [ - 1843 + 1591 ], "__typename": [ 78 @@ -29062,10 +25340,10 @@ export default { }, "league_season_divisions_arr_rel_insert_input": { "data": [ - 1839 + 1587 ], "on_conflict": [ - 1846 + 1594 ], "__typename": [ 78 @@ -29073,43 +25351,43 @@ export default { }, "league_season_divisions_bool_exp": { "_and": [ - 1837 + 1585 ], "_not": [ - 1837 + 1585 ], "_or": [ - 1837 + 1585 ], "created_at": [ - 4325 + 4077 ], "division": [ - 1683 + 1431 ], "id": [ - 4764 + 4623 ], "league_division_id": [ - 4764 + 4623 ], "league_season_id": [ - 4764 + 4623 ], "season": [ - 1860 + 1608 ], "standings": [ - 4843 + 4651 ], "standings_aggregate": [ - 4836 + 4644 ], "tournament": [ - 4727 + 4578 ], "tournament_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -29118,31 +25396,31 @@ export default { "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4324 + 4076 ], "division": [ - 1690 + 1438 ], "id": [ - 4762 + 4621 ], "league_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "season": [ - 1870 + 1618 ], "standings": [ - 4840 + 4648 ], "tournament": [ - 4736 + 4587 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -29150,19 +25428,19 @@ export default { }, "league_season_divisions_max_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "league_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -29170,19 +25448,19 @@ export default { }, "league_season_divisions_max_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "league_division_id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -29190,19 +25468,19 @@ export default { }, "league_season_divisions_min_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "league_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -29210,19 +25488,19 @@ export default { }, "league_season_divisions_min_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "league_division_id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -29233,7 +25511,7 @@ export default { 38 ], "returning": [ - 1830 + 1578 ], "__typename": [ 78 @@ -29241,10 +25519,10 @@ export default { }, "league_season_divisions_obj_rel_insert_input": { "data": [ - 1839 + 1587 ], "on_conflict": [ - 1846 + 1594 ], "__typename": [ 78 @@ -29252,13 +25530,13 @@ export default { }, "league_season_divisions_on_conflict": { "constraint": [ - 1838 + 1586 ], "update_columns": [ - 1853 + 1601 ], "where": [ - 1837 + 1585 ], "__typename": [ 78 @@ -29266,31 +25544,31 @@ export default { }, "league_season_divisions_order_by": { "created_at": [ - 2781 + 2529 ], "division": [ - 1692 + 1440 ], "id": [ - 2781 + 2529 ], "league_division_id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "season": [ - 1872 + 1620 ], "standings_aggregate": [ - 4839 + 4647 ], "tournament": [ - 4738 + 4589 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -29298,7 +25576,7 @@ export default { }, "league_season_divisions_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -29307,19 +25585,19 @@ export default { "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "league_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -29327,7 +25605,7 @@ export default { }, "league_season_divisions_stream_cursor_input": { "initial_value": [ - 1852 + 1600 ], "ordering": [ 236 @@ -29338,19 +25616,19 @@ export default { }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "league_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -29359,10 +25637,10 @@ export default { "league_season_divisions_update_column": {}, "league_season_divisions_updates": { "_set": [ - 1850 + 1598 ], "where": [ - 1837 + 1585 ], "__typename": [ 78 @@ -29376,7 +25654,7 @@ export default { 3 ], "created_at": [ - 4324 + 4076 ], "created_by_steam_id": [ 180 @@ -29391,13 +25669,13 @@ export default { 38 ], "e_league_season_status": [ - 690 + 677 ], "games_per_week": [ 38 ], "id": [ - 4762 + 4621 ], "is_league_admin": [ 3 @@ -29406,13 +25684,13 @@ export default { 3 ], "match_options_id": [ - 4762 + 4621 ], "match_weeks": [ - 1707, + 1455, { "distinct_on": [ - 1728, + 1476, "[league_match_weeks_select_column!]" ], "limit": [ @@ -29422,19 +25700,19 @@ export default { 38 ], "order_by": [ - 1726, + 1474, "[league_match_weeks_order_by!]" ], "where": [ - 1716 + 1464 ] } ], "match_weeks_aggregate": [ - 1708, + 1456, { "distinct_on": [ - 1728, + 1476, "[league_match_weeks_select_column!]" ], "limit": [ @@ -29444,11 +25722,11 @@ export default { 38 ], "order_by": [ - 1726, + 1474, "[league_match_weeks_order_by!]" ], "where": [ - 1716 + 1464 ] } ], @@ -29462,10 +25740,10 @@ export default { 38 ], "movements": [ - 1888, + 1636, { "distinct_on": [ - 1909, + 1657, "[league_team_movements_select_column!]" ], "limit": [ @@ -29475,19 +25753,19 @@ export default { 38 ], "order_by": [ - 1907, + 1655, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1645 ] } ], "movements_aggregate": [ - 1889, + 1637, { "distinct_on": [ - 1909, + 1657, "[league_team_movements_select_column!]" ], "limit": [ @@ -29497,19 +25775,19 @@ export default { 38 ], "order_by": [ - 1907, + 1655, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1645 ] } ], "my_registration": [ - 1970, + 1718, { "distinct_on": [ - 1992, + 1740, "[league_team_seasons_select_column!]" ], "limit": [ @@ -29519,11 +25797,11 @@ export default { 38 ], "order_by": [ - 1990, + 1738, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 1727 ] } ], @@ -29531,13 +25809,13 @@ export default { 78 ], "options": [ - 2476 + 2224 ], "player_stats": [ - 4867, + 4675, { "distinct_on": [ - 4893, + 4701, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -29547,19 +25825,19 @@ export default { 38 ], "order_by": [ - 4892, + 4700, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4886 + 4694 ] } ], "player_stats_aggregate": [ - 4868, + 4676, { "distinct_on": [ - 4893, + 4701, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -29569,11 +25847,11 @@ export default { 38 ], "order_by": [ - 4892, + 4700, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4886 + 4694 ] } ], @@ -29581,7 +25859,7 @@ export default { 38 ], "playoff_round_best_of": [ - 1652, + 1400, { "path": [ 78 @@ -29592,7 +25870,7 @@ export default { 38 ], "playoff_stage_type": [ - 1143 + 1151 ], "playoff_third_place_match": [ 3 @@ -29601,7 +25879,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1143 + 1151 ], "relegate_count": [ 38 @@ -29610,10 +25888,10 @@ export default { 38 ], "relegation_playoffs": [ - 1748, + 1496, { "distinct_on": [ - 1769, + 1517, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -29623,19 +25901,19 @@ export default { 38 ], "order_by": [ - 1767, + 1515, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1757 + 1505 ] } ], "relegation_playoffs_aggregate": [ - 1749, + 1497, { "distinct_on": [ - 1769, + 1517, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -29645,11 +25923,11 @@ export default { 38 ], "order_by": [ - 1767, + 1515, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1757 + 1505 ] } ], @@ -29657,13 +25935,13 @@ export default { 38 ], "roster_lock_at": [ - 4324 + 4076 ], "season_divisions": [ - 1830, + 1578, { "distinct_on": [ - 1849, + 1597, "[league_season_divisions_select_column!]" ], "limit": [ @@ -29673,19 +25951,19 @@ export default { 38 ], "order_by": [ - 1847, + 1595, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1585 ] } ], "season_divisions_aggregate": [ - 1831, + 1579, { "distinct_on": [ - 1849, + 1597, "[league_season_divisions_select_column!]" ], "limit": [ @@ -29695,11 +25973,11 @@ export default { 38 ], "order_by": [ - 1847, + 1595, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1585 ] } ], @@ -29707,16 +25985,16 @@ export default { 38 ], "signup_closes_at": [ - 4324 + 4076 ], "signup_opens_at": [ - 4324 + 4076 ], "standings": [ - 4834, + 4642, { "distinct_on": [ - 4850, + 4658, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -29726,19 +26004,19 @@ export default { 38 ], "order_by": [ - 4849, + 4657, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 4651 ] } ], "standings_aggregate": [ - 4835, + 4643, { "distinct_on": [ - 4850, + 4658, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -29748,25 +26026,25 @@ export default { 38 ], "order_by": [ - 4849, + 4657, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 4651 ] } ], "starts_at": [ - 4324 + 4076 ], "status": [ - 695 + 682 ], "team_seasons": [ - 1970, + 1718, { "distinct_on": [ - 1992, + 1740, "[league_team_seasons_select_column!]" ], "limit": [ @@ -29776,19 +26054,19 @@ export default { 38 ], "order_by": [ - 1990, + 1738, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 1727 ] } ], "team_seasons_aggregate": [ - 1971, + 1719, { "distinct_on": [ - 1992, + 1740, "[league_team_seasons_select_column!]" ], "limit": [ @@ -29798,16 +26076,16 @@ export default { 38 ], "order_by": [ - 1990, + 1738, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 1727 ] } ], "week_best_of": [ - 1652, + 1400, { "path": [ 78 @@ -29820,10 +26098,10 @@ export default { }, "league_seasons_aggregate": { "aggregate": [ - 1857 + 1605 ], "nodes": [ - 1855 + 1603 ], "__typename": [ 78 @@ -29831,13 +26109,13 @@ export default { }, "league_seasons_aggregate_fields": { "avg": [ - 1859 + 1607 ], "count": [ 38, { "columns": [ - 1875, + 1623, "[league_seasons_select_column!]" ], "distinct": [ @@ -29846,31 +26124,31 @@ export default { } ], "max": [ - 1867 + 1615 ], "min": [ - 1868 + 1616 ], "stddev": [ - 1877 + 1625 ], "stddev_pop": [ - 1878 + 1626 ], "stddev_samp": [ - 1879 + 1627 ], "sum": [ - 1882 + 1630 ], "var_pop": [ - 1885 + 1633 ], "var_samp": [ - 1886 + 1634 ], "variance": [ - 1887 + 1635 ], "__typename": [ 78 @@ -29878,10 +26156,10 @@ export default { }, "league_seasons_append_input": { "playoff_round_best_of": [ - 1652 + 1400 ], "week_best_of": [ - 1652 + 1400 ], "__typename": [ 78 @@ -29939,13 +26217,13 @@ export default { }, "league_seasons_bool_exp": { "_and": [ - 1860 + 1608 ], "_not": [ - 1860 + 1608 ], "_or": [ - 1860 + 1608 ], "auto_regular_season_format": [ 4 @@ -29954,7 +26232,7 @@ export default { 4 ], "created_at": [ - 4325 + 4077 ], "created_by_steam_id": [ 182 @@ -29969,13 +26247,13 @@ export default { 39 ], "e_league_season_status": [ - 693 + 680 ], "games_per_week": [ 39 ], "id": [ - 4764 + 4623 ], "is_league_admin": [ 4 @@ -29984,13 +26262,13 @@ export default { 4 ], "match_options_id": [ - 4764 + 4623 ], "match_weeks": [ - 1716 + 1464 ], "match_weeks_aggregate": [ - 1709 + 1457 ], "match_weeks_count": [ 39 @@ -30002,37 +26280,37 @@ export default { 39 ], "movements": [ - 1897 + 1645 ], "movements_aggregate": [ - 1890 + 1638 ], "my_registration": [ - 1979 + 1727 ], "name": [ 80 ], "options": [ - 2480 + 2228 ], "player_stats": [ - 4886 + 4694 ], "player_stats_aggregate": [ - 4869 + 4677 ], "playoff_best_of": [ 39 ], "playoff_round_best_of": [ - 1654 + 1402 ], "playoff_seats": [ 39 ], "playoff_stage_type": [ - 1144 + 1152 ], "playoff_third_place_match": [ 4 @@ -30041,7 +26319,7 @@ export default { 39 ], "regular_season_stage_type": [ - 1144 + 1152 ], "relegate_count": [ 39 @@ -30050,52 +26328,52 @@ export default { 39 ], "relegation_playoffs": [ - 1757 + 1505 ], "relegation_playoffs_aggregate": [ - 1750 + 1498 ], "relegation_up_count": [ 39 ], "roster_lock_at": [ - 4325 + 4077 ], "season_divisions": [ - 1837 + 1585 ], "season_divisions_aggregate": [ - 1832 + 1580 ], "season_number": [ 39 ], "signup_closes_at": [ - 4325 + 4077 ], "signup_opens_at": [ - 4325 + 4077 ], "standings": [ - 4843 + 4651 ], "standings_aggregate": [ - 4836 + 4644 ], "starts_at": [ - 4325 + 4077 ], "status": [ - 696 + 683 ], "team_seasons": [ - 1979 + 1727 ], "team_seasons_aggregate": [ - 1972 + 1720 ], "week_best_of": [ - 1654 + 1402 ], "__typename": [ 78 @@ -30190,7 +26468,7 @@ export default { 3 ], "created_at": [ - 4324 + 4076 ], "created_by_steam_id": [ 180 @@ -30205,19 +26483,19 @@ export default { 38 ], "e_league_season_status": [ - 701 + 688 ], "games_per_week": [ 38 ], "id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "match_weeks": [ - 1713 + 1461 ], "match_weeks_count": [ 38 @@ -30229,28 +26507,28 @@ export default { 38 ], "movements": [ - 1894 + 1642 ], "name": [ 78 ], "options": [ - 2487 + 2235 ], "player_stats": [ - 4883 + 4691 ], "playoff_best_of": [ 38 ], "playoff_round_best_of": [ - 1652 + 1400 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1143 + 1151 ], "playoff_third_place_match": [ 3 @@ -30259,7 +26537,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1143 + 1151 ], "relegate_count": [ 38 @@ -30268,40 +26546,40 @@ export default { 38 ], "relegation_playoffs": [ - 1754 + 1502 ], "relegation_up_count": [ 38 ], "roster_lock_at": [ - 4324 + 4076 ], "season_divisions": [ - 1836 + 1584 ], "season_number": [ 38 ], "signup_closes_at": [ - 4324 + 4076 ], "signup_opens_at": [ - 4324 + 4076 ], "standings": [ - 4840 + 4648 ], "starts_at": [ - 4324 + 4076 ], "status": [ - 695 + 682 ], "team_seasons": [ - 1976 + 1724 ], "week_best_of": [ - 1652 + 1400 ], "__typename": [ 78 @@ -30309,7 +26587,7 @@ export default { }, "league_seasons_max_fields": { "created_at": [ - 4324 + 4076 ], "created_by_steam_id": [ 180 @@ -30327,10 +26605,10 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "match_weeks_count": [ 38 @@ -30363,19 +26641,19 @@ export default { 38 ], "roster_lock_at": [ - 4324 + 4076 ], "season_number": [ 38 ], "signup_closes_at": [ - 4324 + 4076 ], "signup_opens_at": [ - 4324 + 4076 ], "starts_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -30383,7 +26661,7 @@ export default { }, "league_seasons_min_fields": { "created_at": [ - 4324 + 4076 ], "created_by_steam_id": [ 180 @@ -30401,10 +26679,10 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "match_weeks_count": [ 38 @@ -30437,19 +26715,19 @@ export default { 38 ], "roster_lock_at": [ - 4324 + 4076 ], "season_number": [ 38 ], "signup_closes_at": [ - 4324 + 4076 ], "signup_opens_at": [ - 4324 + 4076 ], "starts_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -30460,7 +26738,7 @@ export default { 38 ], "returning": [ - 1855 + 1603 ], "__typename": [ 78 @@ -30468,10 +26746,10 @@ export default { }, "league_seasons_obj_rel_insert_input": { "data": [ - 1866 + 1614 ], "on_conflict": [ - 1871 + 1619 ], "__typename": [ 78 @@ -30479,13 +26757,13 @@ export default { }, "league_seasons_on_conflict": { "constraint": [ - 1861 + 1609 ], "update_columns": [ - 1883 + 1631 ], "where": [ - 1860 + 1608 ], "__typename": [ 78 @@ -30493,133 +26771,133 @@ export default { }, "league_seasons_order_by": { "auto_regular_season_format": [ - 2781 + 2529 ], "can_register": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "created_by_steam_id": [ - 2781 + 2529 ], "default_best_of": [ - 2781 + 2529 ], "direct_promote_count": [ - 2781 + 2529 ], "direct_relegate_count": [ - 2781 + 2529 ], "e_league_season_status": [ - 703 + 690 ], "games_per_week": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "is_league_admin": [ - 2781 + 2529 ], "is_roster_locked": [ - 2781 + 2529 ], "match_options_id": [ - 2781 + 2529 ], "match_weeks_aggregate": [ - 1712 + 1460 ], "match_weeks_count": [ - 2781 + 2529 ], "max_roster_size": [ - 2781 + 2529 ], "min_roster_size": [ - 2781 + 2529 ], "movements_aggregate": [ - 1893 + 1641 ], "my_registration_aggregate": [ - 1975 + 1723 ], "name": [ - 2781 + 2529 ], "options": [ - 2489 + 2237 ], "player_stats_aggregate": [ - 4882 + 4690 ], "playoff_best_of": [ - 2781 + 2529 ], "playoff_round_best_of": [ - 2781 + 2529 ], "playoff_seats": [ - 2781 + 2529 ], "playoff_stage_type": [ - 2781 + 2529 ], "playoff_third_place_match": [ - 2781 + 2529 ], "promote_count": [ - 2781 + 2529 ], "regular_season_stage_type": [ - 2781 + 2529 ], "relegate_count": [ - 2781 + 2529 ], "relegation_down_count": [ - 2781 + 2529 ], "relegation_playoffs_aggregate": [ - 1753 + 1501 ], "relegation_up_count": [ - 2781 + 2529 ], "roster_lock_at": [ - 2781 + 2529 ], "season_divisions_aggregate": [ - 1835 + 1583 ], "season_number": [ - 2781 + 2529 ], "signup_closes_at": [ - 2781 + 2529 ], "signup_opens_at": [ - 2781 + 2529 ], "standings_aggregate": [ - 4839 + 4647 ], "starts_at": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "team_seasons_aggregate": [ - 1975 + 1723 ], "week_best_of": [ - 2781 + 2529 ], "__typename": [ 78 @@ -30627,7 +26905,7 @@ export default { }, "league_seasons_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -30635,10 +26913,10 @@ export default { }, "league_seasons_prepend_input": { "playoff_round_best_of": [ - 1652 + 1400 ], "week_best_of": [ - 1652 + 1400 ], "__typename": [ 78 @@ -30650,7 +26928,7 @@ export default { 3 ], "created_at": [ - 4324 + 4076 ], "created_by_steam_id": [ 180 @@ -30668,10 +26946,10 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "match_weeks_count": [ 38 @@ -30689,13 +26967,13 @@ export default { 38 ], "playoff_round_best_of": [ - 1652 + 1400 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1143 + 1151 ], "playoff_third_place_match": [ 3 @@ -30704,7 +26982,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1143 + 1151 ], "relegate_count": [ 38 @@ -30716,25 +26994,25 @@ export default { 38 ], "roster_lock_at": [ - 4324 + 4076 ], "season_number": [ 38 ], "signup_closes_at": [ - 4324 + 4076 ], "signup_opens_at": [ - 4324 + 4076 ], "starts_at": [ - 4324 + 4076 ], "status": [ - 695 + 682 ], "week_best_of": [ - 1652 + 1400 ], "__typename": [ 78 @@ -30892,7 +27170,7 @@ export default { }, "league_seasons_stream_cursor_input": { "initial_value": [ - 1881 + 1629 ], "ordering": [ 236 @@ -30906,7 +27184,7 @@ export default { 3 ], "created_at": [ - 4324 + 4076 ], "created_by_steam_id": [ 180 @@ -30924,10 +27202,10 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "match_weeks_count": [ 38 @@ -30945,13 +27223,13 @@ export default { 38 ], "playoff_round_best_of": [ - 1652 + 1400 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1143 + 1151 ], "playoff_third_place_match": [ 3 @@ -30960,7 +27238,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1143 + 1151 ], "relegate_count": [ 38 @@ -30972,25 +27250,25 @@ export default { 38 ], "roster_lock_at": [ - 4324 + 4076 ], "season_number": [ 38 ], "signup_closes_at": [ - 4324 + 4076 ], "signup_opens_at": [ - 4324 + 4076 ], "starts_at": [ - 4324 + 4076 ], "status": [ - 695 + 682 ], "week_best_of": [ - 1652 + 1400 ], "__typename": [ 78 @@ -31049,28 +27327,28 @@ export default { "league_seasons_update_column": {}, "league_seasons_updates": { "_append": [ - 1858 + 1606 ], "_delete_at_path": [ - 1862 + 1610 ], "_delete_elem": [ - 1863 + 1611 ], "_delete_key": [ - 1864 + 1612 ], "_inc": [ - 1865 + 1613 ], "_prepend": [ - 1874 + 1622 ], "_set": [ - 1876 + 1624 ], "where": [ - 1860 + 1608 ], "__typename": [ 78 @@ -31228,58 +27506,58 @@ export default { }, "league_team_movements": { "approved_at": [ - 4324 + 4076 ], "approved_by": [ - 3739 + 3487 ], "approved_by_steam_id": [ 180 ], "computed_to_division": [ - 1679 + 1427 ], "computed_to_division_id": [ - 4762 + 4621 ], "created_at": [ - 4324 + 4076 ], "e_movement_type": [ - 627 + 614 ], "final_rank": [ 38 ], "final_to_division": [ - 1679 + 1427 ], "final_to_division_id": [ - 4762 + 4621 ], "from_division": [ - 1679 + 1427 ], "from_division_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team": [ - 2012 + 1760 ], "league_team_id": [ - 4762 + 4621 ], "season": [ - 1855 + 1603 ], "type": [ - 632 + 619 ], "__typename": [ 78 @@ -31287,10 +27565,10 @@ export default { }, "league_team_movements_aggregate": { "aggregate": [ - 1892 + 1640 ], "nodes": [ - 1888 + 1636 ], "__typename": [ 78 @@ -31298,7 +27576,7 @@ export default { }, "league_team_movements_aggregate_bool_exp": { "count": [ - 1891 + 1639 ], "__typename": [ 78 @@ -31306,13 +27584,13 @@ export default { }, "league_team_movements_aggregate_bool_exp_count": { "arguments": [ - 1909 + 1657 ], "distinct": [ 3 ], "filter": [ - 1897 + 1645 ], "predicate": [ 39 @@ -31323,13 +27601,13 @@ export default { }, "league_team_movements_aggregate_fields": { "avg": [ - 1895 + 1643 ], "count": [ 38, { "columns": [ - 1909, + 1657, "[league_team_movements_select_column!]" ], "distinct": [ @@ -31338,31 +27616,31 @@ export default { } ], "max": [ - 1901 + 1649 ], "min": [ - 1903 + 1651 ], "stddev": [ - 1911 + 1659 ], "stddev_pop": [ - 1913 + 1661 ], "stddev_samp": [ - 1915 + 1663 ], "sum": [ - 1919 + 1667 ], "var_pop": [ - 1923 + 1671 ], "var_samp": [ - 1925 + 1673 ], "variance": [ - 1927 + 1675 ], "__typename": [ 78 @@ -31370,37 +27648,37 @@ export default { }, "league_team_movements_aggregate_order_by": { "avg": [ - 1896 + 1644 ], "count": [ - 2781 + 2529 ], "max": [ - 1902 + 1650 ], "min": [ - 1904 + 1652 ], "stddev": [ - 1912 + 1660 ], "stddev_pop": [ - 1914 + 1662 ], "stddev_samp": [ - 1916 + 1664 ], "sum": [ - 1920 + 1668 ], "var_pop": [ - 1924 + 1672 ], "var_samp": [ - 1926 + 1674 ], "variance": [ - 1928 + 1676 ], "__typename": [ 78 @@ -31408,10 +27686,10 @@ export default { }, "league_team_movements_arr_rel_insert_input": { "data": [ - 1900 + 1648 ], "on_conflict": [ - 1906 + 1654 ], "__typename": [ 78 @@ -31430,10 +27708,10 @@ export default { }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 2781 + 2529 ], "final_rank": [ - 2781 + 2529 ], "__typename": [ 78 @@ -31441,67 +27719,67 @@ export default { }, "league_team_movements_bool_exp": { "_and": [ - 1897 + 1645 ], "_not": [ - 1897 + 1645 ], "_or": [ - 1897 + 1645 ], "approved_at": [ - 4325 + 4077 ], "approved_by": [ - 3743 + 3491 ], "approved_by_steam_id": [ 182 ], "computed_to_division": [ - 1683 + 1431 ], "computed_to_division_id": [ - 4764 + 4623 ], "created_at": [ - 4325 + 4077 ], "e_movement_type": [ - 630 + 617 ], "final_rank": [ 39 ], "final_to_division": [ - 1683 + 1431 ], "final_to_division_id": [ - 4764 + 4623 ], "from_division": [ - 1683 + 1431 ], "from_division_id": [ - 4764 + 4623 ], "id": [ - 4764 + 4623 ], "league_season_id": [ - 4764 + 4623 ], "league_team": [ - 2015 + 1763 ], "league_team_id": [ - 4764 + 4623 ], "season": [ - 1860 + 1608 ], "type": [ - 633 + 620 ], "__typename": [ 78 @@ -31521,58 +27799,58 @@ export default { }, "league_team_movements_insert_input": { "approved_at": [ - 4324 + 4076 ], "approved_by": [ - 3750 + 3498 ], "approved_by_steam_id": [ 180 ], "computed_to_division": [ - 1690 + 1438 ], "computed_to_division_id": [ - 4762 + 4621 ], "created_at": [ - 4324 + 4076 ], "e_movement_type": [ - 638 + 625 ], "final_rank": [ 38 ], "final_to_division": [ - 1690 + 1438 ], "final_to_division_id": [ - 4762 + 4621 ], "from_division": [ - 1690 + 1438 ], "from_division_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team": [ - 2021 + 1769 ], "league_team_id": [ - 4762 + 4621 ], "season": [ - 1870 + 1618 ], "type": [ - 632 + 619 ], "__typename": [ 78 @@ -31580,34 +27858,34 @@ export default { }, "league_team_movements_max_fields": { "approved_at": [ - 4324 + 4076 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4762 + 4621 ], "created_at": [ - 4324 + 4076 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4762 + 4621 ], "from_division_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -31615,34 +27893,34 @@ export default { }, "league_team_movements_max_order_by": { "approved_at": [ - 2781 + 2529 ], "approved_by_steam_id": [ - 2781 + 2529 ], "computed_to_division_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "final_rank": [ - 2781 + 2529 ], "final_to_division_id": [ - 2781 + 2529 ], "from_division_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "league_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -31650,34 +27928,34 @@ export default { }, "league_team_movements_min_fields": { "approved_at": [ - 4324 + 4076 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4762 + 4621 ], "created_at": [ - 4324 + 4076 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4762 + 4621 ], "from_division_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -31685,34 +27963,34 @@ export default { }, "league_team_movements_min_order_by": { "approved_at": [ - 2781 + 2529 ], "approved_by_steam_id": [ - 2781 + 2529 ], "computed_to_division_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "final_rank": [ - 2781 + 2529 ], "final_to_division_id": [ - 2781 + 2529 ], "from_division_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "league_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -31723,7 +28001,7 @@ export default { 38 ], "returning": [ - 1888 + 1636 ], "__typename": [ 78 @@ -31731,13 +28009,13 @@ export default { }, "league_team_movements_on_conflict": { "constraint": [ - 1898 + 1646 ], "update_columns": [ - 1921 + 1669 ], "where": [ - 1897 + 1645 ], "__typename": [ 78 @@ -31745,58 +28023,58 @@ export default { }, "league_team_movements_order_by": { "approved_at": [ - 2781 + 2529 ], "approved_by": [ - 3752 + 3500 ], "approved_by_steam_id": [ - 2781 + 2529 ], "computed_to_division": [ - 1692 + 1440 ], "computed_to_division_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "e_movement_type": [ - 640 + 627 ], "final_rank": [ - 2781 + 2529 ], "final_to_division": [ - 1692 + 1440 ], "final_to_division_id": [ - 2781 + 2529 ], "from_division": [ - 1692 + 1440 ], "from_division_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "league_team": [ - 2023 + 1771 ], "league_team_id": [ - 2781 + 2529 ], "season": [ - 1872 + 1620 ], "type": [ - 2781 + 2529 ], "__typename": [ 78 @@ -31804,7 +28082,7 @@ export default { }, "league_team_movements_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -31813,37 +28091,37 @@ export default { "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4324 + 4076 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4762 + 4621 ], "created_at": [ - 4324 + 4076 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4762 + 4621 ], "from_division_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team_id": [ - 4762 + 4621 ], "type": [ - 632 + 619 ], "__typename": [ 78 @@ -31862,10 +28140,10 @@ export default { }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 2781 + 2529 ], "final_rank": [ - 2781 + 2529 ], "__typename": [ 78 @@ -31884,10 +28162,10 @@ export default { }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 2781 + 2529 ], "final_rank": [ - 2781 + 2529 ], "__typename": [ 78 @@ -31906,10 +28184,10 @@ export default { }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 2781 + 2529 ], "final_rank": [ - 2781 + 2529 ], "__typename": [ 78 @@ -31917,7 +28195,7 @@ export default { }, "league_team_movements_stream_cursor_input": { "initial_value": [ - 1918 + 1666 ], "ordering": [ 236 @@ -31928,37 +28206,37 @@ export default { }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4324 + 4076 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4762 + 4621 ], "created_at": [ - 4324 + 4076 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4762 + 4621 ], "from_division_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team_id": [ - 4762 + 4621 ], "type": [ - 632 + 619 ], "__typename": [ 78 @@ -31977,10 +28255,10 @@ export default { }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 2781 + 2529 ], "final_rank": [ - 2781 + 2529 ], "__typename": [ 78 @@ -31989,13 +28267,13 @@ export default { "league_team_movements_update_column": {}, "league_team_movements_updates": { "_inc": [ - 1899 + 1647 ], "_set": [ - 1910 + 1658 ], "where": [ - 1897 + 1645 ], "__typename": [ 78 @@ -32014,10 +28292,10 @@ export default { }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 2781 + 2529 ], "final_rank": [ - 2781 + 2529 ], "__typename": [ 78 @@ -32036,10 +28314,10 @@ export default { }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 2781 + 2529 ], "final_rank": [ - 2781 + 2529 ], "__typename": [ 78 @@ -32058,10 +28336,10 @@ export default { }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 2781 + 2529 ], "final_rank": [ - 2781 + 2529 ], "__typename": [ 78 @@ -32069,28 +28347,28 @@ export default { }, "league_team_rosters": { "added_at": [ - 4324 + 4076 ], "league_team_season_id": [ - 4762 + 4621 ], "player": [ - 3739 + 3487 ], "player_steam_id": [ 180 ], "removed_at": [ - 4324 + 4076 ], "removed_reason": [ 78 ], "status": [ - 1103 + 1090 ], "team_season": [ - 1970 + 1718 ], "__typename": [ 78 @@ -32098,10 +28376,10 @@ export default { }, "league_team_rosters_aggregate": { "aggregate": [ - 1933 + 1681 ], "nodes": [ - 1929 + 1677 ], "__typename": [ 78 @@ -32109,7 +28387,7 @@ export default { }, "league_team_rosters_aggregate_bool_exp": { "count": [ - 1932 + 1680 ], "__typename": [ 78 @@ -32117,13 +28395,13 @@ export default { }, "league_team_rosters_aggregate_bool_exp_count": { "arguments": [ - 1950 + 1698 ], "distinct": [ 3 ], "filter": [ - 1938 + 1686 ], "predicate": [ 39 @@ -32134,13 +28412,13 @@ export default { }, "league_team_rosters_aggregate_fields": { "avg": [ - 1936 + 1684 ], "count": [ 38, { "columns": [ - 1950, + 1698, "[league_team_rosters_select_column!]" ], "distinct": [ @@ -32149,31 +28427,31 @@ export default { } ], "max": [ - 1942 + 1690 ], "min": [ - 1944 + 1692 ], "stddev": [ - 1952 + 1700 ], "stddev_pop": [ - 1954 + 1702 ], "stddev_samp": [ - 1956 + 1704 ], "sum": [ - 1960 + 1708 ], "var_pop": [ - 1964 + 1712 ], "var_samp": [ - 1966 + 1714 ], "variance": [ - 1968 + 1716 ], "__typename": [ 78 @@ -32181,37 +28459,37 @@ export default { }, "league_team_rosters_aggregate_order_by": { "avg": [ - 1937 + 1685 ], "count": [ - 2781 + 2529 ], "max": [ - 1943 + 1691 ], "min": [ - 1945 + 1693 ], "stddev": [ - 1953 + 1701 ], "stddev_pop": [ - 1955 + 1703 ], "stddev_samp": [ - 1957 + 1705 ], "sum": [ - 1961 + 1709 ], "var_pop": [ - 1965 + 1713 ], "var_samp": [ - 1967 + 1715 ], "variance": [ - 1969 + 1717 ], "__typename": [ 78 @@ -32219,10 +28497,10 @@ export default { }, "league_team_rosters_arr_rel_insert_input": { "data": [ - 1941 + 1689 ], "on_conflict": [ - 1947 + 1695 ], "__typename": [ 78 @@ -32238,7 +28516,7 @@ export default { }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -32246,37 +28524,37 @@ export default { }, "league_team_rosters_bool_exp": { "_and": [ - 1938 + 1686 ], "_not": [ - 1938 + 1686 ], "_or": [ - 1938 + 1686 ], "added_at": [ - 4325 + 4077 ], "league_team_season_id": [ - 4764 + 4623 ], "player": [ - 3743 + 3491 ], "player_steam_id": [ 182 ], "removed_at": [ - 4325 + 4077 ], "removed_reason": [ 80 ], "status": [ - 1104 + 1091 ], "team_season": [ - 1979 + 1727 ], "__typename": [ 78 @@ -32293,28 +28571,28 @@ export default { }, "league_team_rosters_insert_input": { "added_at": [ - 4324 + 4076 ], "league_team_season_id": [ - 4762 + 4621 ], "player": [ - 3750 + 3498 ], "player_steam_id": [ 180 ], "removed_at": [ - 4324 + 4076 ], "removed_reason": [ 78 ], "status": [ - 1103 + 1090 ], "team_season": [ - 1988 + 1736 ], "__typename": [ 78 @@ -32322,16 +28600,16 @@ export default { }, "league_team_rosters_max_fields": { "added_at": [ - 4324 + 4076 ], "league_team_season_id": [ - 4762 + 4621 ], "player_steam_id": [ 180 ], "removed_at": [ - 4324 + 4076 ], "removed_reason": [ 78 @@ -32342,19 +28620,19 @@ export default { }, "league_team_rosters_max_order_by": { "added_at": [ - 2781 + 2529 ], "league_team_season_id": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "removed_at": [ - 2781 + 2529 ], "removed_reason": [ - 2781 + 2529 ], "__typename": [ 78 @@ -32362,16 +28640,16 @@ export default { }, "league_team_rosters_min_fields": { "added_at": [ - 4324 + 4076 ], "league_team_season_id": [ - 4762 + 4621 ], "player_steam_id": [ 180 ], "removed_at": [ - 4324 + 4076 ], "removed_reason": [ 78 @@ -32382,19 +28660,19 @@ export default { }, "league_team_rosters_min_order_by": { "added_at": [ - 2781 + 2529 ], "league_team_season_id": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "removed_at": [ - 2781 + 2529 ], "removed_reason": [ - 2781 + 2529 ], "__typename": [ 78 @@ -32405,7 +28683,7 @@ export default { 38 ], "returning": [ - 1929 + 1677 ], "__typename": [ 78 @@ -32413,13 +28691,13 @@ export default { }, "league_team_rosters_on_conflict": { "constraint": [ - 1939 + 1687 ], "update_columns": [ - 1962 + 1710 ], "where": [ - 1938 + 1686 ], "__typename": [ 78 @@ -32427,28 +28705,28 @@ export default { }, "league_team_rosters_order_by": { "added_at": [ - 2781 + 2529 ], "league_team_season_id": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "player_steam_id": [ - 2781 + 2529 ], "removed_at": [ - 2781 + 2529 ], "removed_reason": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "team_season": [ - 1990 + 1738 ], "__typename": [ 78 @@ -32456,7 +28734,7 @@ export default { }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 4762 + 4621 ], "player_steam_id": [ 180 @@ -32468,22 +28746,22 @@ export default { "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4324 + 4076 ], "league_team_season_id": [ - 4762 + 4621 ], "player_steam_id": [ 180 ], "removed_at": [ - 4324 + 4076 ], "removed_reason": [ 78 ], "status": [ - 1103 + 1090 ], "__typename": [ 78 @@ -32499,7 +28777,7 @@ export default { }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -32515,7 +28793,7 @@ export default { }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -32531,7 +28809,7 @@ export default { }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -32539,7 +28817,7 @@ export default { }, "league_team_rosters_stream_cursor_input": { "initial_value": [ - 1959 + 1707 ], "ordering": [ 236 @@ -32550,22 +28828,22 @@ export default { }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4324 + 4076 ], "league_team_season_id": [ - 4762 + 4621 ], "player_steam_id": [ 180 ], "removed_at": [ - 4324 + 4076 ], "removed_reason": [ 78 ], "status": [ - 1103 + 1090 ], "__typename": [ 78 @@ -32581,7 +28859,7 @@ export default { }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -32590,13 +28868,13 @@ export default { "league_team_rosters_update_column": {}, "league_team_rosters_updates": { "_inc": [ - 1940 + 1688 ], "_set": [ - 1951 + 1699 ], "where": [ - 1938 + 1686 ], "__typename": [ 78 @@ -32612,7 +28890,7 @@ export default { }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -32628,7 +28906,7 @@ export default { }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -32644,7 +28922,7 @@ export default { }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -32652,55 +28930,55 @@ export default { }, "league_team_seasons": { "assigned_division": [ - 1679 + 1427 ], "assigned_division_id": [ - 4762 + 4621 ], "captain": [ - 3739 + 3487 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4076 ], "decline_reason": [ 78 ], "e_registration_status": [ - 669 + 656 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team": [ - 2012 + 1760 ], "league_team_id": [ - 4762 + 4621 ], "registered_by": [ - 3739 + 3487 ], "registered_by_steam_id": [ 180 ], "requested_division": [ - 1679 + 1427 ], "requested_division_id": [ - 4762 + 4621 ], "roster": [ - 1929, + 1677, { "distinct_on": [ - 1950, + 1698, "[league_team_rosters_select_column!]" ], "limit": [ @@ -32710,19 +28988,19 @@ export default { 38 ], "order_by": [ - 1948, + 1696, "[league_team_rosters_order_by!]" ], "where": [ - 1938 + 1686 ] } ], "roster_aggregate": [ - 1930, + 1678, { "distinct_on": [ - 1950, + 1698, "[league_team_rosters_select_column!]" ], "limit": [ @@ -32732,28 +29010,28 @@ export default { 38 ], "order_by": [ - 1948, + 1696, "[league_team_rosters_order_by!]" ], "where": [ - 1938 + 1686 ] } ], "season": [ - 1855 + 1603 ], "seed": [ 38 ], "status": [ - 674 + 661 ], "tournament_team": [ - 4587 + 4428 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -32761,10 +29039,10 @@ export default { }, "league_team_seasons_aggregate": { "aggregate": [ - 1974 + 1722 ], "nodes": [ - 1970 + 1718 ], "__typename": [ 78 @@ -32772,7 +29050,7 @@ export default { }, "league_team_seasons_aggregate_bool_exp": { "count": [ - 1973 + 1721 ], "__typename": [ 78 @@ -32780,13 +29058,13 @@ export default { }, "league_team_seasons_aggregate_bool_exp_count": { "arguments": [ - 1992 + 1740 ], "distinct": [ 3 ], "filter": [ - 1979 + 1727 ], "predicate": [ 39 @@ -32797,13 +29075,13 @@ export default { }, "league_team_seasons_aggregate_fields": { "avg": [ - 1977 + 1725 ], "count": [ 38, { "columns": [ - 1992, + 1740, "[league_team_seasons_select_column!]" ], "distinct": [ @@ -32812,31 +29090,31 @@ export default { } ], "max": [ - 1983 + 1731 ], "min": [ - 1985 + 1733 ], "stddev": [ - 1994 + 1742 ], "stddev_pop": [ - 1996 + 1744 ], "stddev_samp": [ - 1998 + 1746 ], "sum": [ - 2002 + 1750 ], "var_pop": [ - 2006 + 1754 ], "var_samp": [ - 2008 + 1756 ], "variance": [ - 2010 + 1758 ], "__typename": [ 78 @@ -32844,37 +29122,37 @@ export default { }, "league_team_seasons_aggregate_order_by": { "avg": [ - 1978 + 1726 ], "count": [ - 2781 + 2529 ], "max": [ - 1984 + 1732 ], "min": [ - 1986 + 1734 ], "stddev": [ - 1995 + 1743 ], "stddev_pop": [ - 1997 + 1745 ], "stddev_samp": [ - 1999 + 1747 ], "sum": [ - 2003 + 1751 ], "var_pop": [ - 2007 + 1755 ], "var_samp": [ - 2009 + 1757 ], "variance": [ - 2011 + 1759 ], "__typename": [ 78 @@ -32882,10 +29160,10 @@ export default { }, "league_team_seasons_arr_rel_insert_input": { "data": [ - 1982 + 1730 ], "on_conflict": [ - 1989 + 1737 ], "__typename": [ 78 @@ -32907,13 +29185,13 @@ export default { }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "registered_by_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -32921,79 +29199,79 @@ export default { }, "league_team_seasons_bool_exp": { "_and": [ - 1979 + 1727 ], "_not": [ - 1979 + 1727 ], "_or": [ - 1979 + 1727 ], "assigned_division": [ - 1683 + 1431 ], "assigned_division_id": [ - 4764 + 4623 ], "captain": [ - 3743 + 3491 ], "captain_steam_id": [ 182 ], "created_at": [ - 4325 + 4077 ], "decline_reason": [ 80 ], "e_registration_status": [ - 672 + 659 ], "id": [ - 4764 + 4623 ], "league_season_id": [ - 4764 + 4623 ], "league_team": [ - 2015 + 1763 ], "league_team_id": [ - 4764 + 4623 ], "registered_by": [ - 3743 + 3491 ], "registered_by_steam_id": [ 182 ], "requested_division": [ - 1683 + 1431 ], "requested_division_id": [ - 4764 + 4623 ], "roster": [ - 1938 + 1686 ], "roster_aggregate": [ - 1931 + 1679 ], "season": [ - 1860 + 1608 ], "seed": [ 39 ], "status": [ - 675 + 662 ], "tournament_team": [ - 4596 + 4437 ], "tournament_team_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -33016,67 +29294,67 @@ export default { }, "league_team_seasons_insert_input": { "assigned_division": [ - 1690 + 1438 ], "assigned_division_id": [ - 4762 + 4621 ], "captain": [ - 3750 + 3498 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4076 ], "decline_reason": [ 78 ], "e_registration_status": [ - 680 + 667 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team": [ - 2021 + 1769 ], "league_team_id": [ - 4762 + 4621 ], "registered_by": [ - 3750 + 3498 ], "registered_by_steam_id": [ 180 ], "requested_division": [ - 1690 + 1438 ], "requested_division_id": [ - 4762 + 4621 ], "roster": [ - 1935 + 1683 ], "season": [ - 1870 + 1618 ], "seed": [ 38 ], "status": [ - 674 + 661 ], "tournament_team": [ - 4605 + 4446 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -33084,37 +29362,37 @@ export default { }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 4762 + 4621 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4076 ], "decline_reason": [ 78 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team_id": [ - 4762 + 4621 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4762 + 4621 ], "seed": [ 38 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -33122,37 +29400,37 @@ export default { }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 2781 + 2529 ], "captain_steam_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "decline_reason": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "league_team_id": [ - 2781 + 2529 ], "registered_by_steam_id": [ - 2781 + 2529 ], "requested_division_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -33160,37 +29438,37 @@ export default { }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 4762 + 4621 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4076 ], "decline_reason": [ 78 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team_id": [ - 4762 + 4621 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4762 + 4621 ], "seed": [ 38 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -33198,37 +29476,37 @@ export default { }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 2781 + 2529 ], "captain_steam_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "decline_reason": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "league_team_id": [ - 2781 + 2529 ], "registered_by_steam_id": [ - 2781 + 2529 ], "requested_division_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -33239,7 +29517,7 @@ export default { 38 ], "returning": [ - 1970 + 1718 ], "__typename": [ 78 @@ -33247,10 +29525,10 @@ export default { }, "league_team_seasons_obj_rel_insert_input": { "data": [ - 1982 + 1730 ], "on_conflict": [ - 1989 + 1737 ], "__typename": [ 78 @@ -33258,13 +29536,13 @@ export default { }, "league_team_seasons_on_conflict": { "constraint": [ - 1980 + 1728 ], "update_columns": [ - 2004 + 1752 ], "where": [ - 1979 + 1727 ], "__typename": [ 78 @@ -33272,67 +29550,67 @@ export default { }, "league_team_seasons_order_by": { "assigned_division": [ - 1692 + 1440 ], "assigned_division_id": [ - 2781 + 2529 ], "captain": [ - 3752 + 3500 ], "captain_steam_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "decline_reason": [ - 2781 + 2529 ], "e_registration_status": [ - 682 + 669 ], "id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "league_team": [ - 2023 + 1771 ], "league_team_id": [ - 2781 + 2529 ], "registered_by": [ - 3752 + 3500 ], "registered_by_steam_id": [ - 2781 + 2529 ], "requested_division": [ - 1692 + 1440 ], "requested_division_id": [ - 2781 + 2529 ], "roster_aggregate": [ - 1934 + 1682 ], "season": [ - 1872 + 1620 ], "seed": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "tournament_team": [ - 4607 + 4448 ], "tournament_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -33340,7 +29618,7 @@ export default { }, "league_team_seasons_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -33349,40 +29627,40 @@ export default { "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 4762 + 4621 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4076 ], "decline_reason": [ 78 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team_id": [ - 4762 + 4621 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4762 + 4621 ], "seed": [ 38 ], "status": [ - 674 + 661 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -33404,13 +29682,13 @@ export default { }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "registered_by_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -33432,13 +29710,13 @@ export default { }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "registered_by_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -33460,13 +29738,13 @@ export default { }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "registered_by_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -33474,7 +29752,7 @@ export default { }, "league_team_seasons_stream_cursor_input": { "initial_value": [ - 2001 + 1749 ], "ordering": [ 236 @@ -33485,40 +29763,40 @@ export default { }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 4762 + 4621 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4076 ], "decline_reason": [ 78 ], "id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team_id": [ - 4762 + 4621 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4762 + 4621 ], "seed": [ 38 ], "status": [ - 674 + 661 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -33540,13 +29818,13 @@ export default { }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "registered_by_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -33555,13 +29833,13 @@ export default { "league_team_seasons_update_column": {}, "league_team_seasons_updates": { "_inc": [ - 1981 + 1729 ], "_set": [ - 1993 + 1741 ], "where": [ - 1979 + 1727 ], "__typename": [ 78 @@ -33583,13 +29861,13 @@ export default { }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "registered_by_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -33611,13 +29889,13 @@ export default { }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "registered_by_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -33639,13 +29917,13 @@ export default { }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "registered_by_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -33653,16 +29931,16 @@ export default { }, "league_teams": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "movements": [ - 1888, + 1636, { "distinct_on": [ - 1909, + 1657, "[league_team_movements_select_column!]" ], "limit": [ @@ -33672,19 +29950,19 @@ export default { 38 ], "order_by": [ - 1907, + 1655, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1645 ] } ], "movements_aggregate": [ - 1889, + 1637, { "distinct_on": [ - 1909, + 1657, "[league_team_movements_select_column!]" ], "limit": [ @@ -33694,25 +29972,25 @@ export default { 38 ], "order_by": [ - 1907, + 1655, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1645 ] } ], "team": [ - 4281 + 4029 ], "team_id": [ - 4762 + 4621 ], "team_seasons": [ - 1970, + 1718, { "distinct_on": [ - 1992, + 1740, "[league_team_seasons_select_column!]" ], "limit": [ @@ -33722,19 +30000,19 @@ export default { 38 ], "order_by": [ - 1990, + 1738, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 1727 ] } ], "team_seasons_aggregate": [ - 1971, + 1719, { "distinct_on": [ - 1992, + 1740, "[league_team_seasons_select_column!]" ], "limit": [ @@ -33744,11 +30022,11 @@ export default { 38 ], "order_by": [ - 1990, + 1738, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 1727 ] } ], @@ -33758,10 +30036,10 @@ export default { }, "league_teams_aggregate": { "aggregate": [ - 2014 + 1762 ], "nodes": [ - 2012 + 1760 ], "__typename": [ 78 @@ -33772,7 +30050,7 @@ export default { 38, { "columns": [ - 2025, + 1773, "[league_teams_select_column!]" ], "distinct": [ @@ -33781,10 +30059,10 @@ export default { } ], "max": [ - 2018 + 1766 ], "min": [ - 2019 + 1767 ], "__typename": [ 78 @@ -33792,37 +30070,37 @@ export default { }, "league_teams_bool_exp": { "_and": [ - 2015 + 1763 ], "_not": [ - 2015 + 1763 ], "_or": [ - 2015 + 1763 ], "created_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "movements": [ - 1897 + 1645 ], "movements_aggregate": [ - 1890 + 1638 ], "team": [ - 4290 + 4040 ], "team_id": [ - 4764 + 4623 ], "team_seasons": [ - 1979 + 1727 ], "team_seasons_aggregate": [ - 1972 + 1720 ], "__typename": [ 78 @@ -33831,22 +30109,22 @@ export default { "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "movements": [ - 1894 + 1642 ], "team": [ - 4299 + 4049 ], "team_id": [ - 4762 + 4621 ], "team_seasons": [ - 1976 + 1724 ], "__typename": [ 78 @@ -33854,13 +30132,13 @@ export default { }, "league_teams_max_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -33868,13 +30146,13 @@ export default { }, "league_teams_min_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -33885,7 +30163,7 @@ export default { 38 ], "returning": [ - 2012 + 1760 ], "__typename": [ 78 @@ -33893,10 +30171,10 @@ export default { }, "league_teams_obj_rel_insert_input": { "data": [ - 2017 + 1765 ], "on_conflict": [ - 2022 + 1770 ], "__typename": [ 78 @@ -33904,13 +30182,13 @@ export default { }, "league_teams_on_conflict": { "constraint": [ - 2016 + 1764 ], "update_columns": [ - 2029 + 1777 ], "where": [ - 2015 + 1763 ], "__typename": [ 78 @@ -33918,22 +30196,22 @@ export default { }, "league_teams_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "movements_aggregate": [ - 1893 + 1641 ], "team": [ - 4301 + 4051 ], "team_id": [ - 2781 + 2529 ], "team_seasons_aggregate": [ - 1975 + 1723 ], "__typename": [ 78 @@ -33941,7 +30219,7 @@ export default { }, "league_teams_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -33950,13 +30228,13 @@ export default { "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -33964,7 +30242,7 @@ export default { }, "league_teams_stream_cursor_input": { "initial_value": [ - 2028 + 1776 ], "ordering": [ 236 @@ -33975,13 +30253,13 @@ export default { }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -33990,10 +30268,10 @@ export default { "league_teams_update_column": {}, "league_teams_updates": { "_set": [ - 2026 + 1774 ], "where": [ - 2015 + 1763 ], "__typename": [ 78 @@ -34001,22 +30279,22 @@ export default { }, "lobbies": { "access": [ - 716 + 703 ], "created_at": [ - 4324 + 4076 ], "e_lobby_access": [ - 711 + 698 ], "id": [ - 4762 + 4621 ], "players": [ - 2050, + 1798, { "distinct_on": [ - 2073, + 1821, "[lobby_players_select_column!]" ], "limit": [ @@ -34026,19 +30304,19 @@ export default { 38 ], "order_by": [ - 2071, + 1819, "[lobby_players_order_by!]" ], "where": [ - 2061 + 1809 ] } ], "players_aggregate": [ - 2051, + 1799, { "distinct_on": [ - 2073, + 1821, "[lobby_players_select_column!]" ], "limit": [ @@ -34048,11 +30326,11 @@ export default { 38 ], "order_by": [ - 2071, + 1819, "[lobby_players_order_by!]" ], "where": [ - 2061 + 1809 ] } ], @@ -34062,10 +30340,10 @@ export default { }, "lobbies_aggregate": { "aggregate": [ - 2033 + 1781 ], "nodes": [ - 2031 + 1779 ], "__typename": [ 78 @@ -34076,7 +30354,7 @@ export default { 38, { "columns": [ - 2044, + 1792, "[lobbies_select_column!]" ], "distinct": [ @@ -34085,10 +30363,10 @@ export default { } ], "max": [ - 2037 + 1785 ], "min": [ - 2038 + 1786 ], "__typename": [ 78 @@ -34096,31 +30374,31 @@ export default { }, "lobbies_bool_exp": { "_and": [ - 2034 + 1782 ], "_not": [ - 2034 + 1782 ], "_or": [ - 2034 + 1782 ], "access": [ - 717 + 704 ], "created_at": [ - 4325 + 4077 ], "e_lobby_access": [ - 714 + 701 ], "id": [ - 4764 + 4623 ], "players": [ - 2061 + 1809 ], "players_aggregate": [ - 2052 + 1800 ], "__typename": [ 78 @@ -34129,19 +30407,19 @@ export default { "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 716 + 703 ], "created_at": [ - 4324 + 4076 ], "e_lobby_access": [ - 722 + 709 ], "id": [ - 4762 + 4621 ], "players": [ - 2058 + 1806 ], "__typename": [ 78 @@ -34149,10 +30427,10 @@ export default { }, "lobbies_max_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -34160,10 +30438,10 @@ export default { }, "lobbies_min_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -34174,7 +30452,7 @@ export default { 38 ], "returning": [ - 2031 + 1779 ], "__typename": [ 78 @@ -34182,10 +30460,10 @@ export default { }, "lobbies_obj_rel_insert_input": { "data": [ - 2036 + 1784 ], "on_conflict": [ - 2041 + 1789 ], "__typename": [ 78 @@ -34193,13 +30471,13 @@ export default { }, "lobbies_on_conflict": { "constraint": [ - 2035 + 1783 ], "update_columns": [ - 2048 + 1796 ], "where": [ - 2034 + 1782 ], "__typename": [ 78 @@ -34207,19 +30485,19 @@ export default { }, "lobbies_order_by": { "access": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "e_lobby_access": [ - 724 + 711 ], "id": [ - 2781 + 2529 ], "players_aggregate": [ - 2057 + 1805 ], "__typename": [ 78 @@ -34227,7 +30505,7 @@ export default { }, "lobbies_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -34236,13 +30514,13 @@ export default { "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 716 + 703 ], "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -34250,7 +30528,7 @@ export default { }, "lobbies_stream_cursor_input": { "initial_value": [ - 2047 + 1795 ], "ordering": [ 236 @@ -34261,13 +30539,13 @@ export default { }, "lobbies_stream_cursor_value_input": { "access": [ - 716 + 703 ], "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -34276,10 +30554,10 @@ export default { "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 2045 + 1793 ], "where": [ - 2034 + 1782 ], "__typename": [ 78 @@ -34293,16 +30571,16 @@ export default { 180 ], "lobby": [ - 2031 + 1779 ], "lobby_id": [ - 4762 + 4621 ], "player": [ - 3739 + 3487 ], "status": [ - 737 + 724 ], "steam_id": [ 180 @@ -34313,10 +30591,10 @@ export default { }, "lobby_players_aggregate": { "aggregate": [ - 2056 + 1804 ], "nodes": [ - 2050 + 1798 ], "__typename": [ 78 @@ -34324,13 +30602,13 @@ export default { }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 2053 + 1801 ], "bool_or": [ - 2054 + 1802 ], "count": [ - 2055 + 1803 ], "__typename": [ 78 @@ -34338,13 +30616,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2074 + 1822 ], "distinct": [ 3 ], "filter": [ - 2061 + 1809 ], "predicate": [ 4 @@ -34355,13 +30633,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2075 + 1823 ], "distinct": [ 3 ], "filter": [ - 2061 + 1809 ], "predicate": [ 4 @@ -34372,13 +30650,13 @@ export default { }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 2073 + 1821 ], "distinct": [ 3 ], "filter": [ - 2061 + 1809 ], "predicate": [ 39 @@ -34389,13 +30667,13 @@ export default { }, "lobby_players_aggregate_fields": { "avg": [ - 2059 + 1807 ], "count": [ 38, { "columns": [ - 2073, + 1821, "[lobby_players_select_column!]" ], "distinct": [ @@ -34404,31 +30682,31 @@ export default { } ], "max": [ - 2065 + 1813 ], "min": [ - 2067 + 1815 ], "stddev": [ - 2077 + 1825 ], "stddev_pop": [ - 2079 + 1827 ], "stddev_samp": [ - 2081 + 1829 ], "sum": [ - 2085 + 1833 ], "var_pop": [ - 2089 + 1837 ], "var_samp": [ - 2091 + 1839 ], "variance": [ - 2093 + 1841 ], "__typename": [ 78 @@ -34436,37 +30714,37 @@ export default { }, "lobby_players_aggregate_order_by": { "avg": [ - 2060 + 1808 ], "count": [ - 2781 + 2529 ], "max": [ - 2066 + 1814 ], "min": [ - 2068 + 1816 ], "stddev": [ - 2078 + 1826 ], "stddev_pop": [ - 2080 + 1828 ], "stddev_samp": [ - 2082 + 1830 ], "sum": [ - 2086 + 1834 ], "var_pop": [ - 2090 + 1838 ], "var_samp": [ - 2092 + 1840 ], "variance": [ - 2094 + 1842 ], "__typename": [ 78 @@ -34474,10 +30752,10 @@ export default { }, "lobby_players_arr_rel_insert_input": { "data": [ - 2064 + 1812 ], "on_conflict": [ - 2070 + 1818 ], "__typename": [ 78 @@ -34496,10 +30774,10 @@ export default { }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -34507,13 +30785,13 @@ export default { }, "lobby_players_bool_exp": { "_and": [ - 2061 + 1809 ], "_not": [ - 2061 + 1809 ], "_or": [ - 2061 + 1809 ], "captain": [ 4 @@ -34522,16 +30800,16 @@ export default { 182 ], "lobby": [ - 2034 + 1782 ], "lobby_id": [ - 4764 + 4623 ], "player": [ - 3743 + 3491 ], "status": [ - 738 + 725 ], "steam_id": [ 182 @@ -34560,16 +30838,16 @@ export default { 180 ], "lobby": [ - 2040 + 1788 ], "lobby_id": [ - 4762 + 4621 ], "player": [ - 3750 + 3498 ], "status": [ - 737 + 724 ], "steam_id": [ 180 @@ -34583,7 +30861,7 @@ export default { 180 ], "lobby_id": [ - 4762 + 4621 ], "steam_id": [ 180 @@ -34594,13 +30872,13 @@ export default { }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 2781 + 2529 ], "lobby_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -34611,7 +30889,7 @@ export default { 180 ], "lobby_id": [ - 4762 + 4621 ], "steam_id": [ 180 @@ -34622,13 +30900,13 @@ export default { }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 2781 + 2529 ], "lobby_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -34639,7 +30917,7 @@ export default { 38 ], "returning": [ - 2050 + 1798 ], "__typename": [ 78 @@ -34647,13 +30925,13 @@ export default { }, "lobby_players_on_conflict": { "constraint": [ - 2062 + 1810 ], "update_columns": [ - 2087 + 1835 ], "where": [ - 2061 + 1809 ], "__typename": [ 78 @@ -34661,25 +30939,25 @@ export default { }, "lobby_players_order_by": { "captain": [ - 2781 + 2529 ], "invited_by_steam_id": [ - 2781 + 2529 ], "lobby": [ - 2042 + 1790 ], "lobby_id": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "status": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -34687,7 +30965,7 @@ export default { }, "lobby_players_pk_columns_input": { "lobby_id": [ - 4762 + 4621 ], "steam_id": [ 180 @@ -34707,10 +30985,10 @@ export default { 180 ], "lobby_id": [ - 4762 + 4621 ], "status": [ - 737 + 724 ], "steam_id": [ 180 @@ -34732,10 +31010,10 @@ export default { }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -34754,10 +31032,10 @@ export default { }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -34776,10 +31054,10 @@ export default { }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -34787,7 +31065,7 @@ export default { }, "lobby_players_stream_cursor_input": { "initial_value": [ - 2084 + 1832 ], "ordering": [ 236 @@ -34804,10 +31082,10 @@ export default { 180 ], "lobby_id": [ - 4762 + 4621 ], "status": [ - 737 + 724 ], "steam_id": [ 180 @@ -34829,10 +31107,10 @@ export default { }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -34841,13 +31119,13 @@ export default { "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 2063 + 1811 ], "_set": [ - 2076 + 1824 ], "where": [ - 2061 + 1809 ], "__typename": [ 78 @@ -34866,10 +31144,10 @@ export default { }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -34888,10 +31166,10 @@ export default { }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -34910,10 +31188,10 @@ export default { }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -34921,19 +31199,19 @@ export default { }, "map_pools": { "e_type": [ - 752 + 739 ], "enabled": [ 3 ], "id": [ - 4762 + 4621 ], "maps": [ - 5404, + 5212, { "distinct_on": [ - 5421, + 5229, "[v_pool_maps_select_column!]" ], "limit": [ @@ -34943,19 +31221,19 @@ export default { 38 ], "order_by": [ - 5420, + 5228, "[v_pool_maps_order_by!]" ], "where": [ - 5413 + 5221 ] } ], "maps_aggregate": [ - 5405, + 5213, { "distinct_on": [ - 5421, + 5229, "[v_pool_maps_select_column!]" ], "limit": [ @@ -34965,11 +31243,11 @@ export default { 38 ], "order_by": [ - 5420, + 5228, "[v_pool_maps_order_by!]" ], "where": [ - 5413 + 5221 ] } ], @@ -34977,7 +31255,7 @@ export default { 3 ], "type": [ - 757 + 744 ], "__typename": [ 78 @@ -34985,10 +31263,10 @@ export default { }, "map_pools_aggregate": { "aggregate": [ - 2097 + 1845 ], "nodes": [ - 2095 + 1843 ], "__typename": [ 78 @@ -34999,7 +31277,7 @@ export default { 38, { "columns": [ - 2108, + 1856, "[map_pools_select_column!]" ], "distinct": [ @@ -35008,10 +31286,10 @@ export default { } ], "max": [ - 2101 + 1849 ], "min": [ - 2102 + 1850 ], "__typename": [ 78 @@ -35019,34 +31297,34 @@ export default { }, "map_pools_bool_exp": { "_and": [ - 2098 + 1846 ], "_not": [ - 2098 + 1846 ], "_or": [ - 2098 + 1846 ], "e_type": [ - 755 + 742 ], "enabled": [ 4 ], "id": [ - 4764 + 4623 ], "maps": [ - 5413 + 5221 ], "maps_aggregate": [ - 5406 + 5214 ], "seed": [ 4 ], "type": [ - 758 + 745 ], "__typename": [ 78 @@ -35055,22 +31333,22 @@ export default { "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 763 + 750 ], "enabled": [ 3 ], "id": [ - 4762 + 4621 ], "maps": [ - 5412 + 5220 ], "seed": [ 3 ], "type": [ - 757 + 744 ], "__typename": [ 78 @@ -35078,7 +31356,7 @@ export default { }, "map_pools_max_fields": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -35086,7 +31364,7 @@ export default { }, "map_pools_min_fields": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -35097,7 +31375,7 @@ export default { 38 ], "returning": [ - 2095 + 1843 ], "__typename": [ 78 @@ -35105,10 +31383,10 @@ export default { }, "map_pools_obj_rel_insert_input": { "data": [ - 2100 + 1848 ], "on_conflict": [ - 2105 + 1853 ], "__typename": [ 78 @@ -35116,13 +31394,13 @@ export default { }, "map_pools_on_conflict": { "constraint": [ - 2099 + 1847 ], "update_columns": [ - 2112 + 1860 ], "where": [ - 2098 + 1846 ], "__typename": [ 78 @@ -35130,22 +31408,22 @@ export default { }, "map_pools_order_by": { "e_type": [ - 765 + 752 ], "enabled": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "maps_aggregate": [ - 5411 + 5219 ], "seed": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "__typename": [ 78 @@ -35153,7 +31431,7 @@ export default { }, "map_pools_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -35165,13 +31443,13 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "seed": [ 3 ], "type": [ - 757 + 744 ], "__typename": [ 78 @@ -35179,7 +31457,7 @@ export default { }, "map_pools_stream_cursor_input": { "initial_value": [ - 2111 + 1859 ], "ordering": [ 236 @@ -35193,13 +31471,13 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "seed": [ 3 ], "type": [ - 757 + 744 ], "__typename": [ 78 @@ -35208,10 +31486,10 @@ export default { "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 2109 + 1857 ], "where": [ - 2098 + 1846 ], "__typename": [ 78 @@ -35222,22 +31500,22 @@ export default { 3 ], "e_match_type": [ - 855 + 842 ], "enabled": [ 3 ], "id": [ - 4762 + 4621 ], "label": [ 78 ], "match_maps": [ - 2434, + 2182, { "distinct_on": [ - 2456, + 2204, "[match_maps_select_column!]" ], "limit": [ @@ -35247,19 +31525,19 @@ export default { 38 ], "order_by": [ - 2454, + 2202, "[match_maps_order_by!]" ], "where": [ - 2443 + 2191 ] } ], "match_maps_aggregate": [ - 2435, + 2183, { "distinct_on": [ - 2456, + 2204, "[match_maps_select_column!]" ], "limit": [ @@ -35269,19 +31547,19 @@ export default { 38 ], "order_by": [ - 2454, + 2202, "[match_maps_order_by!]" ], "where": [ - 2443 + 2191 ] } ], "match_veto_picks": [ - 2410, + 2158, { "distinct_on": [ - 2428, + 2176, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -35291,19 +31569,19 @@ export default { 38 ], "order_by": [ - 2426, + 2174, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2165 ] } ], "match_veto_picks_aggregate": [ - 2411, + 2159, { "distinct_on": [ - 2428, + 2176, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -35313,11 +31591,11 @@ export default { 38 ], "order_by": [ - 2426, + 2174, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2165 ] } ], @@ -35331,7 +31609,7 @@ export default { 78 ], "type": [ - 860 + 847 ], "workshop_map_id": [ 78 @@ -35342,10 +31620,10 @@ export default { }, "maps_aggregate": { "aggregate": [ - 2120 + 1868 ], "nodes": [ - 2114 + 1862 ], "__typename": [ 78 @@ -35353,13 +31631,13 @@ export default { }, "maps_aggregate_bool_exp": { "bool_and": [ - 2117 + 1865 ], "bool_or": [ - 2118 + 1866 ], "count": [ - 2119 + 1867 ], "__typename": [ 78 @@ -35367,13 +31645,13 @@ export default { }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 2136 + 1884 ], "distinct": [ 3 ], "filter": [ - 2123 + 1871 ], "predicate": [ 4 @@ -35384,13 +31662,13 @@ export default { }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 2137 + 1885 ], "distinct": [ 3 ], "filter": [ - 2123 + 1871 ], "predicate": [ 4 @@ -35401,13 +31679,13 @@ export default { }, "maps_aggregate_bool_exp_count": { "arguments": [ - 2135 + 1883 ], "distinct": [ 3 ], "filter": [ - 2123 + 1871 ], "predicate": [ 39 @@ -35421,7 +31699,7 @@ export default { 38, { "columns": [ - 2135, + 1883, "[maps_select_column!]" ], "distinct": [ @@ -35430,10 +31708,10 @@ export default { } ], "max": [ - 2126 + 1874 ], "min": [ - 2128 + 1876 ], "__typename": [ 78 @@ -35441,13 +31719,13 @@ export default { }, "maps_aggregate_order_by": { "count": [ - 2781 + 2529 ], "max": [ - 2127 + 1875 ], "min": [ - 2129 + 1877 ], "__typename": [ 78 @@ -35455,10 +31733,10 @@ export default { }, "maps_arr_rel_insert_input": { "data": [ - 2125 + 1873 ], "on_conflict": [ - 2132 + 1880 ], "__typename": [ 78 @@ -35466,40 +31744,40 @@ export default { }, "maps_bool_exp": { "_and": [ - 2123 + 1871 ], "_not": [ - 2123 + 1871 ], "_or": [ - 2123 + 1871 ], "active_pool": [ 4 ], "e_match_type": [ - 858 + 845 ], "enabled": [ 4 ], "id": [ - 4764 + 4623 ], "label": [ 80 ], "match_maps": [ - 2443 + 2191 ], "match_maps_aggregate": [ - 2436 + 2184 ], "match_veto_picks": [ - 2417 + 2165 ], "match_veto_picks_aggregate": [ - 2412 + 2160 ], "name": [ 80 @@ -35511,7 +31789,7 @@ export default { 80 ], "type": [ - 861 + 848 ], "workshop_map_id": [ 80 @@ -35526,22 +31804,22 @@ export default { 3 ], "e_match_type": [ - 866 + 853 ], "enabled": [ 3 ], "id": [ - 4762 + 4621 ], "label": [ 78 ], "match_maps": [ - 2440 + 2188 ], "match_veto_picks": [ - 2416 + 2164 ], "name": [ 78 @@ -35553,7 +31831,7 @@ export default { 78 ], "type": [ - 860 + 847 ], "workshop_map_id": [ 78 @@ -35564,7 +31842,7 @@ export default { }, "maps_max_fields": { "id": [ - 4762 + 4621 ], "label": [ 78 @@ -35587,22 +31865,22 @@ export default { }, "maps_max_order_by": { "id": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "name": [ - 2781 + 2529 ], "patch": [ - 2781 + 2529 ], "poster": [ - 2781 + 2529 ], "workshop_map_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -35610,7 +31888,7 @@ export default { }, "maps_min_fields": { "id": [ - 4762 + 4621 ], "label": [ 78 @@ -35633,22 +31911,22 @@ export default { }, "maps_min_order_by": { "id": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "name": [ - 2781 + 2529 ], "patch": [ - 2781 + 2529 ], "poster": [ - 2781 + 2529 ], "workshop_map_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -35659,7 +31937,7 @@ export default { 38 ], "returning": [ - 2114 + 1862 ], "__typename": [ 78 @@ -35667,10 +31945,10 @@ export default { }, "maps_obj_rel_insert_input": { "data": [ - 2125 + 1873 ], "on_conflict": [ - 2132 + 1880 ], "__typename": [ 78 @@ -35678,13 +31956,13 @@ export default { }, "maps_on_conflict": { "constraint": [ - 2124 + 1872 ], "update_columns": [ - 2141 + 1889 ], "where": [ - 2123 + 1871 ], "__typename": [ 78 @@ -35692,40 +31970,40 @@ export default { }, "maps_order_by": { "active_pool": [ - 2781 + 2529 ], "e_match_type": [ - 868 + 855 ], "enabled": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "match_maps_aggregate": [ - 2439 + 2187 ], "match_veto_picks_aggregate": [ - 2415 + 2163 ], "name": [ - 2781 + 2529 ], "patch": [ - 2781 + 2529 ], "poster": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "workshop_map_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -35733,7 +32011,7 @@ export default { }, "maps_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -35750,7 +32028,7 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "label": [ 78 @@ -35765,7 +32043,7 @@ export default { 78 ], "type": [ - 860 + 847 ], "workshop_map_id": [ 78 @@ -35776,7 +32054,7 @@ export default { }, "maps_stream_cursor_input": { "initial_value": [ - 2140 + 1888 ], "ordering": [ 236 @@ -35793,7 +32071,7 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "label": [ 78 @@ -35808,7 +32086,7 @@ export default { 78 ], "type": [ - 860 + 847 ], "workshop_map_id": [ 78 @@ -35820,10 +32098,10 @@ export default { "maps_update_column": {}, "maps_updates": { "_set": [ - 2138 + 1886 ], "where": [ - 2123 + 1871 ], "__typename": [ 78 @@ -35831,7 +32109,7 @@ export default { }, "match_clips": { "created_at": [ - 4324 + 4076 ], "download_url": [ 78 @@ -35843,22 +32121,22 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "kills_count": [ 38 ], "match_map": [ - 2434 + 2182 ], "match_map_demo": [ - 2318 + 2066 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "render_jobs": [ 185, @@ -35911,7 +32189,7 @@ export default { 180 ], "target": [ - 3739 + 3487 ], "target_steam_id": [ 180 @@ -35926,7 +32204,7 @@ export default { 78 ], "user": [ - 3739 + 3487 ], "user_steam_id": [ 180 @@ -35935,7 +32213,7 @@ export default { 38 ], "visibility": [ - 778 + 765 ], "__typename": [ 78 @@ -35943,10 +32221,10 @@ export default { }, "match_clips_aggregate": { "aggregate": [ - 2147 + 1895 ], "nodes": [ - 2143 + 1891 ], "__typename": [ 78 @@ -35954,7 +32232,7 @@ export default { }, "match_clips_aggregate_bool_exp": { "count": [ - 2146 + 1894 ], "__typename": [ 78 @@ -35962,13 +32240,13 @@ export default { }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 2165 + 1913 ], "distinct": [ 3 ], "filter": [ - 2152 + 1900 ], "predicate": [ 39 @@ -35979,13 +32257,13 @@ export default { }, "match_clips_aggregate_fields": { "avg": [ - 2150 + 1898 ], "count": [ 38, { "columns": [ - 2165, + 1913, "[match_clips_select_column!]" ], "distinct": [ @@ -35994,31 +32272,31 @@ export default { } ], "max": [ - 2156 + 1904 ], "min": [ - 2158 + 1906 ], "stddev": [ - 2167 + 1915 ], "stddev_pop": [ - 2169 + 1917 ], "stddev_samp": [ - 2171 + 1919 ], "sum": [ - 2175 + 1923 ], "var_pop": [ - 2179 + 1927 ], "var_samp": [ - 2181 + 1929 ], "variance": [ - 2183 + 1931 ], "__typename": [ 78 @@ -36026,37 +32304,37 @@ export default { }, "match_clips_aggregate_order_by": { "avg": [ - 2151 + 1899 ], "count": [ - 2781 + 2529 ], "max": [ - 2157 + 1905 ], "min": [ - 2159 + 1907 ], "stddev": [ - 2168 + 1916 ], "stddev_pop": [ - 2170 + 1918 ], "stddev_samp": [ - 2172 + 1920 ], "sum": [ - 2176 + 1924 ], "var_pop": [ - 2180 + 1928 ], "var_samp": [ - 2182 + 1930 ], "variance": [ - 2184 + 1932 ], "__typename": [ 78 @@ -36064,10 +32342,10 @@ export default { }, "match_clips_arr_rel_insert_input": { "data": [ - 2155 + 1903 ], "on_conflict": [ - 2162 + 1910 ], "__typename": [ 78 @@ -36101,25 +32379,25 @@ export default { }, "match_clips_avg_order_by": { "duration_ms": [ - 2781 + 2529 ], "kills_count": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "target_steam_id": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "views_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -36127,16 +32405,16 @@ export default { }, "match_clips_bool_exp": { "_and": [ - 2152 + 1900 ], "_not": [ - 2152 + 1900 ], "_or": [ - 2152 + 1900 ], "created_at": [ - 4325 + 4077 ], "download_url": [ 80 @@ -36148,22 +32426,22 @@ export default { 80 ], "id": [ - 4764 + 4623 ], "kills_count": [ 39 ], "match_map": [ - 2443 + 2191 ], "match_map_demo": [ - 2330 + 2078 ], "match_map_demo_id": [ - 4764 + 4623 ], "match_map_id": [ - 4764 + 4623 ], "render_jobs": [ 197 @@ -36178,7 +32456,7 @@ export default { 182 ], "target": [ - 3743 + 3491 ], "target_steam_id": [ 182 @@ -36193,7 +32471,7 @@ export default { 80 ], "user": [ - 3743 + 3491 ], "user_steam_id": [ 182 @@ -36202,7 +32480,7 @@ export default { 39 ], "visibility": [ - 779 + 766 ], "__typename": [ 78 @@ -36237,7 +32515,7 @@ export default { }, "match_clips_insert_input": { "created_at": [ - 4324 + 4076 ], "duration_ms": [ 38 @@ -36246,22 +32524,22 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "kills_count": [ 38 ], "match_map": [ - 2452 + 2200 ], "match_map_demo": [ - 2342 + 2090 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "render_jobs": [ 194 @@ -36273,7 +32551,7 @@ export default { 180 ], "target": [ - 3750 + 3498 ], "target_steam_id": [ 180 @@ -36285,7 +32563,7 @@ export default { 78 ], "user": [ - 3750 + 3498 ], "user_steam_id": [ 180 @@ -36294,7 +32572,7 @@ export default { 38 ], "visibility": [ - 778 + 765 ], "__typename": [ 78 @@ -36302,7 +32580,7 @@ export default { }, "match_clips_max_fields": { "created_at": [ - 4324 + 4076 ], "download_url": [ 78 @@ -36314,16 +32592,16 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 @@ -36355,46 +32633,46 @@ export default { }, "match_clips_max_order_by": { "created_at": [ - 2781 + 2529 ], "duration_ms": [ - 2781 + 2529 ], "file": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "kills_count": [ - 2781 + 2529 ], "match_map_demo_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "target_steam_id": [ - 2781 + 2529 ], "thumbnail_url": [ - 2781 + 2529 ], "title": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "views_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -36402,7 +32680,7 @@ export default { }, "match_clips_min_fields": { "created_at": [ - 4324 + 4076 ], "download_url": [ 78 @@ -36414,16 +32692,16 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 @@ -36455,46 +32733,46 @@ export default { }, "match_clips_min_order_by": { "created_at": [ - 2781 + 2529 ], "duration_ms": [ - 2781 + 2529 ], "file": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "kills_count": [ - 2781 + 2529 ], "match_map_demo_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "target_steam_id": [ - 2781 + 2529 ], "thumbnail_url": [ - 2781 + 2529 ], "title": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "views_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -36505,7 +32783,7 @@ export default { 38 ], "returning": [ - 2143 + 1891 ], "__typename": [ 78 @@ -36513,10 +32791,10 @@ export default { }, "match_clips_obj_rel_insert_input": { "data": [ - 2155 + 1903 ], "on_conflict": [ - 2162 + 1910 ], "__typename": [ 78 @@ -36524,13 +32802,13 @@ export default { }, "match_clips_on_conflict": { "constraint": [ - 2153 + 1901 ], "update_columns": [ - 2177 + 1925 ], "where": [ - 2152 + 1900 ], "__typename": [ 78 @@ -36538,70 +32816,70 @@ export default { }, "match_clips_order_by": { "created_at": [ - 2781 + 2529 ], "download_url": [ - 2781 + 2529 ], "duration_ms": [ - 2781 + 2529 ], "file": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "kills_count": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_demo": [ - 2344 + 2092 ], "match_map_demo_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "render_jobs_aggregate": [ 192 ], "round": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "target": [ - 3752 + 3500 ], "target_steam_id": [ - 2781 + 2529 ], "thumbnail_download_url": [ - 2781 + 2529 ], "thumbnail_url": [ - 2781 + 2529 ], "title": [ - 2781 + 2529 ], "user": [ - 3752 + 3500 ], "user_steam_id": [ - 2781 + 2529 ], "views_count": [ - 2781 + 2529 ], "visibility": [ - 2781 + 2529 ], "__typename": [ 78 @@ -36609,7 +32887,7 @@ export default { }, "match_clips_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -36618,7 +32896,7 @@ export default { "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4324 + 4076 ], "duration_ms": [ 38 @@ -36627,16 +32905,16 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 @@ -36660,7 +32938,7 @@ export default { 38 ], "visibility": [ - 778 + 765 ], "__typename": [ 78 @@ -36694,25 +32972,25 @@ export default { }, "match_clips_stddev_order_by": { "duration_ms": [ - 2781 + 2529 ], "kills_count": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "target_steam_id": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "views_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -36746,25 +33024,25 @@ export default { }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 2781 + 2529 ], "kills_count": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "target_steam_id": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "views_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -36798,25 +33076,25 @@ export default { }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 2781 + 2529 ], "kills_count": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "target_steam_id": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "views_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -36824,7 +33102,7 @@ export default { }, "match_clips_stream_cursor_input": { "initial_value": [ - 2174 + 1922 ], "ordering": [ 236 @@ -36835,7 +33113,7 @@ export default { }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "duration_ms": [ 38 @@ -36844,16 +33122,16 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 @@ -36877,7 +33155,7 @@ export default { 38 ], "visibility": [ - 778 + 765 ], "__typename": [ 78 @@ -36911,25 +33189,25 @@ export default { }, "match_clips_sum_order_by": { "duration_ms": [ - 2781 + 2529 ], "kills_count": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "target_steam_id": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "views_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -36938,13 +33216,13 @@ export default { "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 2154 + 1902 ], "_set": [ - 2166 + 1914 ], "where": [ - 2152 + 1900 ], "__typename": [ 78 @@ -36978,25 +33256,25 @@ export default { }, "match_clips_var_pop_order_by": { "duration_ms": [ - 2781 + 2529 ], "kills_count": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "target_steam_id": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "views_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -37030,25 +33308,25 @@ export default { }, "match_clips_var_samp_order_by": { "duration_ms": [ - 2781 + 2529 ], "kills_count": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "target_steam_id": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "views_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -37082,25 +33360,25 @@ export default { }, "match_clips_variance_order_by": { "duration_ms": [ - 2781 + 2529 ], "kills_count": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "target_steam_id": [ - 2781 + 2529 ], "user_steam_id": [ - 2781 + 2529 ], "views_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -37108,52 +33386,52 @@ export default { }, "match_demo_sessions": { "created_at": [ - 4324 + 4076 ], "error_message": [ 78 ], "game_server_node": [ - 1528 + 1277 ], "game_server_node_id": [ 78 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4324 + 4076 ], "last_status_at": [ - 4324 + 4076 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_demo": [ - 2318 + 2066 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "status": [ 78 ], "status_history": [ - 1652, + 1400, { "path": [ 78 @@ -37164,7 +33442,7 @@ export default { 78 ], "watcher": [ - 3739 + 3487 ], "watcher_steam_id": [ 180 @@ -37175,10 +33453,10 @@ export default { }, "match_demo_sessions_aggregate": { "aggregate": [ - 2189 + 1937 ], "nodes": [ - 2185 + 1933 ], "__typename": [ 78 @@ -37186,7 +33464,7 @@ export default { }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 2188 + 1936 ], "__typename": [ 78 @@ -37194,13 +33472,13 @@ export default { }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 2211 + 1959 ], "distinct": [ 3 ], "filter": [ - 2195 + 1943 ], "predicate": [ 39 @@ -37211,13 +33489,13 @@ export default { }, "match_demo_sessions_aggregate_fields": { "avg": [ - 2193 + 1941 ], "count": [ 38, { "columns": [ - 2211, + 1959, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -37226,31 +33504,31 @@ export default { } ], "max": [ - 2202 + 1950 ], "min": [ - 2204 + 1952 ], "stddev": [ - 2213 + 1961 ], "stddev_pop": [ - 2215 + 1963 ], "stddev_samp": [ - 2217 + 1965 ], "sum": [ - 2221 + 1969 ], "var_pop": [ - 2225 + 1973 ], "var_samp": [ - 2227 + 1975 ], "variance": [ - 2229 + 1977 ], "__typename": [ 78 @@ -37258,37 +33536,37 @@ export default { }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 2194 + 1942 ], "count": [ - 2781 + 2529 ], "max": [ - 2203 + 1951 ], "min": [ - 2205 + 1953 ], "stddev": [ - 2214 + 1962 ], "stddev_pop": [ - 2216 + 1964 ], "stddev_samp": [ - 2218 + 1966 ], "sum": [ - 2222 + 1970 ], "var_pop": [ - 2226 + 1974 ], "var_samp": [ - 2228 + 1976 ], "variance": [ - 2230 + 1978 ], "__typename": [ 78 @@ -37296,7 +33574,7 @@ export default { }, "match_demo_sessions_append_input": { "status_history": [ - 1652 + 1400 ], "__typename": [ 78 @@ -37304,10 +33582,10 @@ export default { }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 2201 + 1949 ], "on_conflict": [ - 2207 + 1955 ], "__typename": [ 78 @@ -37323,7 +33601,7 @@ export default { }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -37331,67 +33609,67 @@ export default { }, "match_demo_sessions_bool_exp": { "_and": [ - 2195 + 1943 ], "_not": [ - 2195 + 1943 ], "_or": [ - 2195 + 1943 ], "created_at": [ - 4325 + 4077 ], "error_message": [ 80 ], "game_server_node": [ - 1540 + 1289 ], "game_server_node_id": [ 80 ], "id": [ - 4764 + 4623 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4325 + 4077 ], "last_status_at": [ - 4325 + 4077 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_demo": [ - 2330 + 2078 ], "match_map_demo_id": [ - 4764 + 4623 ], "match_map_id": [ - 4764 + 4623 ], "status": [ 80 ], "status_history": [ - 1654 + 1402 ], "stream_url": [ 80 ], "watcher": [ - 3743 + 3491 ], "watcher_steam_id": [ 182 @@ -37435,58 +33713,58 @@ export default { }, "match_demo_sessions_insert_input": { "created_at": [ - 4324 + 4076 ], "error_message": [ 78 ], "game_server_node": [ - 1552 + 1301 ], "game_server_node_id": [ 78 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4324 + 4076 ], "last_status_at": [ - 4324 + 4076 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2452 + 2200 ], "match_map_demo": [ - 2342 + 2090 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "status": [ 78 ], "status_history": [ - 1652 + 1400 ], "stream_url": [ 78 ], "watcher": [ - 3750 + 3498 ], "watcher_steam_id": [ 180 @@ -37497,7 +33775,7 @@ export default { }, "match_demo_sessions_max_fields": { "created_at": [ - 4324 + 4076 ], "error_message": [ 78 @@ -37506,25 +33784,25 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4324 + 4076 ], "last_status_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "status": [ 78 @@ -37541,43 +33819,43 @@ export default { }, "match_demo_sessions_max_order_by": { "created_at": [ - 2781 + 2529 ], "error_message": [ - 2781 + 2529 ], "game_server_node_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "k8s_job_name": [ - 2781 + 2529 ], "last_activity_at": [ - 2781 + 2529 ], "last_status_at": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_demo_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "stream_url": [ - 2781 + 2529 ], "watcher_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -37585,7 +33863,7 @@ export default { }, "match_demo_sessions_min_fields": { "created_at": [ - 4324 + 4076 ], "error_message": [ 78 @@ -37594,25 +33872,25 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4324 + 4076 ], "last_status_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "status": [ 78 @@ -37629,43 +33907,43 @@ export default { }, "match_demo_sessions_min_order_by": { "created_at": [ - 2781 + 2529 ], "error_message": [ - 2781 + 2529 ], "game_server_node_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "k8s_job_name": [ - 2781 + 2529 ], "last_activity_at": [ - 2781 + 2529 ], "last_status_at": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_demo_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "stream_url": [ - 2781 + 2529 ], "watcher_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -37676,7 +33954,7 @@ export default { 38 ], "returning": [ - 2185 + 1933 ], "__typename": [ 78 @@ -37684,13 +33962,13 @@ export default { }, "match_demo_sessions_on_conflict": { "constraint": [ - 2196 + 1944 ], "update_columns": [ - 2223 + 1971 ], "where": [ - 2195 + 1943 ], "__typename": [ 78 @@ -37698,61 +33976,61 @@ export default { }, "match_demo_sessions_order_by": { "created_at": [ - 2781 + 2529 ], "error_message": [ - 2781 + 2529 ], "game_server_node": [ - 1554 + 1303 ], "game_server_node_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "k8s_job_name": [ - 2781 + 2529 ], "last_activity_at": [ - 2781 + 2529 ], "last_status_at": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_demo": [ - 2344 + 2092 ], "match_map_demo_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "status_history": [ - 2781 + 2529 ], "stream_url": [ - 2781 + 2529 ], "watcher": [ - 3752 + 3500 ], "watcher_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -37760,7 +34038,7 @@ export default { }, "match_demo_sessions_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -37768,7 +34046,7 @@ export default { }, "match_demo_sessions_prepend_input": { "status_history": [ - 1652 + 1400 ], "__typename": [ 78 @@ -37777,7 +34055,7 @@ export default { "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4324 + 4076 ], "error_message": [ 78 @@ -37786,31 +34064,31 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4324 + 4076 ], "last_status_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "status": [ 78 ], "status_history": [ - 1652 + 1400 ], "stream_url": [ 78 @@ -37832,7 +34110,7 @@ export default { }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -37848,7 +34126,7 @@ export default { }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -37864,7 +34142,7 @@ export default { }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -37872,7 +34150,7 @@ export default { }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 2220 + 1968 ], "ordering": [ 236 @@ -37883,7 +34161,7 @@ export default { }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "error_message": [ 78 @@ -37892,31 +34170,31 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4324 + 4076 ], "last_status_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "status": [ 78 ], "status_history": [ - 1652 + 1400 ], "stream_url": [ 78 @@ -37938,7 +34216,7 @@ export default { }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -37947,28 +34225,28 @@ export default { "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 2191 + 1939 ], "_delete_at_path": [ - 2197 + 1945 ], "_delete_elem": [ - 2198 + 1946 ], "_delete_key": [ - 2199 + 1947 ], "_inc": [ - 2200 + 1948 ], "_prepend": [ - 2210 + 1958 ], "_set": [ - 2212 + 1960 ], "where": [ - 2195 + 1943 ], "__typename": [ 78 @@ -37984,7 +34262,7 @@ export default { }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -38000,7 +34278,7 @@ export default { }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -38016,7 +34294,7 @@ export default { }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -38033,19 +34311,19 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "lineup": [ - 2276 + 2024 ], "match_lineup_id": [ - 4762 + 4621 ], "placeholder_name": [ 78 ], "player": [ - 3739 + 3487 ], "steam_id": [ 180 @@ -38056,10 +34334,10 @@ export default { }, "match_lineup_players_aggregate": { "aggregate": [ - 2237 + 1985 ], "nodes": [ - 2231 + 1979 ], "__typename": [ 78 @@ -38067,13 +34345,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 2234 + 1982 ], "bool_or": [ - 2235 + 1983 ], "count": [ - 2236 + 1984 ], "__typename": [ 78 @@ -38081,13 +34359,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2255 + 2003 ], "distinct": [ 3 ], "filter": [ - 2242 + 1990 ], "predicate": [ 4 @@ -38098,13 +34376,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2256 + 2004 ], "distinct": [ 3 ], "filter": [ - 2242 + 1990 ], "predicate": [ 4 @@ -38115,13 +34393,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 2254 + 2002 ], "distinct": [ 3 ], "filter": [ - 2242 + 1990 ], "predicate": [ 39 @@ -38132,13 +34410,13 @@ export default { }, "match_lineup_players_aggregate_fields": { "avg": [ - 2240 + 1988 ], "count": [ 38, { "columns": [ - 2254, + 2002, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -38147,31 +34425,31 @@ export default { } ], "max": [ - 2246 + 1994 ], "min": [ - 2248 + 1996 ], "stddev": [ - 2258 + 2006 ], "stddev_pop": [ - 2260 + 2008 ], "stddev_samp": [ - 2262 + 2010 ], "sum": [ - 2266 + 2014 ], "var_pop": [ - 2270 + 2018 ], "var_samp": [ - 2272 + 2020 ], "variance": [ - 2274 + 2022 ], "__typename": [ 78 @@ -38179,37 +34457,37 @@ export default { }, "match_lineup_players_aggregate_order_by": { "avg": [ - 2241 + 1989 ], "count": [ - 2781 + 2529 ], "max": [ - 2247 + 1995 ], "min": [ - 2249 + 1997 ], "stddev": [ - 2259 + 2007 ], "stddev_pop": [ - 2261 + 2009 ], "stddev_samp": [ - 2263 + 2011 ], "sum": [ - 2267 + 2015 ], "var_pop": [ - 2271 + 2019 ], "var_samp": [ - 2273 + 2021 ], "variance": [ - 2275 + 2023 ], "__typename": [ 78 @@ -38217,10 +34495,10 @@ export default { }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 2245 + 1993 ], "on_conflict": [ - 2251 + 1999 ], "__typename": [ 78 @@ -38236,7 +34514,7 @@ export default { }, "match_lineup_players_avg_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -38244,13 +34522,13 @@ export default { }, "match_lineup_players_bool_exp": { "_and": [ - 2242 + 1990 ], "_not": [ - 2242 + 1990 ], "_or": [ - 2242 + 1990 ], "captain": [ 4 @@ -38262,19 +34540,19 @@ export default { 80 ], "id": [ - 4764 + 4623 ], "lineup": [ - 2285 + 2033 ], "match_lineup_id": [ - 4764 + 4623 ], "placeholder_name": [ 80 ], "player": [ - 3743 + 3491 ], "steam_id": [ 182 @@ -38303,19 +34581,19 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "lineup": [ - 2294 + 2042 ], "match_lineup_id": [ - 4762 + 4621 ], "placeholder_name": [ 78 ], "player": [ - 3750 + 3498 ], "steam_id": [ 180 @@ -38329,10 +34607,10 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "placeholder_name": [ 78 @@ -38346,19 +34624,19 @@ export default { }, "match_lineup_players_max_order_by": { "discord_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match_lineup_id": [ - 2781 + 2529 ], "placeholder_name": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -38369,10 +34647,10 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "placeholder_name": [ 78 @@ -38386,19 +34664,19 @@ export default { }, "match_lineup_players_min_order_by": { "discord_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match_lineup_id": [ - 2781 + 2529 ], "placeholder_name": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -38409,7 +34687,7 @@ export default { 38 ], "returning": [ - 2231 + 1979 ], "__typename": [ 78 @@ -38417,13 +34695,13 @@ export default { }, "match_lineup_players_on_conflict": { "constraint": [ - 2243 + 1991 ], "update_columns": [ - 2268 + 2016 ], "where": [ - 2242 + 1990 ], "__typename": [ 78 @@ -38431,31 +34709,31 @@ export default { }, "match_lineup_players_order_by": { "captain": [ - 2781 + 2529 ], "checked_in": [ - 2781 + 2529 ], "discord_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "lineup": [ - 2296 + 2044 ], "match_lineup_id": [ - 2781 + 2529 ], "placeholder_name": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -38463,7 +34741,7 @@ export default { }, "match_lineup_players_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -38483,10 +34761,10 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "placeholder_name": [ 78 @@ -38508,7 +34786,7 @@ export default { }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -38524,7 +34802,7 @@ export default { }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -38540,7 +34818,7 @@ export default { }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -38548,7 +34826,7 @@ export default { }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 2265 + 2013 ], "ordering": [ 236 @@ -38568,10 +34846,10 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "placeholder_name": [ 78 @@ -38593,7 +34871,7 @@ export default { }, "match_lineup_players_sum_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -38602,13 +34880,13 @@ export default { "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 2244 + 1992 ], "_set": [ - 2257 + 2005 ], "where": [ - 2242 + 1990 ], "__typename": [ 78 @@ -38624,7 +34902,7 @@ export default { }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -38640,7 +34918,7 @@ export default { }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -38656,7 +34934,7 @@ export default { }, "match_lineup_players_variance_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -38673,16 +34951,16 @@ export default { 3 ], "captain": [ - 4918 + 4726 ], "coach": [ - 3739 + 3487 ], "coach_steam_id": [ 180 ], "id": [ - 4762 + 4621 ], "is_on_lineup": [ 3 @@ -38697,10 +34975,10 @@ export default { 3 ], "lineup_players": [ - 2231, + 1979, { "distinct_on": [ - 2254, + 2002, "[match_lineup_players_select_column!]" ], "limit": [ @@ -38710,19 +34988,19 @@ export default { 38 ], "order_by": [ - 2252, + 2000, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 1990 ] } ], "lineup_players_aggregate": [ - 2232, + 1980, { "distinct_on": [ - 2254, + 2002, "[match_lineup_players_select_column!]" ], "limit": [ @@ -38732,25 +35010,25 @@ export default { 38 ], "order_by": [ - 2252, + 2000, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 1990 ] } ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_veto_picks": [ - 2410, + 2158, { "distinct_on": [ - 2428, + 2176, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38760,19 +35038,19 @@ export default { 38 ], "order_by": [ - 2426, + 2174, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2165 ] } ], "match_veto_picks_aggregate": [ - 2411, + 2159, { "distinct_on": [ - 2428, + 2176, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38782,11 +35060,11 @@ export default { 38 ], "order_by": [ - 2426, + 2174, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2165 ] } ], @@ -38794,10 +35072,10 @@ export default { 78 ], "team": [ - 4281 + 4029 ], "team_id": [ - 4762 + 4621 ], "team_name": [ 78 @@ -38808,10 +35086,10 @@ export default { }, "match_lineups_aggregate": { "aggregate": [ - 2280 + 2028 ], "nodes": [ - 2276 + 2024 ], "__typename": [ 78 @@ -38819,7 +35097,7 @@ export default { }, "match_lineups_aggregate_bool_exp": { "count": [ - 2279 + 2027 ], "__typename": [ 78 @@ -38827,13 +35105,13 @@ export default { }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 2298 + 2046 ], "distinct": [ 3 ], "filter": [ - 2285 + 2033 ], "predicate": [ 39 @@ -38844,13 +35122,13 @@ export default { }, "match_lineups_aggregate_fields": { "avg": [ - 2283 + 2031 ], "count": [ 38, { "columns": [ - 2298, + 2046, "[match_lineups_select_column!]" ], "distinct": [ @@ -38859,31 +35137,31 @@ export default { } ], "max": [ - 2289 + 2037 ], "min": [ - 2291 + 2039 ], "stddev": [ - 2300 + 2048 ], "stddev_pop": [ - 2302 + 2050 ], "stddev_samp": [ - 2304 + 2052 ], "sum": [ - 2308 + 2056 ], "var_pop": [ - 2312 + 2060 ], "var_samp": [ - 2314 + 2062 ], "variance": [ - 2316 + 2064 ], "__typename": [ 78 @@ -38891,37 +35169,37 @@ export default { }, "match_lineups_aggregate_order_by": { "avg": [ - 2284 + 2032 ], "count": [ - 2781 + 2529 ], "max": [ - 2290 + 2038 ], "min": [ - 2292 + 2040 ], "stddev": [ - 2301 + 2049 ], "stddev_pop": [ - 2303 + 2051 ], "stddev_samp": [ - 2305 + 2053 ], "sum": [ - 2309 + 2057 ], "var_pop": [ - 2313 + 2061 ], "var_samp": [ - 2315 + 2063 ], "variance": [ - 2317 + 2065 ], "__typename": [ 78 @@ -38929,10 +35207,10 @@ export default { }, "match_lineups_arr_rel_insert_input": { "data": [ - 2288 + 2036 ], "on_conflict": [ - 2295 + 2043 ], "__typename": [ 78 @@ -38948,7 +35226,7 @@ export default { }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -38956,13 +35234,13 @@ export default { }, "match_lineups_bool_exp": { "_and": [ - 2285 + 2033 ], "_not": [ - 2285 + 2033 ], "_or": [ - 2285 + 2033 ], "can_pick_map_veto": [ 4 @@ -38974,16 +35252,16 @@ export default { 4 ], "captain": [ - 4922 + 4730 ], "coach": [ - 3743 + 3491 ], "coach_steam_id": [ 182 ], "id": [ - 4764 + 4623 ], "is_on_lineup": [ 4 @@ -38998,31 +35276,31 @@ export default { 4 ], "lineup_players": [ - 2242 + 1990 ], "lineup_players_aggregate": [ - 2233 + 1981 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_veto_picks": [ - 2417 + 2165 ], "match_veto_picks_aggregate": [ - 2412 + 2160 ], "name": [ 80 ], "team": [ - 4290 + 4040 ], "team_id": [ - 4764 + 4623 ], "team_name": [ 80 @@ -39042,34 +35320,34 @@ export default { }, "match_lineups_insert_input": { "captain": [ - 4928 + 4736 ], "coach": [ - 3750 + 3498 ], "coach_steam_id": [ 180 ], "id": [ - 4762 + 4621 ], "lineup_players": [ - 2239 + 1987 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_veto_picks": [ - 2416 + 2164 ], "team": [ - 4299 + 4049 ], "team_id": [ - 4762 + 4621 ], "team_name": [ 78 @@ -39083,16 +35361,16 @@ export default { 180 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "name": [ 78 ], "team_id": [ - 4762 + 4621 ], "team_name": [ 78 @@ -39103,19 +35381,19 @@ export default { }, "match_lineups_max_order_by": { "coach_steam_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "team_id": [ - 2781 + 2529 ], "team_name": [ - 2781 + 2529 ], "__typename": [ 78 @@ -39126,16 +35404,16 @@ export default { 180 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "name": [ 78 ], "team_id": [ - 4762 + 4621 ], "team_name": [ 78 @@ -39146,19 +35424,19 @@ export default { }, "match_lineups_min_order_by": { "coach_steam_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "team_id": [ - 2781 + 2529 ], "team_name": [ - 2781 + 2529 ], "__typename": [ 78 @@ -39169,7 +35447,7 @@ export default { 38 ], "returning": [ - 2276 + 2024 ], "__typename": [ 78 @@ -39177,10 +35455,10 @@ export default { }, "match_lineups_obj_rel_insert_input": { "data": [ - 2288 + 2036 ], "on_conflict": [ - 2295 + 2043 ], "__typename": [ 78 @@ -39188,13 +35466,13 @@ export default { }, "match_lineups_on_conflict": { "constraint": [ - 2286 + 2034 ], "update_columns": [ - 2310 + 2058 ], "where": [ - 2285 + 2033 ], "__typename": [ 78 @@ -39202,61 +35480,61 @@ export default { }, "match_lineups_order_by": { "can_pick_map_veto": [ - 2781 + 2529 ], "can_pick_region_veto": [ - 2781 + 2529 ], "can_update_lineup": [ - 2781 + 2529 ], "captain": [ - 4929 + 4737 ], "coach": [ - 3752 + 3500 ], "coach_steam_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "is_on_lineup": [ - 2781 + 2529 ], "is_picking_map_veto": [ - 2781 + 2529 ], "is_picking_region_veto": [ - 2781 + 2529 ], "is_ready": [ - 2781 + 2529 ], "lineup_players_aggregate": [ - 2238 + 1986 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_veto_picks_aggregate": [ - 2415 + 2163 ], "name": [ - 2781 + 2529 ], "team": [ - 4301 + 4051 ], "team_id": [ - 2781 + 2529 ], "team_name": [ - 2781 + 2529 ], "__typename": [ 78 @@ -39264,7 +35542,7 @@ export default { }, "match_lineups_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -39276,13 +35554,13 @@ export default { 180 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "team_id": [ - 4762 + 4621 ], "team_name": [ 78 @@ -39301,7 +35579,7 @@ export default { }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -39317,7 +35595,7 @@ export default { }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -39333,7 +35611,7 @@ export default { }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -39341,7 +35619,7 @@ export default { }, "match_lineups_stream_cursor_input": { "initial_value": [ - 2307 + 2055 ], "ordering": [ 236 @@ -39355,13 +35633,13 @@ export default { 180 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "team_id": [ - 4762 + 4621 ], "team_name": [ 78 @@ -39380,7 +35658,7 @@ export default { }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -39389,13 +35667,13 @@ export default { "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 2287 + 2035 ], "_set": [ - 2299 + 2047 ], "where": [ - 2285 + 2033 ], "__typename": [ 78 @@ -39411,7 +35689,7 @@ export default { }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -39427,7 +35705,7 @@ export default { }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -39443,7 +35721,7 @@ export default { }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -39451,7 +35729,7 @@ export default { }, "match_map_demos": { "bombs": [ - 1652, + 1400, { "path": [ 78 @@ -39503,16 +35781,16 @@ export default { } ], "created_at": [ - 4324 + 4076 ], "cs2_build": [ 78 ], "demo_sessions": [ - 2185, + 1933, { "distinct_on": [ - 2211, + 1959, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -39522,19 +35800,19 @@ export default { 38 ], "order_by": [ - 2208, + 1956, "[match_demo_sessions_order_by!]" ], "where": [ - 2195 + 1943 ] } ], "demo_sessions_aggregate": [ - 2186, + 1934, { "distinct_on": [ - 2211, + 1959, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -39544,11 +35822,11 @@ export default { 38 ], "order_by": [ - 2208, + 1956, "[match_demo_sessions_order_by!]" ], "where": [ - 2195 + 1943 ] } ], @@ -39565,10 +35843,10 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "kills": [ - 1652, + 1400, { "path": [ 78 @@ -39579,13 +35857,13 @@ export default { 78 ], "match": [ - 2596 + 2344 ], "match_clips": [ - 2143, + 1891, { "distinct_on": [ - 2165, + 1913, "[match_clips_select_column!]" ], "limit": [ @@ -39595,19 +35873,19 @@ export default { 38 ], "order_by": [ - 2163, + 1911, "[match_clips_order_by!]" ], "where": [ - 2152 + 1900 ] } ], "match_clips_aggregate": [ - 2144, + 1892, { "distinct_on": [ - 2165, + 1913, "[match_clips_select_column!]" ], "limit": [ @@ -39617,25 +35895,25 @@ export default { 38 ], "order_by": [ - 2163, + 1911, "[match_clips_order_by!]" ], "where": [ - 2152 + 1900 ] } ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "metadata_parsed_at": [ - 4324 + 4076 ], "playback_file": [ 78 @@ -39647,7 +35925,7 @@ export default { 78 ], "players": [ - 1652, + 1400, { "path": [ 78 @@ -39655,7 +35933,7 @@ export default { } ], "round_ticks": [ - 1652, + 1400, { "path": [ 78 @@ -39680,10 +35958,10 @@ export default { }, "match_map_demos_aggregate": { "aggregate": [ - 2324 + 2072 ], "nodes": [ - 2318 + 2066 ], "__typename": [ 78 @@ -39691,13 +35969,13 @@ export default { }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2321 + 2069 ], "bool_or": [ - 2322 + 2070 ], "count": [ - 2323 + 2071 ], "__typename": [ 78 @@ -39705,13 +35983,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2348 + 2096 ], "distinct": [ 3 ], "filter": [ - 2330 + 2078 ], "predicate": [ 4 @@ -39722,13 +36000,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2349 + 2097 ], "distinct": [ 3 ], "filter": [ - 2330 + 2078 ], "predicate": [ 4 @@ -39739,13 +36017,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2347 + 2095 ], "distinct": [ 3 ], "filter": [ - 2330 + 2078 ], "predicate": [ 39 @@ -39756,13 +36034,13 @@ export default { }, "match_map_demos_aggregate_fields": { "avg": [ - 2328 + 2076 ], "count": [ 38, { "columns": [ - 2347, + 2095, "[match_map_demos_select_column!]" ], "distinct": [ @@ -39771,31 +36049,31 @@ export default { } ], "max": [ - 2337 + 2085 ], "min": [ - 2339 + 2087 ], "stddev": [ - 2351 + 2099 ], "stddev_pop": [ - 2353 + 2101 ], "stddev_samp": [ - 2355 + 2103 ], "sum": [ - 2359 + 2107 ], "var_pop": [ - 2363 + 2111 ], "var_samp": [ - 2365 + 2113 ], "variance": [ - 2367 + 2115 ], "__typename": [ 78 @@ -39803,37 +36081,37 @@ export default { }, "match_map_demos_aggregate_order_by": { "avg": [ - 2329 + 2077 ], "count": [ - 2781 + 2529 ], "max": [ - 2338 + 2086 ], "min": [ - 2340 + 2088 ], "stddev": [ - 2352 + 2100 ], "stddev_pop": [ - 2354 + 2102 ], "stddev_samp": [ - 2356 + 2104 ], "sum": [ - 2360 + 2108 ], "var_pop": [ - 2364 + 2112 ], "var_samp": [ - 2366 + 2114 ], "variance": [ - 2368 + 2116 ], "__typename": [ 78 @@ -39841,16 +36119,16 @@ export default { }, "match_map_demos_append_input": { "bombs": [ - 1652 + 1400 ], "kills": [ - 1652 + 1400 ], "players": [ - 1652 + 1400 ], "round_ticks": [ - 1652 + 1400 ], "__typename": [ 78 @@ -39858,10 +36136,10 @@ export default { }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2336 + 2084 ], "on_conflict": [ - 2343 + 2091 ], "__typename": [ 78 @@ -39889,19 +36167,19 @@ export default { }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 2781 + 2529 ], "playback_size": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "tick_rate": [ - 2781 + 2529 ], "total_ticks": [ - 2781 + 2529 ], "__typename": [ 78 @@ -39909,16 +36187,16 @@ export default { }, "match_map_demos_bool_exp": { "_and": [ - 2330 + 2078 ], "_not": [ - 2330 + 2078 ], "_or": [ - 2330 + 2078 ], "bombs": [ - 1654 + 1402 ], "clip_render_jobs": [ 197 @@ -39927,16 +36205,16 @@ export default { 187 ], "created_at": [ - 4325 + 4077 ], "cs2_build": [ 80 ], "demo_sessions": [ - 2195 + 1943 ], "demo_sessions_aggregate": [ - 2187 + 1935 ], "download_url": [ 80 @@ -39951,34 +36229,34 @@ export default { 4 ], "id": [ - 4764 + 4623 ], "kills": [ - 1654 + 1402 ], "map_name": [ 80 ], "match": [ - 2605 + 2353 ], "match_clips": [ - 2152 + 1900 ], "match_clips_aggregate": [ - 2145 + 1893 ], "match_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "metadata_parsed_at": [ - 4325 + 4077 ], "playback_file": [ 80 @@ -39990,10 +36268,10 @@ export default { 80 ], "players": [ - 1654 + 1402 ], "round_ticks": [ - 1654 + 1402 ], "size": [ 39 @@ -40082,19 +36360,19 @@ export default { }, "match_map_demos_insert_input": { "bombs": [ - 1652 + 1400 ], "clip_render_jobs": [ 194 ], "created_at": [ - 4324 + 4076 ], "cs2_build": [ 78 ], "demo_sessions": [ - 2192 + 1940 ], "file": [ 78 @@ -40103,31 +36381,31 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "kills": [ - 1652 + 1400 ], "map_name": [ 78 ], "match": [ - 2614 + 2362 ], "match_clips": [ - 2149 + 1897 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2452 + 2200 ], "match_map_id": [ - 4762 + 4621 ], "metadata_parsed_at": [ - 4324 + 4076 ], "playback_file": [ 78 @@ -40136,10 +36414,10 @@ export default { 38 ], "players": [ - 1652 + 1400 ], "round_ticks": [ - 1652 + 1400 ], "size": [ 38 @@ -40159,7 +36437,7 @@ export default { }, "match_map_demos_max_fields": { "created_at": [ - 4324 + 4076 ], "cs2_build": [ 78 @@ -40174,19 +36452,19 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "map_name": [ 78 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "metadata_parsed_at": [ - 4324 + 4076 ], "playback_file": [ 78 @@ -40215,49 +36493,49 @@ export default { }, "match_map_demos_max_order_by": { "created_at": [ - 2781 + 2529 ], "cs2_build": [ - 2781 + 2529 ], "duration_seconds": [ - 2781 + 2529 ], "file": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "map_name": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "metadata_parsed_at": [ - 2781 + 2529 ], "playback_file": [ - 2781 + 2529 ], "playback_size": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "tick_rate": [ - 2781 + 2529 ], "total_ticks": [ - 2781 + 2529 ], "workshop_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -40265,7 +36543,7 @@ export default { }, "match_map_demos_min_fields": { "created_at": [ - 4324 + 4076 ], "cs2_build": [ 78 @@ -40280,19 +36558,19 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "map_name": [ 78 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "metadata_parsed_at": [ - 4324 + 4076 ], "playback_file": [ 78 @@ -40321,49 +36599,49 @@ export default { }, "match_map_demos_min_order_by": { "created_at": [ - 2781 + 2529 ], "cs2_build": [ - 2781 + 2529 ], "duration_seconds": [ - 2781 + 2529 ], "file": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "map_name": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "metadata_parsed_at": [ - 2781 + 2529 ], "playback_file": [ - 2781 + 2529 ], "playback_size": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "tick_rate": [ - 2781 + 2529 ], "total_ticks": [ - 2781 + 2529 ], "workshop_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -40374,7 +36652,7 @@ export default { 38 ], "returning": [ - 2318 + 2066 ], "__typename": [ 78 @@ -40382,10 +36660,10 @@ export default { }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2336 + 2084 ], "on_conflict": [ - 2343 + 2091 ], "__typename": [ 78 @@ -40393,13 +36671,13 @@ export default { }, "match_map_demos_on_conflict": { "constraint": [ - 2331 + 2079 ], "update_columns": [ - 2361 + 2109 ], "where": [ - 2330 + 2078 ], "__typename": [ 78 @@ -40407,85 +36685,85 @@ export default { }, "match_map_demos_order_by": { "bombs": [ - 2781 + 2529 ], "clip_render_jobs_aggregate": [ 192 ], "created_at": [ - 2781 + 2529 ], "cs2_build": [ - 2781 + 2529 ], "demo_sessions_aggregate": [ - 2190 + 1938 ], "download_url": [ - 2781 + 2529 ], "duration_seconds": [ - 2781 + 2529 ], "file": [ - 2781 + 2529 ], "geometry_validated": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "map_name": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_clips_aggregate": [ - 2148 + 1896 ], "match_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "metadata_parsed_at": [ - 2781 + 2529 ], "playback_file": [ - 2781 + 2529 ], "playback_size": [ - 2781 + 2529 ], "playback_url": [ - 2781 + 2529 ], "players": [ - 2781 + 2529 ], "round_ticks": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "tick_rate": [ - 2781 + 2529 ], "total_ticks": [ - 2781 + 2529 ], "workshop_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -40493,7 +36771,7 @@ export default { }, "match_map_demos_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -40501,16 +36779,16 @@ export default { }, "match_map_demos_prepend_input": { "bombs": [ - 1652 + 1400 ], "kills": [ - 1652 + 1400 ], "players": [ - 1652 + 1400 ], "round_ticks": [ - 1652 + 1400 ], "__typename": [ 78 @@ -40521,10 +36799,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 + 1400 ], "created_at": [ - 4324 + 4076 ], "cs2_build": [ 78 @@ -40536,22 +36814,22 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "kills": [ - 1652 + 1400 ], "map_name": [ 78 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "metadata_parsed_at": [ - 4324 + 4076 ], "playback_file": [ 78 @@ -40560,10 +36838,10 @@ export default { 38 ], "players": [ - 1652 + 1400 ], "round_ticks": [ - 1652 + 1400 ], "size": [ 38 @@ -40603,19 +36881,19 @@ export default { }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 2781 + 2529 ], "playback_size": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "tick_rate": [ - 2781 + 2529 ], "total_ticks": [ - 2781 + 2529 ], "__typename": [ 78 @@ -40643,19 +36921,19 @@ export default { }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 2781 + 2529 ], "playback_size": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "tick_rate": [ - 2781 + 2529 ], "total_ticks": [ - 2781 + 2529 ], "__typename": [ 78 @@ -40683,19 +36961,19 @@ export default { }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 2781 + 2529 ], "playback_size": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "tick_rate": [ - 2781 + 2529 ], "total_ticks": [ - 2781 + 2529 ], "__typename": [ 78 @@ -40703,7 +36981,7 @@ export default { }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2358 + 2106 ], "ordering": [ 236 @@ -40714,10 +36992,10 @@ export default { }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1652 + 1400 ], "created_at": [ - 4324 + 4076 ], "cs2_build": [ 78 @@ -40732,22 +37010,22 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "kills": [ - 1652 + 1400 ], "map_name": [ 78 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "metadata_parsed_at": [ - 4324 + 4076 ], "playback_file": [ 78 @@ -40756,10 +37034,10 @@ export default { 38 ], "players": [ - 1652 + 1400 ], "round_ticks": [ - 1652 + 1400 ], "size": [ 38 @@ -40799,19 +37077,19 @@ export default { }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 2781 + 2529 ], "playback_size": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "tick_rate": [ - 2781 + 2529 ], "total_ticks": [ - 2781 + 2529 ], "__typename": [ 78 @@ -40820,28 +37098,28 @@ export default { "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2326 + 2074 ], "_delete_at_path": [ - 2332 + 2080 ], "_delete_elem": [ - 2333 + 2081 ], "_delete_key": [ - 2334 + 2082 ], "_inc": [ - 2335 + 2083 ], "_prepend": [ - 2346 + 2094 ], "_set": [ - 2350 + 2098 ], "where": [ - 2330 + 2078 ], "__typename": [ 78 @@ -40869,19 +37147,19 @@ export default { }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 2781 + 2529 ], "playback_size": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "tick_rate": [ - 2781 + 2529 ], "total_ticks": [ - 2781 + 2529 ], "__typename": [ 78 @@ -40909,19 +37187,19 @@ export default { }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 2781 + 2529 ], "playback_size": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "tick_rate": [ - 2781 + 2529 ], "total_ticks": [ - 2781 + 2529 ], "__typename": [ 78 @@ -40949,19 +37227,19 @@ export default { }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 2781 + 2529 ], "playback_size": [ - 2781 + 2529 ], "size": [ - 2781 + 2529 ], "tick_rate": [ - 2781 + 2529 ], "total_ticks": [ - 2781 + 2529 ], "__typename": [ 78 @@ -40969,10 +37247,10 @@ export default { }, "match_map_rounds": { "assists": [ - 2919, + 2667, { "distinct_on": [ - 2942, + 2690, "[player_assists_select_column!]" ], "limit": [ @@ -40982,19 +37260,19 @@ export default { 38 ], "order_by": [ - 2940, + 2688, "[player_assists_order_by!]" ], "where": [ - 2930 + 2678 ] } ], "assists_aggregate": [ - 2920, + 2668, { "distinct_on": [ - 2942, + 2690, "[player_assists_select_column!]" ], "limit": [ @@ -41004,11 +37282,11 @@ export default { 38 ], "order_by": [ - 2940, + 2688, "[player_assists_order_by!]" ], "where": [ - 2930 + 2678 ] } ], @@ -41016,22 +37294,22 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "deleted_at": [ - 4324 + 4076 ], "has_backup_file": [ 3 ], "id": [ - 4762 + 4621 ], "kills": [ - 3136, + 2884, { "distinct_on": [ - 3200, + 2948, "[player_kills_select_column!]" ], "limit": [ @@ -41041,19 +37319,19 @@ export default { 38 ], "order_by": [ - 3198, + 2946, "[player_kills_order_by!]" ], "where": [ - 3147 + 2895 ] } ], "kills_aggregate": [ - 3137, + 2885, { "distinct_on": [ - 3200, + 2948, "[player_kills_select_column!]" ], "limit": [ @@ -41063,11 +37341,11 @@ export default { 38 ], "order_by": [ - 3198, + 2946, "[player_kills_order_by!]" ], "where": [ - 3147 + 2895 ] } ], @@ -41078,7 +37356,7 @@ export default { 38 ], "lineup_1_side": [ - 1042 + 1029 ], "lineup_1_timeouts_available": [ 38 @@ -41090,25 +37368,25 @@ export default { 38 ], "lineup_2_side": [ - 1042 + 1029 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "winning_reason": [ - 1225 + 1233 ], "winning_side": [ 78 @@ -41119,10 +37397,10 @@ export default { }, "match_map_rounds_aggregate": { "aggregate": [ - 2373 + 2121 ], "nodes": [ - 2369 + 2117 ], "__typename": [ 78 @@ -41130,7 +37408,7 @@ export default { }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2372 + 2120 ], "__typename": [ 78 @@ -41138,13 +37416,13 @@ export default { }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2390 + 2138 ], "distinct": [ 3 ], "filter": [ - 2378 + 2126 ], "predicate": [ 39 @@ -41155,13 +37433,13 @@ export default { }, "match_map_rounds_aggregate_fields": { "avg": [ - 2376 + 2124 ], "count": [ 38, { "columns": [ - 2390, + 2138, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -41170,31 +37448,31 @@ export default { } ], "max": [ - 2382 + 2130 ], "min": [ - 2384 + 2132 ], "stddev": [ - 2392 + 2140 ], "stddev_pop": [ - 2394 + 2142 ], "stddev_samp": [ - 2396 + 2144 ], "sum": [ - 2400 + 2148 ], "var_pop": [ - 2404 + 2152 ], "var_samp": [ - 2406 + 2154 ], "variance": [ - 2408 + 2156 ], "__typename": [ 78 @@ -41202,37 +37480,37 @@ export default { }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2377 + 2125 ], "count": [ - 2781 + 2529 ], "max": [ - 2383 + 2131 ], "min": [ - 2385 + 2133 ], "stddev": [ - 2393 + 2141 ], "stddev_pop": [ - 2395 + 2143 ], "stddev_samp": [ - 2397 + 2145 ], "sum": [ - 2401 + 2149 ], "var_pop": [ - 2405 + 2153 ], "var_samp": [ - 2407 + 2155 ], "variance": [ - 2409 + 2157 ], "__typename": [ 78 @@ -41240,10 +37518,10 @@ export default { }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2381 + 2129 ], "on_conflict": [ - 2387 + 2135 ], "__typename": [ 78 @@ -41277,25 +37555,25 @@ export default { }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 2781 + 2529 ], "lineup_1_score": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_money": [ - 2781 + 2529 ], "lineup_2_score": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -41303,40 +37581,40 @@ export default { }, "match_map_rounds_bool_exp": { "_and": [ - 2378 + 2126 ], "_not": [ - 2378 + 2126 ], "_or": [ - 2378 + 2126 ], "assists": [ - 2930 + 2678 ], "assists_aggregate": [ - 2921 + 2669 ], "backup_file": [ 80 ], "created_at": [ - 4325 + 4077 ], "deleted_at": [ - 4325 + 4077 ], "has_backup_file": [ 4 ], "id": [ - 4764 + 4623 ], "kills": [ - 3147 + 2895 ], "kills_aggregate": [ - 3138 + 2886 ], "lineup_1_money": [ 39 @@ -41345,7 +37623,7 @@ export default { 39 ], "lineup_1_side": [ - 1043 + 1030 ], "lineup_1_timeouts_available": [ 39 @@ -41357,25 +37635,25 @@ export default { 39 ], "lineup_2_side": [ - 1043 + 1030 ], "lineup_2_timeouts_available": [ 39 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "round": [ 39 ], "time": [ - 4325 + 4077 ], "winning_reason": [ - 1226 + 1234 ], "winning_side": [ 80 @@ -41413,22 +37691,22 @@ export default { }, "match_map_rounds_insert_input": { "assists": [ - 2927 + 2675 ], "backup_file": [ 78 ], "created_at": [ - 4324 + 4076 ], "deleted_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "kills": [ - 3144 + 2892 ], "lineup_1_money": [ 38 @@ -41437,7 +37715,7 @@ export default { 38 ], "lineup_1_side": [ - 1042 + 1029 ], "lineup_1_timeouts_available": [ 38 @@ -41449,25 +37727,25 @@ export default { 38 ], "lineup_2_side": [ - 1042 + 1029 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 2452 + 2200 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "winning_reason": [ - 1225 + 1233 ], "winning_side": [ 78 @@ -41481,13 +37759,13 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "deleted_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "lineup_1_money": [ 38 @@ -41508,13 +37786,13 @@ export default { 38 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "winning_side": [ 78 @@ -41525,46 +37803,46 @@ export default { }, "match_map_rounds_max_order_by": { "backup_file": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "lineup_1_money": [ - 2781 + 2529 ], "lineup_1_score": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_money": [ - 2781 + 2529 ], "lineup_2_score": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "winning_side": [ - 2781 + 2529 ], "__typename": [ 78 @@ -41575,13 +37853,13 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "deleted_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "lineup_1_money": [ 38 @@ -41602,13 +37880,13 @@ export default { 38 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "winning_side": [ 78 @@ -41619,46 +37897,46 @@ export default { }, "match_map_rounds_min_order_by": { "backup_file": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "lineup_1_money": [ - 2781 + 2529 ], "lineup_1_score": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_money": [ - 2781 + 2529 ], "lineup_2_score": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "winning_side": [ - 2781 + 2529 ], "__typename": [ 78 @@ -41669,7 +37947,7 @@ export default { 38 ], "returning": [ - 2369 + 2117 ], "__typename": [ 78 @@ -41677,13 +37955,13 @@ export default { }, "match_map_rounds_on_conflict": { "constraint": [ - 2379 + 2127 ], "update_columns": [ - 2402 + 2150 ], "where": [ - 2378 + 2126 ], "__typename": [ 78 @@ -41691,67 +37969,67 @@ export default { }, "match_map_rounds_order_by": { "assists_aggregate": [ - 2926 + 2674 ], "backup_file": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "has_backup_file": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "kills_aggregate": [ - 3143 + 2891 ], "lineup_1_money": [ - 2781 + 2529 ], "lineup_1_score": [ - 2781 + 2529 ], "lineup_1_side": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_money": [ - 2781 + 2529 ], "lineup_2_score": [ - 2781 + 2529 ], "lineup_2_side": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "winning_reason": [ - 2781 + 2529 ], "winning_side": [ - 2781 + 2529 ], "__typename": [ 78 @@ -41759,7 +38037,7 @@ export default { }, "match_map_rounds_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -41771,13 +38049,13 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "deleted_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "lineup_1_money": [ 38 @@ -41786,7 +38064,7 @@ export default { 38 ], "lineup_1_side": [ - 1042 + 1029 ], "lineup_1_timeouts_available": [ 38 @@ -41798,22 +38076,22 @@ export default { 38 ], "lineup_2_side": [ - 1042 + 1029 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "winning_reason": [ - 1225 + 1233 ], "winning_side": [ 78 @@ -41850,25 +38128,25 @@ export default { }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 2781 + 2529 ], "lineup_1_score": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_money": [ - 2781 + 2529 ], "lineup_2_score": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -41902,25 +38180,25 @@ export default { }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 2781 + 2529 ], "lineup_1_score": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_money": [ - 2781 + 2529 ], "lineup_2_score": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -41954,25 +38232,25 @@ export default { }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 2781 + 2529 ], "lineup_1_score": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_money": [ - 2781 + 2529 ], "lineup_2_score": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -41980,7 +38258,7 @@ export default { }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2399 + 2147 ], "ordering": [ 236 @@ -41994,13 +38272,13 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "deleted_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "lineup_1_money": [ 38 @@ -42009,7 +38287,7 @@ export default { 38 ], "lineup_1_side": [ - 1042 + 1029 ], "lineup_1_timeouts_available": [ 38 @@ -42021,22 +38299,22 @@ export default { 38 ], "lineup_2_side": [ - 1042 + 1029 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "winning_reason": [ - 1225 + 1233 ], "winning_side": [ 78 @@ -42073,25 +38351,25 @@ export default { }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 2781 + 2529 ], "lineup_1_score": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_money": [ - 2781 + 2529 ], "lineup_2_score": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -42100,13 +38378,13 @@ export default { "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2380 + 2128 ], "_set": [ - 2391 + 2139 ], "where": [ - 2378 + 2126 ], "__typename": [ 78 @@ -42140,25 +38418,25 @@ export default { }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 2781 + 2529 ], "lineup_1_score": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_money": [ - 2781 + 2529 ], "lineup_2_score": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -42192,25 +38470,25 @@ export default { }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 2781 + 2529 ], "lineup_1_score": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_money": [ - 2781 + 2529 ], "lineup_2_score": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -42244,25 +38522,25 @@ export default { }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 2781 + 2529 ], "lineup_1_score": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_money": [ - 2781 + 2529 ], "lineup_2_score": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -42270,34 +38548,34 @@ export default { }, "match_map_veto_picks": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "map": [ - 2114 + 1862 ], "map_id": [ - 4762 + 4621 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_lineup": [ - 2276 + 2024 ], "match_lineup_id": [ - 4762 + 4621 ], "side": [ 78 ], "type": [ - 1205 + 1213 ], "__typename": [ 78 @@ -42305,10 +38583,10 @@ export default { }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2414 + 2162 ], "nodes": [ - 2410 + 2158 ], "__typename": [ 78 @@ -42316,7 +38594,7 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp": { "count": [ - 2413 + 2161 ], "__typename": [ 78 @@ -42324,13 +38602,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2428 + 2176 ], "distinct": [ 3 ], "filter": [ - 2417 + 2165 ], "predicate": [ 39 @@ -42344,7 +38622,7 @@ export default { 38, { "columns": [ - 2428, + 2176, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -42353,10 +38631,10 @@ export default { } ], "max": [ - 2420 + 2168 ], "min": [ - 2422 + 2170 ], "__typename": [ 78 @@ -42364,13 +38642,13 @@ export default { }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 2781 + 2529 ], "max": [ - 2421 + 2169 ], "min": [ - 2423 + 2171 ], "__typename": [ 78 @@ -42378,10 +38656,10 @@ export default { }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2419 + 2167 ], "on_conflict": [ - 2425 + 2173 ], "__typename": [ 78 @@ -42389,43 +38667,43 @@ export default { }, "match_map_veto_picks_bool_exp": { "_and": [ - 2417 + 2165 ], "_not": [ - 2417 + 2165 ], "_or": [ - 2417 + 2165 ], "created_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "map": [ - 2123 + 1871 ], "map_id": [ - 4764 + 4623 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_lineup": [ - 2285 + 2033 ], "match_lineup_id": [ - 4764 + 4623 ], "side": [ 80 ], "type": [ - 1206 + 1214 ], "__typename": [ 78 @@ -42434,34 +38712,34 @@ export default { "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "map": [ - 2131 + 1879 ], "map_id": [ - 4762 + 4621 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_lineup": [ - 2294 + 2042 ], "match_lineup_id": [ - 4762 + 4621 ], "side": [ 78 ], "type": [ - 1205 + 1213 ], "__typename": [ 78 @@ -42469,19 +38747,19 @@ export default { }, "match_map_veto_picks_max_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "side": [ 78 @@ -42492,22 +38770,22 @@ export default { }, "match_map_veto_picks_max_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "map_id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_lineup_id": [ - 2781 + 2529 ], "side": [ - 2781 + 2529 ], "__typename": [ 78 @@ -42515,19 +38793,19 @@ export default { }, "match_map_veto_picks_min_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "side": [ 78 @@ -42538,22 +38816,22 @@ export default { }, "match_map_veto_picks_min_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "map_id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_lineup_id": [ - 2781 + 2529 ], "side": [ - 2781 + 2529 ], "__typename": [ 78 @@ -42564,7 +38842,7 @@ export default { 38 ], "returning": [ - 2410 + 2158 ], "__typename": [ 78 @@ -42572,13 +38850,13 @@ export default { }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2418 + 2166 ], "update_columns": [ - 2432 + 2180 ], "where": [ - 2417 + 2165 ], "__typename": [ 78 @@ -42586,34 +38864,34 @@ export default { }, "match_map_veto_picks_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "map": [ - 2133 + 1881 ], "map_id": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_lineup": [ - 2296 + 2044 ], "match_lineup_id": [ - 2781 + 2529 ], "side": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "__typename": [ 78 @@ -42621,7 +38899,7 @@ export default { }, "match_map_veto_picks_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -42630,25 +38908,25 @@ export default { "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "side": [ 78 ], "type": [ - 1205 + 1213 ], "__typename": [ 78 @@ -42656,7 +38934,7 @@ export default { }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2431 + 2179 ], "ordering": [ 236 @@ -42667,25 +38945,25 @@ export default { }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "side": [ 78 ], "type": [ - 1205 + 1213 ], "__typename": [ 78 @@ -42694,10 +38972,10 @@ export default { "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2429 + 2177 ], "where": [ - 2417 + 2165 ], "__typename": [ 78 @@ -42708,13 +38986,13 @@ export default { 38 ], "created_at": [ - 4324 + 4076 ], "demos": [ - 2318, + 2066, { "distinct_on": [ - 2347, + 2095, "[match_map_demos_select_column!]" ], "limit": [ @@ -42724,19 +39002,19 @@ export default { 38 ], "order_by": [ - 2344, + 2092, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2078 ] } ], "demos_aggregate": [ - 2319, + 2067, { "distinct_on": [ - 2347, + 2095, "[match_map_demos_select_column!]" ], "limit": [ @@ -42746,11 +39024,11 @@ export default { 38 ], "order_by": [ - 2344, + 2092, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2078 ] } ], @@ -42761,16 +39039,16 @@ export default { 38 ], "e_match_map_status": [ - 793 + 780 ], "ended_at": [ - 4324 + 4076 ], "flashes": [ - 3091, + 2839, { "distinct_on": [ - 3114, + 2862, "[player_flashes_select_column!]" ], "limit": [ @@ -42780,19 +39058,19 @@ export default { 38 ], "order_by": [ - 3112, + 2860, "[player_flashes_order_by!]" ], "where": [ - 3102 + 2850 ] } ], "flashes_aggregate": [ - 3092, + 2840, { "distinct_on": [ - 3114, + 2862, "[player_flashes_select_column!]" ], "limit": [ @@ -42802,28 +39080,28 @@ export default { 38 ], "order_by": [ - 3112, + 2860, "[player_flashes_order_by!]" ], "where": [ - 3102 + 2850 ] } ], "id": [ - 4762 + 4621 ], "is_current_map": [ 3 ], "latest_clip_at": [ - 4324 + 4076 ], "lineup_1_score": [ 38 ], "lineup_1_side": [ - 1042 + 1029 ], "lineup_1_timeouts_available": [ 38 @@ -42832,25 +39110,25 @@ export default { 38 ], "lineup_2_side": [ - 1042 + 1029 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 2114 + 1862 ], "map_id": [ - 4762 + 4621 ], "match": [ - 2596 + 2344 ], "match_clips": [ - 2143, + 1891, { "distinct_on": [ - 2165, + 1913, "[match_clips_select_column!]" ], "limit": [ @@ -42860,19 +39138,19 @@ export default { 38 ], "order_by": [ - 2163, + 1911, "[match_clips_order_by!]" ], "where": [ - 2152 + 1900 ] } ], "match_clips_aggregate": [ - 2144, + 1892, { "distinct_on": [ - 2165, + 1913, "[match_clips_select_column!]" ], "limit": [ @@ -42882,22 +39160,22 @@ export default { 38 ], "order_by": [ - 2163, + 1911, "[match_clips_order_by!]" ], "where": [ - 2152 + 1900 ] } ], "match_id": [ - 4762 + 4621 ], "objectives": [ - 3337, + 3085, { "distinct_on": [ - 3358, + 3106, "[player_objectives_select_column!]" ], "limit": [ @@ -42907,19 +39185,19 @@ export default { 38 ], "order_by": [ - 3356, + 3104, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3094 ] } ], "objectives_aggregate": [ - 3338, + 3086, { "distinct_on": [ - 3358, + 3106, "[player_objectives_select_column!]" ], "limit": [ @@ -42929,11 +39207,11 @@ export default { 38 ], "order_by": [ - 3356, + 3104, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3094 ] } ], @@ -42941,10 +39219,10 @@ export default { 38 ], "player_assists": [ - 2919, + 2667, { "distinct_on": [ - 2942, + 2690, "[player_assists_select_column!]" ], "limit": [ @@ -42954,19 +39232,19 @@ export default { 38 ], "order_by": [ - 2940, + 2688, "[player_assists_order_by!]" ], "where": [ - 2930 + 2678 ] } ], "player_assists_aggregate": [ - 2920, + 2668, { "distinct_on": [ - 2942, + 2690, "[player_assists_select_column!]" ], "limit": [ @@ -42976,19 +39254,19 @@ export default { 38 ], "order_by": [ - 2940, + 2688, "[player_assists_order_by!]" ], "where": [ - 2930 + 2678 ] } ], "player_damages": [ - 2982, + 2730, { "distinct_on": [ - 3003, + 2751, "[player_damages_select_column!]" ], "limit": [ @@ -42998,19 +39276,19 @@ export default { 38 ], "order_by": [ - 3001, + 2749, "[player_damages_order_by!]" ], "where": [ - 2991 + 2739 ] } ], "player_damages_aggregate": [ - 2983, + 2731, { "distinct_on": [ - 3003, + 2751, "[player_damages_select_column!]" ], "limit": [ @@ -43020,19 +39298,19 @@ export default { 38 ], "order_by": [ - 3001, + 2749, "[player_damages_order_by!]" ], "where": [ - 2991 + 2739 ] } ], "player_kills": [ - 3136, + 2884, { "distinct_on": [ - 3200, + 2948, "[player_kills_select_column!]" ], "limit": [ @@ -43042,19 +39320,19 @@ export default { 38 ], "order_by": [ - 3198, + 2946, "[player_kills_order_by!]" ], "where": [ - 3147 + 2895 ] } ], "player_kills_aggregate": [ - 3137, + 2885, { "distinct_on": [ - 3200, + 2948, "[player_kills_select_column!]" ], "limit": [ @@ -43064,19 +39342,19 @@ export default { 38 ], "order_by": [ - 3198, + 2946, "[player_kills_order_by!]" ], "where": [ - 3147 + 2895 ] } ], "player_unused_utilities": [ - 3624, + 3372, { "distinct_on": [ - 3645, + 3393, "[player_unused_utility_select_column!]" ], "limit": [ @@ -43086,19 +39364,19 @@ export default { 38 ], "order_by": [ - 3643, + 3391, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3381 ] } ], "player_unused_utilities_aggregate": [ - 3625, + 3373, { "distinct_on": [ - 3645, + 3393, "[player_unused_utility_select_column!]" ], "limit": [ @@ -43108,11 +39386,11 @@ export default { 38 ], "order_by": [ - 3643, + 3391, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3381 ] } ], @@ -43120,13 +39398,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4324 + 4076 ], "rounds": [ - 2369, + 2117, { "distinct_on": [ - 2390, + 2138, "[match_map_rounds_select_column!]" ], "limit": [ @@ -43136,19 +39414,19 @@ export default { 38 ], "order_by": [ - 2388, + 2136, "[match_map_rounds_order_by!]" ], "where": [ - 2378 + 2126 ] } ], "rounds_aggregate": [ - 2370, + 2118, { "distinct_on": [ - 2390, + 2138, "[match_map_rounds_select_column!]" ], "limit": [ @@ -43158,25 +39436,25 @@ export default { 38 ], "order_by": [ - 2388, + 2136, "[match_map_rounds_order_by!]" ], "where": [ - 2378 + 2126 ] } ], "started_at": [ - 4324 + 4076 ], "status": [ - 798 + 785 ], "utility": [ - 3665, + 3413, { "distinct_on": [ - 3686, + 3434, "[player_utility_select_column!]" ], "limit": [ @@ -43186,19 +39464,19 @@ export default { 38 ], "order_by": [ - 3684, + 3432, "[player_utility_order_by!]" ], "where": [ - 3674 + 3422 ] } ], "utility_aggregate": [ - 3666, + 3414, { "distinct_on": [ - 3686, + 3434, "[player_utility_select_column!]" ], "limit": [ @@ -43208,19 +39486,19 @@ export default { 38 ], "order_by": [ - 3684, + 3432, "[player_utility_order_by!]" ], "where": [ - 3674 + 3422 ] } ], "vetos": [ - 2410, + 2158, { "distinct_on": [ - 2428, + 2176, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -43230,19 +39508,19 @@ export default { 38 ], "order_by": [ - 2426, + 2174, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2165 ] } ], "vetos_aggregate": [ - 2411, + 2159, { "distinct_on": [ - 2428, + 2176, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -43252,16 +39530,16 @@ export default { 38 ], "order_by": [ - 2426, + 2174, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2165 ] } ], "winning_lineup_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -43269,10 +39547,10 @@ export default { }, "match_maps_aggregate": { "aggregate": [ - 2438 + 2186 ], "nodes": [ - 2434 + 2182 ], "__typename": [ 78 @@ -43280,7 +39558,7 @@ export default { }, "match_maps_aggregate_bool_exp": { "count": [ - 2437 + 2185 ], "__typename": [ 78 @@ -43288,13 +39566,13 @@ export default { }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2456 + 2204 ], "distinct": [ 3 ], "filter": [ - 2443 + 2191 ], "predicate": [ 39 @@ -43305,13 +39583,13 @@ export default { }, "match_maps_aggregate_fields": { "avg": [ - 2441 + 2189 ], "count": [ 38, { "columns": [ - 2456, + 2204, "[match_maps_select_column!]" ], "distinct": [ @@ -43320,31 +39598,31 @@ export default { } ], "max": [ - 2447 + 2195 ], "min": [ - 2449 + 2197 ], "stddev": [ - 2458 + 2206 ], "stddev_pop": [ - 2460 + 2208 ], "stddev_samp": [ - 2462 + 2210 ], "sum": [ - 2466 + 2214 ], "var_pop": [ - 2470 + 2218 ], "var_samp": [ - 2472 + 2220 ], "variance": [ - 2474 + 2222 ], "__typename": [ 78 @@ -43352,37 +39630,37 @@ export default { }, "match_maps_aggregate_order_by": { "avg": [ - 2442 + 2190 ], "count": [ - 2781 + 2529 ], "max": [ - 2448 + 2196 ], "min": [ - 2450 + 2198 ], "stddev": [ - 2459 + 2207 ], "stddev_pop": [ - 2461 + 2209 ], "stddev_samp": [ - 2463 + 2211 ], "sum": [ - 2467 + 2215 ], "var_pop": [ - 2471 + 2219 ], "var_samp": [ - 2473 + 2221 ], "variance": [ - 2475 + 2223 ], "__typename": [ 78 @@ -43390,10 +39668,10 @@ export default { }, "match_maps_arr_rel_insert_input": { "data": [ - 2446 + 2194 ], "on_conflict": [ - 2453 + 2201 ], "__typename": [ 78 @@ -43430,19 +39708,19 @@ export default { }, "match_maps_avg_order_by": { "clips_count": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "public_clips_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -43450,25 +39728,25 @@ export default { }, "match_maps_bool_exp": { "_and": [ - 2443 + 2191 ], "_not": [ - 2443 + 2191 ], "_or": [ - 2443 + 2191 ], "clips_count": [ 39 ], "created_at": [ - 4325 + 4077 ], "demos": [ - 2330 + 2078 ], "demos_aggregate": [ - 2320 + 2068 ], "demos_download_url": [ 80 @@ -43477,31 +39755,31 @@ export default { 39 ], "e_match_map_status": [ - 796 + 783 ], "ended_at": [ - 4325 + 4077 ], "flashes": [ - 3102 + 2850 ], "flashes_aggregate": [ - 3093 + 2841 ], "id": [ - 4764 + 4623 ], "is_current_map": [ 4 ], "latest_clip_at": [ - 4325 + 4077 ], "lineup_1_score": [ 39 ], "lineup_1_side": [ - 1043 + 1030 ], "lineup_1_timeouts_available": [ 39 @@ -43510,94 +39788,94 @@ export default { 39 ], "lineup_2_side": [ - 1043 + 1030 ], "lineup_2_timeouts_available": [ 39 ], "map": [ - 2123 + 1871 ], "map_id": [ - 4764 + 4623 ], "match": [ - 2605 + 2353 ], "match_clips": [ - 2152 + 1900 ], "match_clips_aggregate": [ - 2145 + 1893 ], "match_id": [ - 4764 + 4623 ], "objectives": [ - 3346 + 3094 ], "objectives_aggregate": [ - 3339 + 3087 ], "order": [ 39 ], "player_assists": [ - 2930 + 2678 ], "player_assists_aggregate": [ - 2921 + 2669 ], "player_damages": [ - 2991 + 2739 ], "player_damages_aggregate": [ - 2984 + 2732 ], "player_kills": [ - 3147 + 2895 ], "player_kills_aggregate": [ - 3138 + 2886 ], "player_unused_utilities": [ - 3633 + 3381 ], "player_unused_utilities_aggregate": [ - 3626 + 3374 ], "public_clips_count": [ 39 ], "public_latest_clip_at": [ - 4325 + 4077 ], "rounds": [ - 2378 + 2126 ], "rounds_aggregate": [ - 2371 + 2119 ], "started_at": [ - 4325 + 4077 ], "status": [ - 799 + 786 ], "utility": [ - 3674 + 3422 ], "utility_aggregate": [ - 3667 + 3415 ], "vetos": [ - 2417 + 2165 ], "vetos_aggregate": [ - 2412 + 2160 ], "winning_lineup_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -43629,94 +39907,94 @@ export default { 38 ], "created_at": [ - 4324 + 4076 ], "demos": [ - 2327 + 2075 ], "e_match_map_status": [ - 804 + 791 ], "ended_at": [ - 4324 + 4076 ], "flashes": [ - 3099 + 2847 ], "id": [ - 4762 + 4621 ], "latest_clip_at": [ - 4324 + 4076 ], "lineup_1_side": [ - 1042 + 1029 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 1042 + 1029 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 2131 + 1879 ], "map_id": [ - 4762 + 4621 ], "match": [ - 2614 + 2362 ], "match_clips": [ - 2149 + 1897 ], "match_id": [ - 4762 + 4621 ], "objectives": [ - 3343 + 3091 ], "order": [ 38 ], "player_assists": [ - 2927 + 2675 ], "player_damages": [ - 2988 + 2736 ], "player_kills": [ - 3144 + 2892 ], "player_unused_utilities": [ - 3630 + 3378 ], "public_clips_count": [ 38 ], "public_latest_clip_at": [ - 4324 + 4076 ], "rounds": [ - 2375 + 2123 ], "started_at": [ - 4324 + 4076 ], "status": [ - 798 + 785 ], "utility": [ - 3671 + 3419 ], "vetos": [ - 2416 + 2164 ], "winning_lineup_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -43727,7 +40005,7 @@ export default { 38 ], "created_at": [ - 4324 + 4076 ], "demos_download_url": [ 78 @@ -43736,13 +40014,13 @@ export default { 38 ], "ended_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "latest_clip_at": [ - 4324 + 4076 ], "lineup_1_score": [ 38 @@ -43757,10 +40035,10 @@ export default { 38 ], "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "order": [ 38 @@ -43769,13 +40047,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4324 + 4076 ], "started_at": [ - 4324 + 4076 ], "winning_lineup_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -43783,46 +40061,46 @@ export default { }, "match_maps_max_order_by": { "clips_count": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "ended_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "latest_clip_at": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "map_id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "public_clips_count": [ - 2781 + 2529 ], "public_latest_clip_at": [ - 2781 + 2529 ], "started_at": [ - 2781 + 2529 ], "winning_lineup_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -43833,7 +40111,7 @@ export default { 38 ], "created_at": [ - 4324 + 4076 ], "demos_download_url": [ 78 @@ -43842,13 +40120,13 @@ export default { 38 ], "ended_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "latest_clip_at": [ - 4324 + 4076 ], "lineup_1_score": [ 38 @@ -43863,10 +40141,10 @@ export default { 38 ], "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "order": [ 38 @@ -43875,13 +40153,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4324 + 4076 ], "started_at": [ - 4324 + 4076 ], "winning_lineup_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -43889,46 +40167,46 @@ export default { }, "match_maps_min_order_by": { "clips_count": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "ended_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "latest_clip_at": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "map_id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "public_clips_count": [ - 2781 + 2529 ], "public_latest_clip_at": [ - 2781 + 2529 ], "started_at": [ - 2781 + 2529 ], "winning_lineup_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -43939,7 +40217,7 @@ export default { 38 ], "returning": [ - 2434 + 2182 ], "__typename": [ 78 @@ -43947,10 +40225,10 @@ export default { }, "match_maps_obj_rel_insert_input": { "data": [ - 2446 + 2194 ], "on_conflict": [ - 2453 + 2201 ], "__typename": [ 78 @@ -43958,13 +40236,13 @@ export default { }, "match_maps_on_conflict": { "constraint": [ - 2444 + 2192 ], "update_columns": [ - 2468 + 2216 ], "where": [ - 2443 + 2191 ], "__typename": [ 78 @@ -43972,112 +40250,112 @@ export default { }, "match_maps_order_by": { "clips_count": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "demos_aggregate": [ - 2325 + 2073 ], "demos_download_url": [ - 2781 + 2529 ], "demos_total_size": [ - 2781 + 2529 ], "e_match_map_status": [ - 806 + 793 ], "ended_at": [ - 2781 + 2529 ], "flashes_aggregate": [ - 3098 + 2846 ], "id": [ - 2781 + 2529 ], "is_current_map": [ - 2781 + 2529 ], "latest_clip_at": [ - 2781 + 2529 ], "lineup_1_score": [ - 2781 + 2529 ], "lineup_1_side": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_score": [ - 2781 + 2529 ], "lineup_2_side": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "map": [ - 2133 + 1881 ], "map_id": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_clips_aggregate": [ - 2148 + 1896 ], "match_id": [ - 2781 + 2529 ], "objectives_aggregate": [ - 3342 + 3090 ], "order": [ - 2781 + 2529 ], "player_assists_aggregate": [ - 2926 + 2674 ], "player_damages_aggregate": [ - 2987 + 2735 ], "player_kills_aggregate": [ - 3143 + 2891 ], "player_unused_utilities_aggregate": [ - 3629 + 3377 ], "public_clips_count": [ - 2781 + 2529 ], "public_latest_clip_at": [ - 2781 + 2529 ], "rounds_aggregate": [ - 2374 + 2122 ], "started_at": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "utility_aggregate": [ - 3670 + 3418 ], "vetos_aggregate": [ - 2415 + 2163 ], "winning_lineup_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -44085,7 +40363,7 @@ export default { }, "match_maps_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -44097,34 +40375,34 @@ export default { 38 ], "created_at": [ - 4324 + 4076 ], "ended_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "latest_clip_at": [ - 4324 + 4076 ], "lineup_1_side": [ - 1042 + 1029 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 1042 + 1029 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "order": [ 38 @@ -44133,16 +40411,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4324 + 4076 ], "started_at": [ - 4324 + 4076 ], "status": [ - 798 + 785 ], "winning_lineup_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -44179,19 +40457,19 @@ export default { }, "match_maps_stddev_order_by": { "clips_count": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "public_clips_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -44228,19 +40506,19 @@ export default { }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "public_clips_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -44277,19 +40555,19 @@ export default { }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "public_clips_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -44297,7 +40575,7 @@ export default { }, "match_maps_stream_cursor_input": { "initial_value": [ - 2465 + 2213 ], "ordering": [ 236 @@ -44311,34 +40589,34 @@ export default { 38 ], "created_at": [ - 4324 + 4076 ], "ended_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "latest_clip_at": [ - 4324 + 4076 ], "lineup_1_side": [ - 1042 + 1029 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 1042 + 1029 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "order": [ 38 @@ -44347,16 +40625,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4324 + 4076 ], "started_at": [ - 4324 + 4076 ], "status": [ - 798 + 785 ], "winning_lineup_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -44393,19 +40671,19 @@ export default { }, "match_maps_sum_order_by": { "clips_count": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "public_clips_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -44414,13 +40692,13 @@ export default { "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2445 + 2193 ], "_set": [ - 2457 + 2205 ], "where": [ - 2443 + 2191 ], "__typename": [ 78 @@ -44457,19 +40735,19 @@ export default { }, "match_maps_var_pop_order_by": { "clips_count": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "public_clips_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -44506,19 +40784,19 @@ export default { }, "match_maps_var_samp_order_by": { "clips_count": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "public_clips_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -44555,19 +40833,19 @@ export default { }, "match_maps_variance_order_by": { "clips_count": [ - 2781 + 2529 ], "lineup_1_timeouts_available": [ - 2781 + 2529 ], "lineup_2_timeouts_available": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "public_clips_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -44584,7 +40862,7 @@ export default { 38 ], "check_in_setting": [ - 405 + 432 ], "coaches": [ 3 @@ -44592,11 +40870,14 @@ export default { "default_models": [ 3 ], + "halftime_pausematch": [ + 3 + ], "has_active_matches": [ 3 ], "id": [ - 4762 + 4621 ], "invite_code": [ 78 @@ -44608,22 +40889,22 @@ export default { 38 ], "map_pool": [ - 2095 + 1843 ], "map_pool_id": [ - 4762 + 4621 ], "map_veto": [ 3 ], "match_mode": [ - 819 + 806 ], "matches": [ - 2596, + 2344, { "distinct_on": [ - 2618, + 2366, "[matches_select_column!]" ], "limit": [ @@ -44633,19 +40914,19 @@ export default { 38 ], "order_by": [ - 2616, + 2364, "[matches_order_by!]" ], "where": [ - 2605 + 2353 ] } ], "matches_aggregate": [ - 2597, + 2345, { "distinct_on": [ - 2618, + 2366, "[matches_select_column!]" ], "limit": [ @@ -44655,11 +40936,11 @@ export default { 38 ], "order_by": [ - 2616, + 2364, "[matches_order_by!]" ], "where": [ - 2605 + 2353 ] } ], @@ -44676,7 +40957,7 @@ export default { 3 ], "ready_setting": [ - 961 + 948 ], "region_veto": [ 3 @@ -44684,26 +40965,29 @@ export default { "regions": [ 78 ], + "round_restart_delay": [ + 38 + ], "tech_timeout_setting": [ - 1123 + 1110 ], "timeout_setting": [ - 1123 + 1110 ], "tournament": [ - 4716 + 4557 ], "tournament_bracket": [ - 4326 + 4078 ], "tournament_stage": [ - 4454 + 4295 ], "tv_delay": [ 38 ], "type": [ - 860 + 847 ], "__typename": [ 78 @@ -44711,10 +40995,10 @@ export default { }, "match_options_aggregate": { "aggregate": [ - 2478 + 2226 ], "nodes": [ - 2476 + 2224 ], "__typename": [ 78 @@ -44722,13 +41006,13 @@ export default { }, "match_options_aggregate_fields": { "avg": [ - 2479 + 2227 ], "count": [ 38, { "columns": [ - 2491, + 2239, "[match_options_select_column!]" ], "distinct": [ @@ -44737,31 +41021,31 @@ export default { } ], "max": [ - 2484 + 2232 ], "min": [ - 2485 + 2233 ], "stddev": [ - 2493 + 2241 ], "stddev_pop": [ - 2494 + 2242 ], "stddev_samp": [ - 2495 + 2243 ], "sum": [ - 2498 + 2246 ], "var_pop": [ - 2501 + 2249 ], "var_samp": [ - 2502 + 2250 ], "variance": [ - 2503 + 2251 ], "__typename": [ 78 @@ -44783,6 +41067,9 @@ export default { "number_of_substitutes": [ 29 ], + "round_restart_delay": [ + 29 + ], "tv_delay": [ 29 ], @@ -44792,13 +41079,13 @@ export default { }, "match_options_bool_exp": { "_and": [ - 2480 + 2228 ], "_not": [ - 2480 + 2228 ], "_or": [ - 2480 + 2228 ], "auto_cancel_duration": [ 39 @@ -44810,7 +41097,7 @@ export default { 39 ], "check_in_setting": [ - 406 + 433 ], "coaches": [ 4 @@ -44818,11 +41105,14 @@ export default { "default_models": [ 4 ], + "halftime_pausematch": [ + 4 + ], "has_active_matches": [ 4 ], "id": [ - 4764 + 4623 ], "invite_code": [ 80 @@ -44834,22 +41124,22 @@ export default { 39 ], "map_pool": [ - 2098 + 1846 ], "map_pool_id": [ - 4764 + 4623 ], "map_veto": [ 4 ], "match_mode": [ - 820 + 807 ], "matches": [ - 2605 + 2353 ], "matches_aggregate": [ - 2598 + 2346 ], "mr": [ 39 @@ -44864,7 +41154,7 @@ export default { 4 ], "ready_setting": [ - 962 + 949 ], "region_veto": [ 4 @@ -44872,26 +41162,29 @@ export default { "regions": [ 79 ], + "round_restart_delay": [ + 39 + ], "tech_timeout_setting": [ - 1124 + 1111 ], "timeout_setting": [ - 1124 + 1111 ], "tournament": [ - 4727 + 4578 ], "tournament_bracket": [ - 4337 + 4089 ], "tournament_stage": [ - 4466 + 4307 ], "tv_delay": [ 39 ], "type": [ - 861 + 848 ], "__typename": [ 78 @@ -44914,6 +41207,9 @@ export default { "number_of_substitutes": [ 38 ], + "round_restart_delay": [ + 38 + ], "tv_delay": [ 38 ], @@ -44932,7 +41228,7 @@ export default { 38 ], "check_in_setting": [ - 405 + 432 ], "coaches": [ 3 @@ -44940,8 +41236,11 @@ export default { "default_models": [ 3 ], + "halftime_pausematch": [ + 3 + ], "id": [ - 4762 + 4621 ], "invite_code": [ 78 @@ -44953,19 +41252,19 @@ export default { 38 ], "map_pool": [ - 2104 + 1852 ], "map_pool_id": [ - 4762 + 4621 ], "map_veto": [ 3 ], "match_mode": [ - 819 + 806 ], "matches": [ - 2602 + 2350 ], "mr": [ 38 @@ -44980,7 +41279,7 @@ export default { 3 ], "ready_setting": [ - 961 + 948 ], "region_veto": [ 3 @@ -44988,26 +41287,29 @@ export default { "regions": [ 78 ], + "round_restart_delay": [ + 38 + ], "tech_timeout_setting": [ - 1123 + 1110 ], "timeout_setting": [ - 1123 + 1110 ], "tournament": [ - 4736 + 4587 ], "tournament_bracket": [ - 4346 + 4098 ], "tournament_stage": [ - 4478 + 4319 ], "tv_delay": [ 38 ], "type": [ - 860 + 847 ], "__typename": [ 78 @@ -45021,7 +41323,7 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "invite_code": [ 78 @@ -45030,7 +41332,7 @@ export default { 38 ], "map_pool_id": [ - 4762 + 4621 ], "mr": [ 38 @@ -45041,6 +41343,9 @@ export default { "regions": [ 78 ], + "round_restart_delay": [ + 38 + ], "tv_delay": [ 38 ], @@ -45056,7 +41361,7 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "invite_code": [ 78 @@ -45065,7 +41370,7 @@ export default { 38 ], "map_pool_id": [ - 4762 + 4621 ], "mr": [ 38 @@ -45076,6 +41381,9 @@ export default { "regions": [ 78 ], + "round_restart_delay": [ + 38 + ], "tv_delay": [ 38 ], @@ -45088,7 +41396,7 @@ export default { 38 ], "returning": [ - 2476 + 2224 ], "__typename": [ 78 @@ -45096,10 +41404,10 @@ export default { }, "match_options_obj_rel_insert_input": { "data": [ - 2483 + 2231 ], "on_conflict": [ - 2488 + 2236 ], "__typename": [ 78 @@ -45107,13 +41415,13 @@ export default { }, "match_options_on_conflict": { "constraint": [ - 2481 + 2229 ], "update_columns": [ - 2499 + 2247 ], "where": [ - 2480 + 2228 ], "__typename": [ 78 @@ -45121,94 +41429,100 @@ export default { }, "match_options_order_by": { "auto_cancel_duration": [ - 2781 + 2529 ], "auto_cancellation": [ - 2781 + 2529 ], "best_of": [ - 2781 + 2529 ], "check_in_setting": [ - 2781 + 2529 ], "coaches": [ - 2781 + 2529 ], "default_models": [ - 2781 + 2529 + ], + "halftime_pausematch": [ + 2529 ], "has_active_matches": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "invite_code": [ - 2781 + 2529 ], "knife_round": [ - 2781 + 2529 ], "live_match_timeout": [ - 2781 + 2529 ], "map_pool": [ - 2106 + 1854 ], "map_pool_id": [ - 2781 + 2529 ], "map_veto": [ - 2781 + 2529 ], "match_mode": [ - 2781 + 2529 ], "matches_aggregate": [ - 2601 + 2349 ], "mr": [ - 2781 + 2529 ], "number_of_substitutes": [ - 2781 + 2529 ], "overtime": [ - 2781 + 2529 ], "prefer_dedicated_server": [ - 2781 + 2529 ], "ready_setting": [ - 2781 + 2529 ], "region_veto": [ - 2781 + 2529 ], "regions": [ - 2781 + 2529 + ], + "round_restart_delay": [ + 2529 ], "tech_timeout_setting": [ - 2781 + 2529 ], "timeout_setting": [ - 2781 + 2529 ], "tournament": [ - 4738 + 4589 ], "tournament_bracket": [ - 4348 + 4100 ], "tournament_stage": [ - 4480 + 4321 ], "tv_delay": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "__typename": [ 78 @@ -45216,7 +41530,7 @@ export default { }, "match_options_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -45234,7 +41548,7 @@ export default { 38 ], "check_in_setting": [ - 405 + 432 ], "coaches": [ 3 @@ -45242,8 +41556,11 @@ export default { "default_models": [ 3 ], + "halftime_pausematch": [ + 3 + ], "id": [ - 4762 + 4621 ], "invite_code": [ 78 @@ -45255,13 +41572,13 @@ export default { 38 ], "map_pool_id": [ - 4762 + 4621 ], "map_veto": [ 3 ], "match_mode": [ - 819 + 806 ], "mr": [ 38 @@ -45276,7 +41593,7 @@ export default { 3 ], "ready_setting": [ - 961 + 948 ], "region_veto": [ 3 @@ -45284,17 +41601,20 @@ export default { "regions": [ 78 ], + "round_restart_delay": [ + 38 + ], "tech_timeout_setting": [ - 1123 + 1110 ], "timeout_setting": [ - 1123 + 1110 ], "tv_delay": [ 38 ], "type": [ - 860 + 847 ], "__typename": [ 78 @@ -45316,6 +41636,9 @@ export default { "number_of_substitutes": [ 29 ], + "round_restart_delay": [ + 29 + ], "tv_delay": [ 29 ], @@ -45339,6 +41662,9 @@ export default { "number_of_substitutes": [ 29 ], + "round_restart_delay": [ + 29 + ], "tv_delay": [ 29 ], @@ -45362,6 +41688,9 @@ export default { "number_of_substitutes": [ 29 ], + "round_restart_delay": [ + 29 + ], "tv_delay": [ 29 ], @@ -45371,7 +41700,7 @@ export default { }, "match_options_stream_cursor_input": { "initial_value": [ - 2497 + 2245 ], "ordering": [ 236 @@ -45391,7 +41720,7 @@ export default { 38 ], "check_in_setting": [ - 405 + 432 ], "coaches": [ 3 @@ -45399,8 +41728,11 @@ export default { "default_models": [ 3 ], + "halftime_pausematch": [ + 3 + ], "id": [ - 4762 + 4621 ], "invite_code": [ 78 @@ -45412,13 +41744,13 @@ export default { 38 ], "map_pool_id": [ - 4762 + 4621 ], "map_veto": [ 3 ], "match_mode": [ - 819 + 806 ], "mr": [ 38 @@ -45433,7 +41765,7 @@ export default { 3 ], "ready_setting": [ - 961 + 948 ], "region_veto": [ 3 @@ -45441,17 +41773,20 @@ export default { "regions": [ 78 ], + "round_restart_delay": [ + 38 + ], "tech_timeout_setting": [ - 1123 + 1110 ], "timeout_setting": [ - 1123 + 1110 ], "tv_delay": [ 38 ], "type": [ - 860 + 847 ], "__typename": [ 78 @@ -45473,6 +41808,9 @@ export default { "number_of_substitutes": [ 38 ], + "round_restart_delay": [ + 38 + ], "tv_delay": [ 38 ], @@ -45483,13 +41821,13 @@ export default { "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2482 + 2230 ], "_set": [ - 2492 + 2240 ], "where": [ - 2480 + 2228 ], "__typename": [ 78 @@ -45511,6 +41849,9 @@ export default { "number_of_substitutes": [ 29 ], + "round_restart_delay": [ + 29 + ], "tv_delay": [ 29 ], @@ -45534,6 +41875,9 @@ export default { "number_of_substitutes": [ 29 ], + "round_restart_delay": [ + 29 + ], "tv_delay": [ 29 ], @@ -45557,6 +41901,9 @@ export default { "number_of_substitutes": [ 29 ], + "round_restart_delay": [ + 29 + ], "tv_delay": [ 29 ], @@ -45566,28 +41913,28 @@ export default { }, "match_region_veto_picks": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_lineup": [ - 2276 + 2024 ], "match_lineup_id": [ - 4762 + 4621 ], "region": [ 78 ], "type": [ - 1205 + 1213 ], "__typename": [ 78 @@ -45595,10 +41942,10 @@ export default { }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2508 + 2256 ], "nodes": [ - 2504 + 2252 ], "__typename": [ 78 @@ -45606,7 +41953,7 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 2507 + 2255 ], "__typename": [ 78 @@ -45614,13 +41961,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2522 + 2270 ], "distinct": [ 3 ], "filter": [ - 2511 + 2259 ], "predicate": [ 39 @@ -45634,7 +41981,7 @@ export default { 38, { "columns": [ - 2522, + 2270, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -45643,10 +41990,10 @@ export default { } ], "max": [ - 2514 + 2262 ], "min": [ - 2516 + 2264 ], "__typename": [ 78 @@ -45654,13 +42001,13 @@ export default { }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 2781 + 2529 ], "max": [ - 2515 + 2263 ], "min": [ - 2517 + 2265 ], "__typename": [ 78 @@ -45668,10 +42015,10 @@ export default { }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2513 + 2261 ], "on_conflict": [ - 2519 + 2267 ], "__typename": [ 78 @@ -45679,37 +42026,37 @@ export default { }, "match_region_veto_picks_bool_exp": { "_and": [ - 2511 + 2259 ], "_not": [ - 2511 + 2259 ], "_or": [ - 2511 + 2259 ], "created_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_lineup": [ - 2285 + 2033 ], "match_lineup_id": [ - 4764 + 4623 ], "region": [ 80 ], "type": [ - 1206 + 1214 ], "__typename": [ 78 @@ -45718,28 +42065,28 @@ export default { "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_lineup": [ - 2294 + 2042 ], "match_lineup_id": [ - 4762 + 4621 ], "region": [ 78 ], "type": [ - 1205 + 1213 ], "__typename": [ 78 @@ -45747,16 +42094,16 @@ export default { }, "match_region_veto_picks_max_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "region": [ 78 @@ -45767,19 +42114,19 @@ export default { }, "match_region_veto_picks_max_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_lineup_id": [ - 2781 + 2529 ], "region": [ - 2781 + 2529 ], "__typename": [ 78 @@ -45787,16 +42134,16 @@ export default { }, "match_region_veto_picks_min_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "region": [ 78 @@ -45807,19 +42154,19 @@ export default { }, "match_region_veto_picks_min_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_lineup_id": [ - 2781 + 2529 ], "region": [ - 2781 + 2529 ], "__typename": [ 78 @@ -45830,7 +42177,7 @@ export default { 38 ], "returning": [ - 2504 + 2252 ], "__typename": [ 78 @@ -45838,13 +42185,13 @@ export default { }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2512 + 2260 ], "update_columns": [ - 2526 + 2274 ], "where": [ - 2511 + 2259 ], "__typename": [ 78 @@ -45852,28 +42199,28 @@ export default { }, "match_region_veto_picks_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_lineup": [ - 2296 + 2044 ], "match_lineup_id": [ - 2781 + 2529 ], "region": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "__typename": [ 78 @@ -45881,7 +42228,7 @@ export default { }, "match_region_veto_picks_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -45890,22 +42237,22 @@ export default { "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "region": [ 78 ], "type": [ - 1205 + 1213 ], "__typename": [ 78 @@ -45913,7 +42260,7 @@ export default { }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2525 + 2273 ], "ordering": [ 236 @@ -45924,22 +42271,22 @@ export default { }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "region": [ 78 ], "type": [ - 1205 + 1213 ], "__typename": [ 78 @@ -45948,10 +42295,10 @@ export default { "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2523 + 2271 ], "where": [ - 2511 + 2259 ], "__typename": [ 78 @@ -45965,13 +42312,13 @@ export default { 78 ], "game_server_node": [ - 1528 + 1277 ], "game_server_node_id": [ 78 ], "id": [ - 4762 + 4621 ], "is_game_streamer": [ 3 @@ -45983,16 +42330,16 @@ export default { 78 ], "last_status_at": [ - 4324 + 4076 ], "link": [ 78 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "mode": [ 78 @@ -46004,7 +42351,7 @@ export default { 78 ], "status_history": [ - 1652, + 1400, { "path": [ 78 @@ -46023,10 +42370,10 @@ export default { }, "match_streams_aggregate": { "aggregate": [ - 2534 + 2282 ], "nodes": [ - 2528 + 2276 ], "__typename": [ 78 @@ -46034,13 +42381,13 @@ export default { }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2531 + 2279 ], "bool_or": [ - 2532 + 2280 ], "count": [ - 2533 + 2281 ], "__typename": [ 78 @@ -46048,13 +42395,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2557 + 2305 ], "distinct": [ 3 ], "filter": [ - 2540 + 2288 ], "predicate": [ 4 @@ -46065,13 +42412,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2558 + 2306 ], "distinct": [ 3 ], "filter": [ - 2540 + 2288 ], "predicate": [ 4 @@ -46082,13 +42429,13 @@ export default { }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2556 + 2304 ], "distinct": [ 3 ], "filter": [ - 2540 + 2288 ], "predicate": [ 39 @@ -46099,13 +42446,13 @@ export default { }, "match_streams_aggregate_fields": { "avg": [ - 2538 + 2286 ], "count": [ 38, { "columns": [ - 2556, + 2304, "[match_streams_select_column!]" ], "distinct": [ @@ -46114,31 +42461,31 @@ export default { } ], "max": [ - 2547 + 2295 ], "min": [ - 2549 + 2297 ], "stddev": [ - 2560 + 2308 ], "stddev_pop": [ - 2562 + 2310 ], "stddev_samp": [ - 2564 + 2312 ], "sum": [ - 2568 + 2316 ], "var_pop": [ - 2572 + 2320 ], "var_samp": [ - 2574 + 2322 ], "variance": [ - 2576 + 2324 ], "__typename": [ 78 @@ -46146,37 +42493,37 @@ export default { }, "match_streams_aggregate_order_by": { "avg": [ - 2539 + 2287 ], "count": [ - 2781 + 2529 ], "max": [ - 2548 + 2296 ], "min": [ - 2550 + 2298 ], "stddev": [ - 2561 + 2309 ], "stddev_pop": [ - 2563 + 2311 ], "stddev_samp": [ - 2565 + 2313 ], "sum": [ - 2569 + 2317 ], "var_pop": [ - 2573 + 2321 ], "var_samp": [ - 2575 + 2323 ], "variance": [ - 2577 + 2325 ], "__typename": [ 78 @@ -46184,7 +42531,7 @@ export default { }, "match_streams_append_input": { "status_history": [ - 1652 + 1400 ], "__typename": [ 78 @@ -46192,10 +42539,10 @@ export default { }, "match_streams_arr_rel_insert_input": { "data": [ - 2546 + 2294 ], "on_conflict": [ - 2552 + 2300 ], "__typename": [ 78 @@ -46211,7 +42558,7 @@ export default { }, "match_streams_avg_order_by": { "priority": [ - 2781 + 2529 ], "__typename": [ 78 @@ -46219,13 +42566,13 @@ export default { }, "match_streams_bool_exp": { "_and": [ - 2540 + 2288 ], "_not": [ - 2540 + 2288 ], "_or": [ - 2540 + 2288 ], "autodirector": [ 4 @@ -46234,13 +42581,13 @@ export default { 80 ], "game_server_node": [ - 1540 + 1289 ], "game_server_node_id": [ 80 ], "id": [ - 4764 + 4623 ], "is_game_streamer": [ 4 @@ -46252,16 +42599,16 @@ export default { 80 ], "last_status_at": [ - 4325 + 4077 ], "link": [ 80 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "mode": [ 80 @@ -46273,7 +42620,7 @@ export default { 80 ], "status_history": [ - 1654 + 1402 ], "stream_url": [ 80 @@ -46326,13 +42673,13 @@ export default { 78 ], "game_server_node": [ - 1552 + 1301 ], "game_server_node_id": [ 78 ], "id": [ - 4762 + 4621 ], "is_game_streamer": [ 3 @@ -46344,16 +42691,16 @@ export default { 78 ], "last_status_at": [ - 4324 + 4076 ], "link": [ 78 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "mode": [ 78 @@ -46365,7 +42712,7 @@ export default { 78 ], "status_history": [ - 1652 + 1400 ], "stream_url": [ 78 @@ -46385,19 +42732,19 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4324 + 4076 ], "link": [ 78 ], "match_id": [ - 4762 + 4621 ], "mode": [ 78 @@ -46420,40 +42767,40 @@ export default { }, "match_streams_max_order_by": { "error_message": [ - 2781 + 2529 ], "game_server_node_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "k8s_service_name": [ - 2781 + 2529 ], "last_status_at": [ - 2781 + 2529 ], "link": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "mode": [ - 2781 + 2529 ], "priority": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "stream_url": [ - 2781 + 2529 ], "title": [ - 2781 + 2529 ], "__typename": [ 78 @@ -46467,19 +42814,19 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4324 + 4076 ], "link": [ 78 ], "match_id": [ - 4762 + 4621 ], "mode": [ 78 @@ -46502,40 +42849,40 @@ export default { }, "match_streams_min_order_by": { "error_message": [ - 2781 + 2529 ], "game_server_node_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "k8s_service_name": [ - 2781 + 2529 ], "last_status_at": [ - 2781 + 2529 ], "link": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "mode": [ - 2781 + 2529 ], "priority": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "stream_url": [ - 2781 + 2529 ], "title": [ - 2781 + 2529 ], "__typename": [ 78 @@ -46546,7 +42893,7 @@ export default { 38 ], "returning": [ - 2528 + 2276 ], "__typename": [ 78 @@ -46554,13 +42901,13 @@ export default { }, "match_streams_on_conflict": { "constraint": [ - 2541 + 2289 ], "update_columns": [ - 2570 + 2318 ], "where": [ - 2540 + 2288 ], "__typename": [ 78 @@ -46568,58 +42915,58 @@ export default { }, "match_streams_order_by": { "autodirector": [ - 2781 + 2529 ], "error_message": [ - 2781 + 2529 ], "game_server_node": [ - 1554 + 1303 ], "game_server_node_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "is_game_streamer": [ - 2781 + 2529 ], "is_live": [ - 2781 + 2529 ], "k8s_service_name": [ - 2781 + 2529 ], "last_status_at": [ - 2781 + 2529 ], "link": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "mode": [ - 2781 + 2529 ], "priority": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "status_history": [ - 2781 + 2529 ], "stream_url": [ - 2781 + 2529 ], "title": [ - 2781 + 2529 ], "__typename": [ 78 @@ -46627,7 +42974,7 @@ export default { }, "match_streams_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -46635,7 +42982,7 @@ export default { }, "match_streams_prepend_input": { "status_history": [ - 1652 + 1400 ], "__typename": [ 78 @@ -46655,7 +43002,7 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "is_game_streamer": [ 3 @@ -46667,13 +43014,13 @@ export default { 78 ], "last_status_at": [ - 4324 + 4076 ], "link": [ 78 ], "match_id": [ - 4762 + 4621 ], "mode": [ 78 @@ -46685,7 +43032,7 @@ export default { 78 ], "status_history": [ - 1652 + 1400 ], "stream_url": [ 78 @@ -46707,7 +43054,7 @@ export default { }, "match_streams_stddev_order_by": { "priority": [ - 2781 + 2529 ], "__typename": [ 78 @@ -46723,7 +43070,7 @@ export default { }, "match_streams_stddev_pop_order_by": { "priority": [ - 2781 + 2529 ], "__typename": [ 78 @@ -46739,7 +43086,7 @@ export default { }, "match_streams_stddev_samp_order_by": { "priority": [ - 2781 + 2529 ], "__typename": [ 78 @@ -46747,7 +43094,7 @@ export default { }, "match_streams_stream_cursor_input": { "initial_value": [ - 2567 + 2315 ], "ordering": [ 236 @@ -46767,7 +43114,7 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "is_game_streamer": [ 3 @@ -46779,13 +43126,13 @@ export default { 78 ], "last_status_at": [ - 4324 + 4076 ], "link": [ 78 ], "match_id": [ - 4762 + 4621 ], "mode": [ 78 @@ -46797,7 +43144,7 @@ export default { 78 ], "status_history": [ - 1652 + 1400 ], "stream_url": [ 78 @@ -46819,7 +43166,7 @@ export default { }, "match_streams_sum_order_by": { "priority": [ - 2781 + 2529 ], "__typename": [ 78 @@ -46828,28 +43175,28 @@ export default { "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2536 + 2284 ], "_delete_at_path": [ - 2542 + 2290 ], "_delete_elem": [ - 2543 + 2291 ], "_delete_key": [ - 2544 + 2292 ], "_inc": [ - 2545 + 2293 ], "_prepend": [ - 2555 + 2303 ], "_set": [ - 2559 + 2307 ], "where": [ - 2540 + 2288 ], "__typename": [ 78 @@ -46865,7 +43212,7 @@ export default { }, "match_streams_var_pop_order_by": { "priority": [ - 2781 + 2529 ], "__typename": [ 78 @@ -46881,7 +43228,7 @@ export default { }, "match_streams_var_samp_order_by": { "priority": [ - 2781 + 2529 ], "__typename": [ 78 @@ -46897,7 +43244,7 @@ export default { }, "match_streams_variance_order_by": { "priority": [ - 2781 + 2529 ], "__typename": [ 78 @@ -46908,7 +43255,7 @@ export default { 78 ], "type": [ - 591 + 578 ], "__typename": [ 78 @@ -46916,10 +43263,10 @@ export default { }, "match_type_cfgs_aggregate": { "aggregate": [ - 2580 + 2328 ], "nodes": [ - 2578 + 2326 ], "__typename": [ 78 @@ -46930,7 +43277,7 @@ export default { 38, { "columns": [ - 2590, + 2338, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -46939,10 +43286,10 @@ export default { } ], "max": [ - 2584 + 2332 ], "min": [ - 2585 + 2333 ], "__typename": [ 78 @@ -46950,19 +43297,19 @@ export default { }, "match_type_cfgs_bool_exp": { "_and": [ - 2581 + 2329 ], "_not": [ - 2581 + 2329 ], "_or": [ - 2581 + 2329 ], "cfg": [ 80 ], "type": [ - 592 + 579 ], "__typename": [ 78 @@ -46974,7 +43321,7 @@ export default { 78 ], "type": [ - 591 + 578 ], "__typename": [ 78 @@ -47001,7 +43348,7 @@ export default { 38 ], "returning": [ - 2578 + 2326 ], "__typename": [ 78 @@ -47009,13 +43356,13 @@ export default { }, "match_type_cfgs_on_conflict": { "constraint": [ - 2582 + 2330 ], "update_columns": [ - 2594 + 2342 ], "where": [ - 2581 + 2329 ], "__typename": [ 78 @@ -47023,10 +43370,10 @@ export default { }, "match_type_cfgs_order_by": { "cfg": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "__typename": [ 78 @@ -47034,7 +43381,7 @@ export default { }, "match_type_cfgs_pk_columns_input": { "type": [ - 591 + 578 ], "__typename": [ 78 @@ -47046,7 +43393,7 @@ export default { 78 ], "type": [ - 591 + 578 ], "__typename": [ 78 @@ -47054,7 +43401,7 @@ export default { }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2593 + 2341 ], "ordering": [ 236 @@ -47068,7 +43415,7 @@ export default { 78 ], "type": [ - 591 + 578 ], "__typename": [ 78 @@ -47077,10 +43424,10 @@ export default { "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2591 + 2339 ], "where": [ - 2581 + 2329 ], "__typename": [ 78 @@ -47112,13 +43459,13 @@ export default { 3 ], "cancels_at": [ - 4324 + 4076 ], "clutches": [ - 4942, + 4750, { "distinct_on": [ - 4958, + 4766, "[v_match_clutches_select_column!]" ], "limit": [ @@ -47128,19 +43475,19 @@ export default { 38 ], "order_by": [ - 4957, + 4765, "[v_match_clutches_order_by!]" ], "where": [ - 4951 + 4759 ] } ], "clutches_aggregate": [ - 4943, + 4751, { "distinct_on": [ - 4958, + 4766, "[v_match_clutches_select_column!]" ], "limit": [ @@ -47150,11 +43497,11 @@ export default { 38 ], "order_by": [ - 4957, + 4765, "[v_match_clutches_order_by!]" ], "where": [ - 4951 + 4759 ] } ], @@ -47165,16 +43512,16 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "current_match_map_id": [ - 4762 + 4621 ], "demos": [ - 2318, + 2066, { "distinct_on": [ - 2347, + 2095, "[match_map_demos_select_column!]" ], "limit": [ @@ -47184,19 +43531,19 @@ export default { 38 ], "order_by": [ - 2344, + 2092, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2078 ] } ], "demos_aggregate": [ - 2319, + 2067, { "distinct_on": [ - 2347, + 2095, "[match_map_demos_select_column!]" ], "limit": [ @@ -47206,19 +43553,19 @@ export default { 38 ], "order_by": [ - 2344, + 2092, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2078 ] } ], "draft_games": [ - 354, + 381, { "distinct_on": [ - 378, + 405, "[draft_games_select_column!]" ], "limit": [ @@ -47228,19 +43575,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 +43597,28 @@ export default { 38 ], "order_by": [ - 376, + 403, "[draft_games_order_by!]" ], "where": [ - 365 + 392 ] } ], "e_match_status": [ - 834 + 821 ], "e_region": [ - 3826 + 3574 ], "effective_at": [ - 4324 + 4076 ], "elo_changes": [ - 5139, + 4947, { "distinct_on": [ - 5165, + 4973, "[v_player_elo_select_column!]" ], "limit": [ @@ -47281,19 +43628,19 @@ export default { 38 ], "order_by": [ - 5164, + 4972, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 4966 ] } ], "elo_changes_aggregate": [ - 5140, + 4948, { "distinct_on": [ - 5165, + 4973, "[v_player_elo_select_column!]" ], "limit": [ @@ -47303,22 +43650,22 @@ export default { 38 ], "order_by": [ - 5164, + 4972, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 4966 ] } ], "ended_at": [ - 4324 + 4076 ], "external_id": [ 78 ], "id": [ - 4762 + 4621 ], "invite_code": [ 78 @@ -47351,19 +43698,19 @@ export default { 78 ], "lineup_1": [ - 2276 + 2024 ], "lineup_1_id": [ - 4762 + 4621 ], "lineup_2": [ - 2276 + 2024 ], "lineup_2_id": [ - 4762 + 4621 ], "lineup_counts": [ - 1650, + 1398, { "path": [ 78 @@ -47371,13 +43718,13 @@ export default { } ], "map_veto_picking_lineup_id": [ - 4762 + 4621 ], "map_veto_picks": [ - 2410, + 2158, { "distinct_on": [ - 2428, + 2176, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -47387,19 +43734,19 @@ export default { 38 ], "order_by": [ - 2426, + 2174, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2165 ] } ], "map_veto_picks_aggregate": [ - 2411, + 2159, { "distinct_on": [ - 2428, + 2176, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -47409,11 +43756,11 @@ export default { 38 ], "order_by": [ - 2426, + 2174, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2165 ] } ], @@ -47421,10 +43768,10 @@ export default { 78 ], "match_maps": [ - 2434, + 2182, { "distinct_on": [ - 2456, + 2204, "[match_maps_select_column!]" ], "limit": [ @@ -47434,19 +43781,19 @@ export default { 38 ], "order_by": [ - 2454, + 2202, "[match_maps_order_by!]" ], "where": [ - 2443 + 2191 ] } ], "match_maps_aggregate": [ - 2435, + 2183, { "distinct_on": [ - 2456, + 2204, "[match_maps_select_column!]" ], "limit": [ @@ -47456,16 +43803,16 @@ export default { 38 ], "order_by": [ - 2454, + 2202, "[match_maps_order_by!]" ], "where": [ - 2443 + 2191 ] } ], "match_options_id": [ - 4762 + 4621 ], "max_players_per_lineup": [ 38 @@ -47474,10 +43821,10 @@ export default { 38 ], "opening_duels": [ - 5070, + 4878, { "distinct_on": [ - 5086, + 4894, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -47487,19 +43834,19 @@ export default { 38 ], "order_by": [ - 5085, + 4893, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5079 + 4887 ] } ], "opening_duels_aggregate": [ - 5071, + 4879, { "distinct_on": [ - 5086, + 4894, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -47509,19 +43856,19 @@ export default { 38 ], "order_by": [ - 5085, + 4893, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5079 + 4887 ] } ], "options": [ - 2476 + 2224 ], "organizer": [ - 3739 + 3487 ], "organizer_steam_id": [ 180 @@ -47530,10 +43877,10 @@ export default { 78 ], "player_assists": [ - 2919, + 2667, { "distinct_on": [ - 2942, + 2690, "[player_assists_select_column!]" ], "limit": [ @@ -47543,19 +43890,19 @@ export default { 38 ], "order_by": [ - 2940, + 2688, "[player_assists_order_by!]" ], "where": [ - 2930 + 2678 ] } ], "player_assists_aggregate": [ - 2920, + 2668, { "distinct_on": [ - 2942, + 2690, "[player_assists_select_column!]" ], "limit": [ @@ -47565,19 +43912,19 @@ export default { 38 ], "order_by": [ - 2940, + 2688, "[player_assists_order_by!]" ], "where": [ - 2930 + 2678 ] } ], "player_damages": [ - 2982, + 2730, { "distinct_on": [ - 3003, + 2751, "[player_damages_select_column!]" ], "limit": [ @@ -47587,19 +43934,19 @@ export default { 38 ], "order_by": [ - 3001, + 2749, "[player_damages_order_by!]" ], "where": [ - 2991 + 2739 ] } ], "player_damages_aggregate": [ - 2983, + 2731, { "distinct_on": [ - 3003, + 2751, "[player_damages_select_column!]" ], "limit": [ @@ -47609,19 +43956,19 @@ export default { 38 ], "order_by": [ - 3001, + 2749, "[player_damages_order_by!]" ], "where": [ - 2991 + 2739 ] } ], "player_flashes": [ - 3091, + 2839, { "distinct_on": [ - 3114, + 2862, "[player_flashes_select_column!]" ], "limit": [ @@ -47631,19 +43978,19 @@ export default { 38 ], "order_by": [ - 3112, + 2860, "[player_flashes_order_by!]" ], "where": [ - 3102 + 2850 ] } ], "player_flashes_aggregate": [ - 3092, + 2840, { "distinct_on": [ - 3114, + 2862, "[player_flashes_select_column!]" ], "limit": [ @@ -47653,19 +44000,19 @@ export default { 38 ], "order_by": [ - 3112, + 2860, "[player_flashes_order_by!]" ], "where": [ - 3102 + 2850 ] } ], "player_kills": [ - 3136, + 2884, { "distinct_on": [ - 3200, + 2948, "[player_kills_select_column!]" ], "limit": [ @@ -47675,19 +44022,19 @@ export default { 38 ], "order_by": [ - 3198, + 2946, "[player_kills_order_by!]" ], "where": [ - 3147 + 2895 ] } ], "player_kills_aggregate": [ - 3137, + 2885, { "distinct_on": [ - 3200, + 2948, "[player_kills_select_column!]" ], "limit": [ @@ -47697,19 +44044,19 @@ export default { 38 ], "order_by": [ - 3198, + 2946, "[player_kills_order_by!]" ], "where": [ - 3147 + 2895 ] } ], "player_objectives": [ - 3337, + 3085, { "distinct_on": [ - 3358, + 3106, "[player_objectives_select_column!]" ], "limit": [ @@ -47719,19 +44066,19 @@ export default { 38 ], "order_by": [ - 3356, + 3104, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3094 ] } ], "player_objectives_aggregate": [ - 3338, + 3086, { "distinct_on": [ - 3358, + 3106, "[player_objectives_select_column!]" ], "limit": [ @@ -47741,19 +44088,19 @@ export default { 38 ], "order_by": [ - 3356, + 3104, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3094 ] } ], "player_unused_utilities": [ - 3624, + 3372, { "distinct_on": [ - 3645, + 3393, "[player_unused_utility_select_column!]" ], "limit": [ @@ -47763,19 +44110,19 @@ export default { 38 ], "order_by": [ - 3643, + 3391, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3381 ] } ], "player_unused_utilities_aggregate": [ - 3625, + 3373, { "distinct_on": [ - 3645, + 3393, "[player_unused_utility_select_column!]" ], "limit": [ @@ -47785,19 +44132,19 @@ export default { 38 ], "order_by": [ - 3643, + 3391, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3381 ] } ], "player_utility": [ - 3665, + 3413, { "distinct_on": [ - 3686, + 3434, "[player_utility_select_column!]" ], "limit": [ @@ -47807,19 +44154,19 @@ export default { 38 ], "order_by": [ - 3684, + 3432, "[player_utility_order_by!]" ], "where": [ - 3674 + 3422 ] } ], "player_utility_aggregate": [ - 3666, + 3414, { "distinct_on": [ - 3686, + 3434, "[player_utility_select_column!]" ], "limit": [ @@ -47829,11 +44176,11 @@ export default { 38 ], "order_by": [ - 3684, + 3432, "[player_utility_order_by!]" ], "where": [ - 3674 + 3422 ] } ], @@ -47841,13 +44188,13 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4762 + 4621 ], "region_veto_picks": [ - 2504, + 2252, { "distinct_on": [ - 2522, + 2270, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -47857,19 +44204,19 @@ export default { 38 ], "order_by": [ - 2520, + 2268, "[match_region_veto_picks_order_by!]" ], "where": [ - 2511 + 2259 ] } ], "region_veto_picks_aggregate": [ - 2505, + 2253, { "distinct_on": [ - 2522, + 2270, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -47879,11 +44226,11 @@ export default { 38 ], "order_by": [ - 2520, + 2268, "[match_region_veto_picks_order_by!]" ], "where": [ - 2511 + 2259 ] } ], @@ -47891,16 +44238,16 @@ export default { 3 ], "scheduled_at": [ - 4324 + 4076 ], "server": [ - 3853 + 3601 ], "server_error": [ 78 ], "server_id": [ - 4762 + 4621 ], "server_plugin_runtime": [ 78 @@ -47915,16 +44262,16 @@ export default { 78 ], "started_at": [ - 4324 + 4076 ], "status": [ - 839 + 826 ], "streams": [ - 2528, + 2276, { "distinct_on": [ - 2556, + 2304, "[match_streams_select_column!]" ], "limit": [ @@ -47934,19 +44281,19 @@ export default { 38 ], "order_by": [ - 2553, + 2301, "[match_streams_order_by!]" ], "where": [ - 2540 + 2288 ] } ], "streams_aggregate": [ - 2529, + 2277, { "distinct_on": [ - 2556, + 2304, "[match_streams_select_column!]" ], "limit": [ @@ -47956,19 +44303,19 @@ export default { 38 ], "order_by": [ - 2553, + 2301, "[match_streams_order_by!]" ], "where": [ - 2540 + 2288 ] } ], "teams": [ - 4281, + 4029, { "distinct_on": [ - 4303, + 4053, "[teams_select_column!]" ], "limit": [ @@ -47978,19 +44325,19 @@ export default { 38 ], "order_by": [ - 4301, + 4051, "[teams_order_by!]" ], "where": [ - 4290 + 4040 ] } ], "tournament_brackets": [ - 4326, + 4078, { "distinct_on": [ - 4350, + 4102, "[tournament_brackets_select_column!]" ], "limit": [ @@ -48000,19 +44347,19 @@ export default { 38 ], "order_by": [ - 4348, + 4100, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4089 ] } ], "tournament_brackets_aggregate": [ - 4327, + 4079, { "distinct_on": [ - 4350, + 4102, "[tournament_brackets_select_column!]" ], "limit": [ @@ -48022,11 +44369,11 @@ export default { 38 ], "order_by": [ - 4348, + 4100, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4089 ] } ], @@ -48034,10 +44381,10 @@ export default { 78 ], "winner": [ - 2276 + 2024 ], "winning_lineup_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -48045,10 +44392,10 @@ export default { }, "matches_aggregate": { "aggregate": [ - 2600 + 2348 ], "nodes": [ - 2596 + 2344 ], "__typename": [ 78 @@ -48056,7 +44403,7 @@ export default { }, "matches_aggregate_bool_exp": { "count": [ - 2599 + 2347 ], "__typename": [ 78 @@ -48064,13 +44411,13 @@ export default { }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2618 + 2366 ], "distinct": [ 3 ], "filter": [ - 2605 + 2353 ], "predicate": [ 39 @@ -48081,13 +44428,13 @@ export default { }, "matches_aggregate_fields": { "avg": [ - 2603 + 2351 ], "count": [ 38, { "columns": [ - 2618, + 2366, "[matches_select_column!]" ], "distinct": [ @@ -48096,31 +44443,31 @@ export default { } ], "max": [ - 2609 + 2357 ], "min": [ - 2611 + 2359 ], "stddev": [ - 2620 + 2368 ], "stddev_pop": [ - 2622 + 2370 ], "stddev_samp": [ - 2624 + 2372 ], "sum": [ - 2628 + 2376 ], "var_pop": [ - 2632 + 2380 ], "var_samp": [ - 2634 + 2382 ], "variance": [ - 2636 + 2384 ], "__typename": [ 78 @@ -48128,37 +44475,37 @@ export default { }, "matches_aggregate_order_by": { "avg": [ - 2604 + 2352 ], "count": [ - 2781 + 2529 ], "max": [ - 2610 + 2358 ], "min": [ - 2612 + 2360 ], "stddev": [ - 2621 + 2369 ], "stddev_pop": [ - 2623 + 2371 ], "stddev_samp": [ - 2625 + 2373 ], "sum": [ - 2629 + 2377 ], "var_pop": [ - 2633 + 2381 ], "var_samp": [ - 2635 + 2383 ], "variance": [ - 2637 + 2385 ], "__typename": [ 78 @@ -48166,10 +44513,10 @@ export default { }, "matches_arr_rel_insert_input": { "data": [ - 2608 + 2356 ], "on_conflict": [ - 2615 + 2363 ], "__typename": [ 78 @@ -48191,7 +44538,7 @@ export default { }, "matches_avg_order_by": { "organizer_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -48199,13 +44546,13 @@ export default { }, "matches_bool_exp": { "_and": [ - 2605 + 2353 ], "_not": [ - 2605 + 2353 ], "_or": [ - 2605 + 2353 ], "can_assign_server": [ 4 @@ -48232,13 +44579,13 @@ export default { 4 ], "cancels_at": [ - 4325 + 4077 ], "clutches": [ - 4951 + 4759 ], "clutches_aggregate": [ - 4944 + 4752 ], "connection_link": [ 80 @@ -48247,46 +44594,46 @@ export default { 80 ], "created_at": [ - 4325 + 4077 ], "current_match_map_id": [ - 4764 + 4623 ], "demos": [ - 2330 + 2078 ], "demos_aggregate": [ - 2320 + 2068 ], "draft_games": [ - 365 + 392 ], "draft_games_aggregate": [ - 356 + 383 ], "e_match_status": [ - 837 + 824 ], "e_region": [ - 3830 + 3578 ], "effective_at": [ - 4325 + 4077 ], "elo_changes": [ - 5158 + 4966 ], "elo_changes_aggregate": [ - 5141 + 4949 ], "ended_at": [ - 4325 + 4077 ], "external_id": [ 80 ], "id": [ - 4764 + 4623 ], "invite_code": [ 80 @@ -48319,40 +44666,40 @@ export default { 80 ], "lineup_1": [ - 2285 + 2033 ], "lineup_1_id": [ - 4764 + 4623 ], "lineup_2": [ - 2285 + 2033 ], "lineup_2_id": [ - 4764 + 4623 ], "lineup_counts": [ - 1651 + 1399 ], "map_veto_picking_lineup_id": [ - 4764 + 4623 ], "map_veto_picks": [ - 2417 + 2165 ], "map_veto_picks_aggregate": [ - 2412 + 2160 ], "map_veto_type": [ 80 ], "match_maps": [ - 2443 + 2191 ], "match_maps_aggregate": [ - 2436 + 2184 ], "match_options_id": [ - 4764 + 4623 ], "max_players_per_lineup": [ 39 @@ -48361,16 +44708,16 @@ export default { 39 ], "opening_duels": [ - 5079 + 4887 ], "opening_duels_aggregate": [ - 5072 + 4880 ], "options": [ - 2480 + 2228 ], "organizer": [ - 3743 + 3491 ], "organizer_steam_id": [ 182 @@ -48379,73 +44726,73 @@ export default { 80 ], "player_assists": [ - 2930 + 2678 ], "player_assists_aggregate": [ - 2921 + 2669 ], "player_damages": [ - 2991 + 2739 ], "player_damages_aggregate": [ - 2984 + 2732 ], "player_flashes": [ - 3102 + 2850 ], "player_flashes_aggregate": [ - 3093 + 2841 ], "player_kills": [ - 3147 + 2895 ], "player_kills_aggregate": [ - 3138 + 2886 ], "player_objectives": [ - 3346 + 3094 ], "player_objectives_aggregate": [ - 3339 + 3087 ], "player_unused_utilities": [ - 3633 + 3381 ], "player_unused_utilities_aggregate": [ - 3626 + 3374 ], "player_utility": [ - 3674 + 3422 ], "player_utility_aggregate": [ - 3667 + 3415 ], "region": [ 80 ], "region_veto_picking_lineup_id": [ - 4764 + 4623 ], "region_veto_picks": [ - 2511 + 2259 ], "region_veto_picks_aggregate": [ - 2506 + 2254 ], "requested_organizer": [ 4 ], "scheduled_at": [ - 4325 + 4077 ], "server": [ - 3864 + 3612 ], "server_error": [ 80 ], "server_id": [ - 4764 + 4623 ], "server_plugin_runtime": [ 80 @@ -48460,34 +44807,34 @@ export default { 80 ], "started_at": [ - 4325 + 4077 ], "status": [ - 840 + 827 ], "streams": [ - 2540 + 2288 ], "streams_aggregate": [ - 2530 + 2278 ], "teams": [ - 4290 + 4040 ], "tournament_brackets": [ - 4337 + 4089 ], "tournament_brackets_aggregate": [ - 4328 + 4080 ], "tv_connection_string": [ 80 ], "winner": [ - 2285 + 2033 ], "winning_lineup_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -48504,70 +44851,70 @@ export default { }, "matches_insert_input": { "cancels_at": [ - 4324 + 4076 ], "clutches": [ - 4948 + 4756 ], "created_at": [ - 4324 + 4076 ], "demos": [ - 2327 + 2075 ], "draft_games": [ - 362 + 389 ], "e_match_status": [ - 845 + 832 ], "e_region": [ - 3836 + 3584 ], "elo_changes": [ - 5155 + 4963 ], "ended_at": [ - 4324 + 4076 ], "external_id": [ 78 ], "id": [ - 4762 + 4621 ], "label": [ 78 ], "lineup_1": [ - 2294 + 2042 ], "lineup_1_id": [ - 4762 + 4621 ], "lineup_2": [ - 2294 + 2042 ], "lineup_2_id": [ - 4762 + 4621 ], "map_veto_picks": [ - 2416 + 2164 ], "match_maps": [ - 2440 + 2188 ], "match_options_id": [ - 4762 + 4621 ], "opening_duels": [ - 5076 + 4884 ], "options": [ - 2487 + 2235 ], "organizer": [ - 3750 + 3498 ], "organizer_steam_id": [ 180 @@ -48576,64 +44923,64 @@ export default { 78 ], "player_assists": [ - 2927 + 2675 ], "player_damages": [ - 2988 + 2736 ], "player_flashes": [ - 3099 + 2847 ], "player_kills": [ - 3144 + 2892 ], "player_objectives": [ - 3343 + 3091 ], "player_unused_utilities": [ - 3630 + 3378 ], "player_utility": [ - 3671 + 3419 ], "region": [ 78 ], "region_veto_picks": [ - 2510 + 2258 ], "scheduled_at": [ - 4324 + 4076 ], "server": [ - 3873 + 3621 ], "server_error": [ 78 ], "server_id": [ - 4762 + 4621 ], "source": [ 78 ], "started_at": [ - 4324 + 4076 ], "status": [ - 839 + 826 ], "streams": [ - 2537 + 2285 ], "tournament_brackets": [ - 4334 + 4086 ], "winner": [ - 2294 + 2042 ], "winning_lineup_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -48641,7 +44988,7 @@ export default { }, "matches_max_fields": { "cancels_at": [ - 4324 + 4076 ], "connection_link": [ 78 @@ -48650,22 +44997,22 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "current_match_map_id": [ - 4762 + 4621 ], "effective_at": [ - 4324 + 4076 ], "ended_at": [ - 4324 + 4076 ], "external_id": [ 78 ], "id": [ - 4762 + 4621 ], "invite_code": [ 78 @@ -48674,19 +45021,19 @@ export default { 78 ], "lineup_1_id": [ - 4762 + 4621 ], "lineup_2_id": [ - 4762 + 4621 ], "map_veto_picking_lineup_id": [ - 4762 + 4621 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4762 + 4621 ], "max_players_per_lineup": [ 38 @@ -48704,16 +45051,16 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4762 + 4621 ], "scheduled_at": [ - 4324 + 4076 ], "server_error": [ 78 ], "server_id": [ - 4762 + 4621 ], "server_plugin_runtime": [ 78 @@ -48728,13 +45075,13 @@ export default { 78 ], "started_at": [ - 4324 + 4076 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -48742,61 +45089,61 @@ export default { }, "matches_max_order_by": { "cancels_at": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "effective_at": [ - 2781 + 2529 ], "ended_at": [ - 2781 + 2529 ], "external_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "lineup_1_id": [ - 2781 + 2529 ], "lineup_2_id": [ - 2781 + 2529 ], "match_options_id": [ - 2781 + 2529 ], "organizer_steam_id": [ - 2781 + 2529 ], "password": [ - 2781 + 2529 ], "region": [ - 2781 + 2529 ], "scheduled_at": [ - 2781 + 2529 ], "server_error": [ - 2781 + 2529 ], "server_id": [ - 2781 + 2529 ], "source": [ - 2781 + 2529 ], "started_at": [ - 2781 + 2529 ], "winning_lineup_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -48804,7 +45151,7 @@ export default { }, "matches_min_fields": { "cancels_at": [ - 4324 + 4076 ], "connection_link": [ 78 @@ -48813,22 +45160,22 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "current_match_map_id": [ - 4762 + 4621 ], "effective_at": [ - 4324 + 4076 ], "ended_at": [ - 4324 + 4076 ], "external_id": [ 78 ], "id": [ - 4762 + 4621 ], "invite_code": [ 78 @@ -48837,19 +45184,19 @@ export default { 78 ], "lineup_1_id": [ - 4762 + 4621 ], "lineup_2_id": [ - 4762 + 4621 ], "map_veto_picking_lineup_id": [ - 4762 + 4621 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4762 + 4621 ], "max_players_per_lineup": [ 38 @@ -48867,16 +45214,16 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4762 + 4621 ], "scheduled_at": [ - 4324 + 4076 ], "server_error": [ 78 ], "server_id": [ - 4762 + 4621 ], "server_plugin_runtime": [ 78 @@ -48891,13 +45238,13 @@ export default { 78 ], "started_at": [ - 4324 + 4076 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -48905,61 +45252,61 @@ export default { }, "matches_min_order_by": { "cancels_at": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "effective_at": [ - 2781 + 2529 ], "ended_at": [ - 2781 + 2529 ], "external_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "lineup_1_id": [ - 2781 + 2529 ], "lineup_2_id": [ - 2781 + 2529 ], "match_options_id": [ - 2781 + 2529 ], "organizer_steam_id": [ - 2781 + 2529 ], "password": [ - 2781 + 2529 ], "region": [ - 2781 + 2529 ], "scheduled_at": [ - 2781 + 2529 ], "server_error": [ - 2781 + 2529 ], "server_id": [ - 2781 + 2529 ], "source": [ - 2781 + 2529 ], "started_at": [ - 2781 + 2529 ], "winning_lineup_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -48970,7 +45317,7 @@ export default { 38 ], "returning": [ - 2596 + 2344 ], "__typename": [ 78 @@ -48978,10 +45325,10 @@ export default { }, "matches_obj_rel_insert_input": { "data": [ - 2608 + 2356 ], "on_conflict": [ - 2615 + 2363 ], "__typename": [ 78 @@ -48989,13 +45336,13 @@ export default { }, "matches_on_conflict": { "constraint": [ - 2606 + 2354 ], "update_columns": [ - 2630 + 2378 ], "where": [ - 2605 + 2353 ], "__typename": [ 78 @@ -49003,235 +45350,235 @@ export default { }, "matches_order_by": { "can_assign_server": [ - 2781 + 2529 ], "can_cancel": [ - 2781 + 2529 ], "can_check_in": [ - 2781 + 2529 ], "can_reassign_winner": [ - 2781 + 2529 ], "can_schedule": [ - 2781 + 2529 ], "can_start": [ - 2781 + 2529 ], "can_stream_live": [ - 2781 + 2529 ], "can_stream_tv": [ - 2781 + 2529 ], "cancels_at": [ - 2781 + 2529 ], "clutches_aggregate": [ - 4947 + 4755 ], "connection_link": [ - 2781 + 2529 ], "connection_string": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "current_match_map_id": [ - 2781 + 2529 ], "demos_aggregate": [ - 2325 + 2073 ], "draft_games_aggregate": [ - 361 + 388 ], "e_match_status": [ - 847 + 834 ], "e_region": [ - 3838 + 3586 ], "effective_at": [ - 2781 + 2529 ], "elo_changes_aggregate": [ - 5154 + 4962 ], "ended_at": [ - 2781 + 2529 ], "external_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "invite_code": [ - 2781 + 2529 ], "is_captain": [ - 2781 + 2529 ], "is_coach": [ - 2781 + 2529 ], "is_friend_in_match_lineup": [ - 2781 + 2529 ], "is_in_lineup": [ - 2781 + 2529 ], "is_match_server_available": [ - 2781 + 2529 ], "is_organizer": [ - 2781 + 2529 ], "is_server_online": [ - 2781 + 2529 ], "is_tournament_match": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "lineup_1": [ - 2296 + 2044 ], "lineup_1_id": [ - 2781 + 2529 ], "lineup_2": [ - 2296 + 2044 ], "lineup_2_id": [ - 2781 + 2529 ], "lineup_counts": [ - 2781 + 2529 ], "map_veto_picking_lineup_id": [ - 2781 + 2529 ], "map_veto_picks_aggregate": [ - 2415 + 2163 ], "map_veto_type": [ - 2781 + 2529 ], "match_maps_aggregate": [ - 2439 + 2187 ], "match_options_id": [ - 2781 + 2529 ], "max_players_per_lineup": [ - 2781 + 2529 ], "min_players_per_lineup": [ - 2781 + 2529 ], "opening_duels_aggregate": [ - 5075 + 4883 ], "options": [ - 2489 + 2237 ], "organizer": [ - 3752 + 3500 ], "organizer_steam_id": [ - 2781 + 2529 ], "password": [ - 2781 + 2529 ], "player_assists_aggregate": [ - 2926 + 2674 ], "player_damages_aggregate": [ - 2987 + 2735 ], "player_flashes_aggregate": [ - 3098 + 2846 ], "player_kills_aggregate": [ - 3143 + 2891 ], "player_objectives_aggregate": [ - 3342 + 3090 ], "player_unused_utilities_aggregate": [ - 3629 + 3377 ], "player_utility_aggregate": [ - 3670 + 3418 ], "region": [ - 2781 + 2529 ], "region_veto_picking_lineup_id": [ - 2781 + 2529 ], "region_veto_picks_aggregate": [ - 2509 + 2257 ], "requested_organizer": [ - 2781 + 2529 ], "scheduled_at": [ - 2781 + 2529 ], "server": [ - 3875 + 3623 ], "server_error": [ - 2781 + 2529 ], "server_id": [ - 2781 + 2529 ], "server_plugin_runtime": [ - 2781 + 2529 ], "server_region": [ - 2781 + 2529 ], "server_type": [ - 2781 + 2529 ], "source": [ - 2781 + 2529 ], "started_at": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "streams_aggregate": [ - 2535 + 2283 ], "teams_aggregate": [ - 4286 + 4036 ], "tournament_brackets_aggregate": [ - 4333 + 4085 ], "tv_connection_string": [ - 2781 + 2529 ], "winner": [ - 2296 + 2044 ], "winning_lineup_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -49239,7 +45586,7 @@ export default { }, "matches_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -49248,31 +45595,31 @@ export default { "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 4324 + 4076 ], "created_at": [ - 4324 + 4076 ], "ended_at": [ - 4324 + 4076 ], "external_id": [ 78 ], "id": [ - 4762 + 4621 ], "label": [ 78 ], "lineup_1_id": [ - 4762 + 4621 ], "lineup_2_id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "organizer_steam_id": [ 180 @@ -49284,25 +45631,25 @@ export default { 78 ], "scheduled_at": [ - 4324 + 4076 ], "server_error": [ 78 ], "server_id": [ - 4762 + 4621 ], "source": [ 78 ], "started_at": [ - 4324 + 4076 ], "status": [ - 839 + 826 ], "winning_lineup_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -49324,7 +45671,7 @@ export default { }, "matches_stddev_order_by": { "organizer_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -49346,7 +45693,7 @@ export default { }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -49368,7 +45715,7 @@ export default { }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -49376,7 +45723,7 @@ export default { }, "matches_stream_cursor_input": { "initial_value": [ - 2627 + 2375 ], "ordering": [ 236 @@ -49387,34 +45734,34 @@ export default { }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4324 + 4076 ], "created_at": [ - 4324 + 4076 ], "effective_at": [ - 4324 + 4076 ], "ended_at": [ - 4324 + 4076 ], "external_id": [ 78 ], "id": [ - 4762 + 4621 ], "label": [ 78 ], "lineup_1_id": [ - 4762 + 4621 ], "lineup_2_id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "organizer_steam_id": [ 180 @@ -49426,25 +45773,25 @@ export default { 78 ], "scheduled_at": [ - 4324 + 4076 ], "server_error": [ 78 ], "server_id": [ - 4762 + 4621 ], "source": [ 78 ], "started_at": [ - 4324 + 4076 ], "status": [ - 839 + 826 ], "winning_lineup_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -49466,7 +45813,7 @@ export default { }, "matches_sum_order_by": { "organizer_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -49475,13 +45822,13 @@ export default { "matches_update_column": {}, "matches_updates": { "_inc": [ - 2607 + 2355 ], "_set": [ - 2619 + 2367 ], "where": [ - 2605 + 2353 ], "__typename": [ 78 @@ -49503,7 +45850,7 @@ export default { }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -49525,7 +45872,7 @@ export default { }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -49547,7 +45894,7 @@ export default { }, "matches_variance_order_by": { "organizer_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -49566,10 +45913,10 @@ export default { }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2640 + 2388 ], "nodes": [ - 2638 + 2386 ], "__typename": [ 78 @@ -49580,7 +45927,7 @@ export default { 38, { "columns": [ - 2650, + 2398, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -49589,10 +45936,10 @@ export default { } ], "max": [ - 2644 + 2392 ], "min": [ - 2645 + 2393 ], "__typename": [ 78 @@ -49600,13 +45947,13 @@ export default { }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2641 + 2389 ], "_not": [ - 2641 + 2389 ], "_or": [ - 2641 + 2389 ], "hash": [ 80 @@ -49657,7 +46004,7 @@ export default { 38 ], "returning": [ - 2638 + 2386 ], "__typename": [ 78 @@ -49665,13 +46012,13 @@ export default { }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2642 + 2390 ], "update_columns": [ - 2654 + 2402 ], "where": [ - 2641 + 2389 ], "__typename": [ 78 @@ -49679,10 +46026,10 @@ export default { }, "migration_hashes_hashes_order_by": { "hash": [ - 2781 + 2529 ], "name": [ - 2781 + 2529 ], "__typename": [ 78 @@ -49710,7 +46057,7 @@ export default { }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2653 + 2401 ], "ordering": [ 236 @@ -49733,10 +46080,10 @@ export default { "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2651 + 2399 ], "where": [ - 2641 + 2389 ], "__typename": [ 78 @@ -49750,7 +46097,7 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "custom_avatar_url": [ 78 @@ -49762,7 +46109,7 @@ export default { 78 ], "elo": [ - 1652, + 1400, { "path": [ 78 @@ -49782,7 +46129,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4076 ], "faceit_url": [ 78 @@ -49800,7 +46147,7 @@ export default { 78 ], "last_presence_state": [ - 1652, + 1400, { "path": [ 78 @@ -49808,10 +46155,10 @@ export default { } ], "last_read_news_at": [ - 4324 + 4076 ], "last_sign_in_at": [ - 4324 + 4076 ], "name": [ 78 @@ -49820,16 +46167,16 @@ export default { 3 ], "player": [ - 3739 + 3487 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4324 + 4076 ], "presence_updated_at": [ - 4324 + 4076 ], "profile_url": [ 78 @@ -49847,7 +46194,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -49864,10 +46211,10 @@ export default { }, "my_friends_aggregate": { "aggregate": [ - 2662 + 2410 ], "nodes": [ - 2656 + 2404 ], "__typename": [ 78 @@ -49875,13 +46222,13 @@ export default { }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2659 + 2407 ], "bool_or": [ - 2660 + 2408 ], "count": [ - 2661 + 2409 ], "__typename": [ 78 @@ -49889,13 +46236,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2682 + 2430 ], "distinct": [ 3 ], "filter": [ - 2668 + 2416 ], "predicate": [ 4 @@ -49906,13 +46253,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2683 + 2431 ], "distinct": [ 3 ], "filter": [ - 2668 + 2416 ], "predicate": [ 4 @@ -49923,13 +46270,13 @@ export default { }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2681 + 2429 ], "distinct": [ 3 ], "filter": [ - 2668 + 2416 ], "predicate": [ 39 @@ -49940,13 +46287,13 @@ export default { }, "my_friends_aggregate_fields": { "avg": [ - 2666 + 2414 ], "count": [ 38, { "columns": [ - 2681, + 2429, "[my_friends_select_column!]" ], "distinct": [ @@ -49955,31 +46302,31 @@ export default { } ], "max": [ - 2674 + 2422 ], "min": [ - 2676 + 2424 ], "stddev": [ - 2685 + 2433 ], "stddev_pop": [ - 2687 + 2435 ], "stddev_samp": [ - 2689 + 2437 ], "sum": [ - 2693 + 2441 ], "var_pop": [ - 2696 + 2444 ], "var_samp": [ - 2698 + 2446 ], "variance": [ - 2700 + 2448 ], "__typename": [ 78 @@ -49987,37 +46334,37 @@ export default { }, "my_friends_aggregate_order_by": { "avg": [ - 2667 + 2415 ], "count": [ - 2781 + 2529 ], "max": [ - 2675 + 2423 ], "min": [ - 2677 + 2425 ], "stddev": [ - 2686 + 2434 ], "stddev_pop": [ - 2688 + 2436 ], "stddev_samp": [ - 2690 + 2438 ], "sum": [ - 2694 + 2442 ], "var_pop": [ - 2697 + 2445 ], "var_samp": [ - 2699 + 2447 ], "variance": [ - 2701 + 2449 ], "__typename": [ 78 @@ -50025,10 +46372,10 @@ export default { }, "my_friends_append_input": { "elo": [ - 1652 + 1400 ], "last_presence_state": [ - 1652 + 1400 ], "__typename": [ 78 @@ -50036,7 +46383,7 @@ export default { }, "my_friends_arr_rel_insert_input": { "data": [ - 2673 + 2421 ], "__typename": [ 78 @@ -50076,31 +46423,31 @@ export default { }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 2781 + 2529 ], "faceit_elo": [ - 2781 + 2529 ], "faceit_skill_level": [ - 2781 + 2529 ], "friend_steam_id": [ - 2781 + 2529 ], "game_ban_count": [ - 2781 + 2529 ], "invited_by_steam_id": [ - 2781 + 2529 ], "premier_rank": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "vac_ban_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -50108,13 +46455,13 @@ export default { }, "my_friends_bool_exp": { "_and": [ - 2668 + 2416 ], "_not": [ - 2668 + 2416 ], "_or": [ - 2668 + 2416 ], "avatar_url": [ 80 @@ -50123,7 +46470,7 @@ export default { 80 ], "created_at": [ - 4325 + 4077 ], "custom_avatar_url": [ 80 @@ -50135,7 +46482,7 @@ export default { 80 ], "elo": [ - 1654 + 1402 ], "faceit_elo": [ 39 @@ -50150,7 +46497,7 @@ export default { 39 ], "faceit_updated_at": [ - 4325 + 4077 ], "faceit_url": [ 80 @@ -50168,13 +46515,13 @@ export default { 80 ], "last_presence_state": [ - 1654 + 1402 ], "last_read_news_at": [ - 4325 + 4077 ], "last_sign_in_at": [ - 4325 + 4077 ], "name": [ 80 @@ -50183,16 +46530,16 @@ export default { 4 ], "player": [ - 3743 + 3491 ], "premier_rank": [ 39 ], "premier_rank_updated_at": [ - 4325 + 4077 ], "presence_updated_at": [ - 4325 + 4077 ], "profile_url": [ 80 @@ -50210,7 +46557,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4325 + 4077 ], "steam_id": [ 182 @@ -50298,7 +46645,7 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "custom_avatar_url": [ 78 @@ -50310,7 +46657,7 @@ export default { 78 ], "elo": [ - 1652 + 1400 ], "faceit_elo": [ 38 @@ -50325,7 +46672,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4076 ], "faceit_url": [ 78 @@ -50343,13 +46690,13 @@ export default { 78 ], "last_presence_state": [ - 1652 + 1400 ], "last_read_news_at": [ - 4324 + 4076 ], "last_sign_in_at": [ - 4324 + 4076 ], "name": [ 78 @@ -50358,16 +46705,16 @@ export default { 3 ], "player": [ - 3750 + 3498 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4324 + 4076 ], "presence_updated_at": [ - 4324 + 4076 ], "profile_url": [ 78 @@ -50385,7 +46732,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -50408,7 +46755,7 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "custom_avatar_url": [ 78 @@ -50432,7 +46779,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4076 ], "faceit_url": [ 78 @@ -50450,10 +46797,10 @@ export default { 78 ], "last_read_news_at": [ - 4324 + 4076 ], "last_sign_in_at": [ - 4324 + 4076 ], "name": [ 78 @@ -50462,10 +46809,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4076 ], "presence_updated_at": [ - 4324 + 4076 ], "profile_url": [ 78 @@ -50480,7 +46827,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -50494,91 +46841,91 @@ export default { }, "my_friends_max_order_by": { "avatar_url": [ - 2781 + 2529 ], "country": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "custom_avatar_url": [ - 2781 + 2529 ], "days_since_last_ban": [ - 2781 + 2529 ], "discord_id": [ - 2781 + 2529 ], "faceit_elo": [ - 2781 + 2529 ], "faceit_nickname": [ - 2781 + 2529 ], "faceit_player_id": [ - 2781 + 2529 ], "faceit_skill_level": [ - 2781 + 2529 ], "faceit_updated_at": [ - 2781 + 2529 ], "faceit_url": [ - 2781 + 2529 ], "friend_steam_id": [ - 2781 + 2529 ], "game_ban_count": [ - 2781 + 2529 ], "invited_by_steam_id": [ - 2781 + 2529 ], "language": [ - 2781 + 2529 ], "last_read_news_at": [ - 2781 + 2529 ], "last_sign_in_at": [ - 2781 + 2529 ], "name": [ - 2781 + 2529 ], "premier_rank": [ - 2781 + 2529 ], "premier_rank_updated_at": [ - 2781 + 2529 ], "presence_updated_at": [ - 2781 + 2529 ], "profile_url": [ - 2781 + 2529 ], "role": [ - 2781 + 2529 ], "roster_image_url": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "steam_bans_checked_at": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "vac_ban_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -50592,7 +46939,7 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "custom_avatar_url": [ 78 @@ -50616,7 +46963,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4076 ], "faceit_url": [ 78 @@ -50634,10 +46981,10 @@ export default { 78 ], "last_read_news_at": [ - 4324 + 4076 ], "last_sign_in_at": [ - 4324 + 4076 ], "name": [ 78 @@ -50646,10 +46993,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4076 ], "presence_updated_at": [ - 4324 + 4076 ], "profile_url": [ 78 @@ -50664,7 +47011,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -50678,91 +47025,91 @@ export default { }, "my_friends_min_order_by": { "avatar_url": [ - 2781 + 2529 ], "country": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "custom_avatar_url": [ - 2781 + 2529 ], "days_since_last_ban": [ - 2781 + 2529 ], "discord_id": [ - 2781 + 2529 ], "faceit_elo": [ - 2781 + 2529 ], "faceit_nickname": [ - 2781 + 2529 ], "faceit_player_id": [ - 2781 + 2529 ], "faceit_skill_level": [ - 2781 + 2529 ], "faceit_updated_at": [ - 2781 + 2529 ], "faceit_url": [ - 2781 + 2529 ], "friend_steam_id": [ - 2781 + 2529 ], "game_ban_count": [ - 2781 + 2529 ], "invited_by_steam_id": [ - 2781 + 2529 ], "language": [ - 2781 + 2529 ], "last_read_news_at": [ - 2781 + 2529 ], "last_sign_in_at": [ - 2781 + 2529 ], "name": [ - 2781 + 2529 ], "premier_rank": [ - 2781 + 2529 ], "premier_rank_updated_at": [ - 2781 + 2529 ], "presence_updated_at": [ - 2781 + 2529 ], "profile_url": [ - 2781 + 2529 ], "role": [ - 2781 + 2529 ], "roster_image_url": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "steam_bans_checked_at": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "vac_ban_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -50773,7 +47120,7 @@ export default { 38 ], "returning": [ - 2656 + 2404 ], "__typename": [ 78 @@ -50781,109 +47128,109 @@ export default { }, "my_friends_order_by": { "avatar_url": [ - 2781 + 2529 ], "country": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "custom_avatar_url": [ - 2781 + 2529 ], "days_since_last_ban": [ - 2781 + 2529 ], "discord_id": [ - 2781 + 2529 ], "elo": [ - 2781 + 2529 ], "faceit_elo": [ - 2781 + 2529 ], "faceit_nickname": [ - 2781 + 2529 ], "faceit_player_id": [ - 2781 + 2529 ], "faceit_skill_level": [ - 2781 + 2529 ], "faceit_updated_at": [ - 2781 + 2529 ], "faceit_url": [ - 2781 + 2529 ], "friend_steam_id": [ - 2781 + 2529 ], "game_ban_count": [ - 2781 + 2529 ], "invited_by_steam_id": [ - 2781 + 2529 ], "language": [ - 2781 + 2529 ], "last_presence_state": [ - 2781 + 2529 ], "last_read_news_at": [ - 2781 + 2529 ], "last_sign_in_at": [ - 2781 + 2529 ], "name": [ - 2781 + 2529 ], "name_registered": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "premier_rank": [ - 2781 + 2529 ], "premier_rank_updated_at": [ - 2781 + 2529 ], "presence_updated_at": [ - 2781 + 2529 ], "profile_url": [ - 2781 + 2529 ], "role": [ - 2781 + 2529 ], "roster_image_url": [ - 2781 + 2529 ], "show_match_ready_modal": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "steam_bans_checked_at": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "vac_ban_count": [ - 2781 + 2529 ], "vac_banned": [ - 2781 + 2529 ], "__typename": [ 78 @@ -50891,10 +47238,10 @@ export default { }, "my_friends_prepend_input": { "elo": [ - 1652 + 1400 ], "last_presence_state": [ - 1652 + 1400 ], "__typename": [ 78 @@ -50911,7 +47258,7 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "custom_avatar_url": [ 78 @@ -50923,7 +47270,7 @@ export default { 78 ], "elo": [ - 1652 + 1400 ], "faceit_elo": [ 38 @@ -50938,7 +47285,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4076 ], "faceit_url": [ 78 @@ -50956,13 +47303,13 @@ export default { 78 ], "last_presence_state": [ - 1652 + 1400 ], "last_read_news_at": [ - 4324 + 4076 ], "last_sign_in_at": [ - 4324 + 4076 ], "name": [ 78 @@ -50974,10 +47321,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4076 ], "presence_updated_at": [ - 4324 + 4076 ], "profile_url": [ 78 @@ -50995,7 +47342,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -51044,31 +47391,31 @@ export default { }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 2781 + 2529 ], "faceit_elo": [ - 2781 + 2529 ], "faceit_skill_level": [ - 2781 + 2529 ], "friend_steam_id": [ - 2781 + 2529 ], "game_ban_count": [ - 2781 + 2529 ], "invited_by_steam_id": [ - 2781 + 2529 ], "premier_rank": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "vac_ban_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -51108,31 +47455,31 @@ export default { }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 2781 + 2529 ], "faceit_elo": [ - 2781 + 2529 ], "faceit_skill_level": [ - 2781 + 2529 ], "friend_steam_id": [ - 2781 + 2529 ], "game_ban_count": [ - 2781 + 2529 ], "invited_by_steam_id": [ - 2781 + 2529 ], "premier_rank": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "vac_ban_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -51172,31 +47519,31 @@ export default { }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 2781 + 2529 ], "faceit_elo": [ - 2781 + 2529 ], "faceit_skill_level": [ - 2781 + 2529 ], "friend_steam_id": [ - 2781 + 2529 ], "game_ban_count": [ - 2781 + 2529 ], "invited_by_steam_id": [ - 2781 + 2529 ], "premier_rank": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "vac_ban_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -51204,7 +47551,7 @@ export default { }, "my_friends_stream_cursor_input": { "initial_value": [ - 2692 + 2440 ], "ordering": [ 236 @@ -51221,7 +47568,7 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "custom_avatar_url": [ 78 @@ -51233,7 +47580,7 @@ export default { 78 ], "elo": [ - 1652 + 1400 ], "faceit_elo": [ 38 @@ -51248,7 +47595,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4076 ], "faceit_url": [ 78 @@ -51266,13 +47613,13 @@ export default { 78 ], "last_presence_state": [ - 1652 + 1400 ], "last_read_news_at": [ - 4324 + 4076 ], "last_sign_in_at": [ - 4324 + 4076 ], "name": [ 78 @@ -51284,10 +47631,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4076 ], "presence_updated_at": [ - 4324 + 4076 ], "profile_url": [ 78 @@ -51305,7 +47652,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -51354,31 +47701,31 @@ export default { }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 2781 + 2529 ], "faceit_elo": [ - 2781 + 2529 ], "faceit_skill_level": [ - 2781 + 2529 ], "friend_steam_id": [ - 2781 + 2529 ], "game_ban_count": [ - 2781 + 2529 ], "invited_by_steam_id": [ - 2781 + 2529 ], "premier_rank": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "vac_ban_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -51386,28 +47733,28 @@ export default { }, "my_friends_updates": { "_append": [ - 2664 + 2412 ], "_delete_at_path": [ - 2669 + 2417 ], "_delete_elem": [ - 2670 + 2418 ], "_delete_key": [ - 2671 + 2419 ], "_inc": [ - 2672 + 2420 ], "_prepend": [ - 2680 + 2428 ], "_set": [ - 2684 + 2432 ], "where": [ - 2668 + 2416 ], "__typename": [ 78 @@ -51447,31 +47794,31 @@ export default { }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 2781 + 2529 ], "faceit_elo": [ - 2781 + 2529 ], "faceit_skill_level": [ - 2781 + 2529 ], "friend_steam_id": [ - 2781 + 2529 ], "game_ban_count": [ - 2781 + 2529 ], "invited_by_steam_id": [ - 2781 + 2529 ], "premier_rank": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "vac_ban_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -51511,31 +47858,31 @@ export default { }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 2781 + 2529 ], "faceit_elo": [ - 2781 + 2529 ], "faceit_skill_level": [ - 2781 + 2529 ], "friend_steam_id": [ - 2781 + 2529 ], "game_ban_count": [ - 2781 + 2529 ], "invited_by_steam_id": [ - 2781 + 2529 ], "premier_rank": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "vac_ban_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -51575,31 +47922,31 @@ export default { }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 2781 + 2529 ], "faceit_elo": [ - 2781 + 2529 ], "faceit_skill_level": [ - 2781 + 2529 ], "friend_steam_id": [ - 2781 + 2529 ], "game_ban_count": [ - 2781 + 2529 ], "invited_by_steam_id": [ - 2781 + 2529 ], "premier_rank": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "vac_ban_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -51607,7 +47954,7 @@ export default { }, "news_articles": { "author": [ - 3739 + 3487 ], "author_steam_id": [ 180 @@ -51619,13 +47966,13 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "published_at": [ - 4324 + 4076 ], "slug": [ 78 @@ -51640,7 +47987,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "view_count": [ 180 @@ -51651,10 +47998,10 @@ export default { }, "news_articles_aggregate": { "aggregate": [ - 2704 + 2452 ], "nodes": [ - 2702 + 2450 ], "__typename": [ 78 @@ -51662,13 +48009,13 @@ export default { }, "news_articles_aggregate_fields": { "avg": [ - 2705 + 2453 ], "count": [ 38, { "columns": [ - 2716, + 2464, "[news_articles_select_column!]" ], "distinct": [ @@ -51677,31 +48024,31 @@ export default { } ], "max": [ - 2710 + 2458 ], "min": [ - 2711 + 2459 ], "stddev": [ - 2718 + 2466 ], "stddev_pop": [ - 2719 + 2467 ], "stddev_samp": [ - 2720 + 2468 ], "sum": [ - 2723 + 2471 ], "var_pop": [ - 2726 + 2474 ], "var_samp": [ - 2727 + 2475 ], "variance": [ - 2728 + 2476 ], "__typename": [ 78 @@ -51720,16 +48067,16 @@ export default { }, "news_articles_bool_exp": { "_and": [ - 2706 + 2454 ], "_not": [ - 2706 + 2454 ], "_or": [ - 2706 + 2454 ], "author": [ - 3743 + 3491 ], "author_steam_id": [ 182 @@ -51741,13 +48088,13 @@ export default { 80 ], "created_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "published_at": [ - 4325 + 4077 ], "slug": [ 80 @@ -51762,7 +48109,7 @@ export default { 80 ], "updated_at": [ - 4325 + 4077 ], "view_count": [ 182 @@ -51785,7 +48132,7 @@ export default { }, "news_articles_insert_input": { "author": [ - 3750 + 3498 ], "author_steam_id": [ 180 @@ -51797,13 +48144,13 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "published_at": [ - 4324 + 4076 ], "slug": [ 78 @@ -51818,7 +48165,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "view_count": [ 180 @@ -51838,13 +48185,13 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "published_at": [ - 4324 + 4076 ], "slug": [ 78 @@ -51859,7 +48206,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "view_count": [ 180 @@ -51879,13 +48226,13 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "published_at": [ - 4324 + 4076 ], "slug": [ 78 @@ -51900,7 +48247,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "view_count": [ 180 @@ -51914,7 +48261,7 @@ export default { 38 ], "returning": [ - 2702 + 2450 ], "__typename": [ 78 @@ -51922,13 +48269,13 @@ export default { }, "news_articles_on_conflict": { "constraint": [ - 2707 + 2455 ], "update_columns": [ - 2724 + 2472 ], "where": [ - 2706 + 2454 ], "__typename": [ 78 @@ -51936,43 +48283,43 @@ export default { }, "news_articles_order_by": { "author": [ - 3752 + 3500 ], "author_steam_id": [ - 2781 + 2529 ], "content_markdown": [ - 2781 + 2529 ], "cover_image_url": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "published_at": [ - 2781 + 2529 ], "slug": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "teaser": [ - 2781 + 2529 ], "title": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "view_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -51980,7 +48327,7 @@ export default { }, "news_articles_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -51998,13 +48345,13 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "published_at": [ - 4324 + 4076 ], "slug": [ 78 @@ -52019,7 +48366,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "view_count": [ 180 @@ -52063,7 +48410,7 @@ export default { }, "news_articles_stream_cursor_input": { "initial_value": [ - 2722 + 2470 ], "ordering": [ 236 @@ -52083,13 +48430,13 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "published_at": [ - 4324 + 4076 ], "slug": [ 78 @@ -52104,7 +48451,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "view_count": [ 180 @@ -52127,13 +48474,13 @@ export default { "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2708 + 2456 ], "_set": [ - 2717 + 2465 ], "where": [ - 2706 + 2454 ], "__typename": [ 78 @@ -52174,7 +48521,7 @@ export default { }, "notifications": { "actions": [ - 1652, + 1400, { "path": [ 78 @@ -52182,19 +48529,19 @@ export default { } ], "created_at": [ - 4324 + 4076 ], "deletable": [ 3 ], "deleted_at": [ - 4324 + 4076 ], "entity_id": [ 78 ], "id": [ - 4762 + 4621 ], "is_read": [ 3 @@ -52203,10 +48550,10 @@ export default { 78 ], "player": [ - 3739 + 3487 ], "role": [ - 921 + 908 ], "steam_id": [ 180 @@ -52215,7 +48562,7 @@ export default { 78 ], "type": [ - 881 + 868 ], "__typename": [ 78 @@ -52223,10 +48570,10 @@ export default { }, "notifications_aggregate": { "aggregate": [ - 2735 + 2483 ], "nodes": [ - 2729 + 2477 ], "__typename": [ 78 @@ -52234,13 +48581,13 @@ export default { }, "notifications_aggregate_bool_exp": { "bool_and": [ - 2732 + 2480 ], "bool_or": [ - 2733 + 2481 ], "count": [ - 2734 + 2482 ], "__typename": [ 78 @@ -52248,13 +48595,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 2758 + 2506 ], "distinct": [ 3 ], "filter": [ - 2741 + 2489 ], "predicate": [ 4 @@ -52265,13 +48612,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 2759 + 2507 ], "distinct": [ 3 ], "filter": [ - 2741 + 2489 ], "predicate": [ 4 @@ -52282,13 +48629,13 @@ export default { }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 2757 + 2505 ], "distinct": [ 3 ], "filter": [ - 2741 + 2489 ], "predicate": [ 39 @@ -52299,13 +48646,13 @@ export default { }, "notifications_aggregate_fields": { "avg": [ - 2739 + 2487 ], "count": [ 38, { "columns": [ - 2757, + 2505, "[notifications_select_column!]" ], "distinct": [ @@ -52314,31 +48661,31 @@ export default { } ], "max": [ - 2748 + 2496 ], "min": [ - 2750 + 2498 ], "stddev": [ - 2761 + 2509 ], "stddev_pop": [ - 2763 + 2511 ], "stddev_samp": [ - 2765 + 2513 ], "sum": [ - 2769 + 2517 ], "var_pop": [ - 2773 + 2521 ], "var_samp": [ - 2775 + 2523 ], "variance": [ - 2777 + 2525 ], "__typename": [ 78 @@ -52346,37 +48693,37 @@ export default { }, "notifications_aggregate_order_by": { "avg": [ - 2740 + 2488 ], "count": [ - 2781 + 2529 ], "max": [ - 2749 + 2497 ], "min": [ - 2751 + 2499 ], "stddev": [ - 2762 + 2510 ], "stddev_pop": [ - 2764 + 2512 ], "stddev_samp": [ - 2766 + 2514 ], "sum": [ - 2770 + 2518 ], "var_pop": [ - 2774 + 2522 ], "var_samp": [ - 2776 + 2524 ], "variance": [ - 2778 + 2526 ], "__typename": [ 78 @@ -52384,7 +48731,7 @@ export default { }, "notifications_append_input": { "actions": [ - 1652 + 1400 ], "__typename": [ 78 @@ -52392,10 +48739,10 @@ export default { }, "notifications_arr_rel_insert_input": { "data": [ - 2747 + 2495 ], "on_conflict": [ - 2753 + 2501 ], "__typename": [ 78 @@ -52411,7 +48758,7 @@ export default { }, "notifications_avg_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -52419,31 +48766,31 @@ export default { }, "notifications_bool_exp": { "_and": [ - 2741 + 2489 ], "_not": [ - 2741 + 2489 ], "_or": [ - 2741 + 2489 ], "actions": [ - 1654 + 1402 ], "created_at": [ - 4325 + 4077 ], "deletable": [ 4 ], "deleted_at": [ - 4325 + 4077 ], "entity_id": [ 80 ], "id": [ - 4764 + 4623 ], "is_read": [ 4 @@ -52452,10 +48799,10 @@ export default { 80 ], "player": [ - 3743 + 3491 ], "role": [ - 922 + 909 ], "steam_id": [ 182 @@ -52464,7 +48811,7 @@ export default { 80 ], "type": [ - 882 + 869 ], "__typename": [ 78 @@ -52505,22 +48852,22 @@ export default { }, "notifications_insert_input": { "actions": [ - 1652 + 1400 ], "created_at": [ - 4324 + 4076 ], "deletable": [ 3 ], "deleted_at": [ - 4324 + 4076 ], "entity_id": [ 78 ], "id": [ - 4762 + 4621 ], "is_read": [ 3 @@ -52529,10 +48876,10 @@ export default { 78 ], "player": [ - 3750 + 3498 ], "role": [ - 921 + 908 ], "steam_id": [ 180 @@ -52541,7 +48888,7 @@ export default { 78 ], "type": [ - 881 + 868 ], "__typename": [ 78 @@ -52549,16 +48896,16 @@ export default { }, "notifications_max_fields": { "created_at": [ - 4324 + 4076 ], "deleted_at": [ - 4324 + 4076 ], "entity_id": [ 78 ], "id": [ - 4762 + 4621 ], "message": [ 78 @@ -52575,25 +48922,25 @@ export default { }, "notifications_max_order_by": { "created_at": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "entity_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "message": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "title": [ - 2781 + 2529 ], "__typename": [ 78 @@ -52601,16 +48948,16 @@ export default { }, "notifications_min_fields": { "created_at": [ - 4324 + 4076 ], "deleted_at": [ - 4324 + 4076 ], "entity_id": [ 78 ], "id": [ - 4762 + 4621 ], "message": [ 78 @@ -52627,25 +48974,25 @@ export default { }, "notifications_min_order_by": { "created_at": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "entity_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "message": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "title": [ - 2781 + 2529 ], "__typename": [ 78 @@ -52656,7 +49003,7 @@ export default { 38 ], "returning": [ - 2729 + 2477 ], "__typename": [ 78 @@ -52664,13 +49011,13 @@ export default { }, "notifications_on_conflict": { "constraint": [ - 2742 + 2490 ], "update_columns": [ - 2771 + 2519 ], "where": [ - 2741 + 2489 ], "__typename": [ 78 @@ -52678,43 +49025,43 @@ export default { }, "notifications_order_by": { "actions": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "deletable": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "entity_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "is_read": [ - 2781 + 2529 ], "message": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "role": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "title": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "__typename": [ 78 @@ -52722,7 +49069,7 @@ export default { }, "notifications_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -52730,7 +49077,7 @@ export default { }, "notifications_prepend_input": { "actions": [ - 1652 + 1400 ], "__typename": [ 78 @@ -52741,22 +49088,22 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1652 + 1400 ], "created_at": [ - 4324 + 4076 ], "deletable": [ 3 ], "deleted_at": [ - 4324 + 4076 ], "entity_id": [ 78 ], "id": [ - 4762 + 4621 ], "is_read": [ 3 @@ -52765,7 +49112,7 @@ export default { 78 ], "role": [ - 921 + 908 ], "steam_id": [ 180 @@ -52774,7 +49121,7 @@ export default { 78 ], "type": [ - 881 + 868 ], "__typename": [ 78 @@ -52790,7 +49137,7 @@ export default { }, "notifications_stddev_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -52806,7 +49153,7 @@ export default { }, "notifications_stddev_pop_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -52822,7 +49169,7 @@ export default { }, "notifications_stddev_samp_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -52830,7 +49177,7 @@ export default { }, "notifications_stream_cursor_input": { "initial_value": [ - 2768 + 2516 ], "ordering": [ 236 @@ -52841,22 +49188,22 @@ export default { }, "notifications_stream_cursor_value_input": { "actions": [ - 1652 + 1400 ], "created_at": [ - 4324 + 4076 ], "deletable": [ 3 ], "deleted_at": [ - 4324 + 4076 ], "entity_id": [ 78 ], "id": [ - 4762 + 4621 ], "is_read": [ 3 @@ -52865,7 +49212,7 @@ export default { 78 ], "role": [ - 921 + 908 ], "steam_id": [ 180 @@ -52874,7 +49221,7 @@ export default { 78 ], "type": [ - 881 + 868 ], "__typename": [ 78 @@ -52890,7 +49237,7 @@ export default { }, "notifications_sum_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -52899,28 +49246,28 @@ export default { "notifications_update_column": {}, "notifications_updates": { "_append": [ - 2737 + 2485 ], "_delete_at_path": [ - 2743 + 2491 ], "_delete_elem": [ - 2744 + 2492 ], "_delete_key": [ - 2745 + 2493 ], "_inc": [ - 2746 + 2494 ], "_prepend": [ - 2756 + 2504 ], "_set": [ - 2760 + 2508 ], "where": [ - 2741 + 2489 ], "__typename": [ 78 @@ -52936,7 +49283,7 @@ export default { }, "notifications_var_pop_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -52952,7 +49299,7 @@ export default { }, "notifications_var_samp_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -52968,7 +49315,7 @@ export default { }, "notifications_variance_order_by": { "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -52977,31 +49324,31 @@ export default { "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 2779 + 2527 ], "_gt": [ - 2779 + 2527 ], "_gte": [ - 2779 + 2527 ], "_in": [ - 2779 + 2527 ], "_is_null": [ 3 ], "_lt": [ - 2779 + 2527 ], "_lte": [ - 2779 + 2527 ], "_neq": [ - 2779 + 2527 ], "_nin": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53010,19 +49357,19 @@ export default { "order_by": {}, "pending_match_import_players": { "created_at": [ - 4324 + 4076 ], "pending_match_import": [ - 2823 + 2571 ], "player": [ - 3739 + 3487 ], "steam_id": [ 180 ], "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53030,10 +49377,10 @@ export default { }, "pending_match_import_players_aggregate": { "aggregate": [ - 2786 + 2534 ], "nodes": [ - 2782 + 2530 ], "__typename": [ 78 @@ -53041,7 +49388,7 @@ export default { }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 2785 + 2533 ], "__typename": [ 78 @@ -53049,13 +49396,13 @@ export default { }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 2803 + 2551 ], "distinct": [ 3 ], "filter": [ - 2791 + 2539 ], "predicate": [ 39 @@ -53066,13 +49413,13 @@ export default { }, "pending_match_import_players_aggregate_fields": { "avg": [ - 2789 + 2537 ], "count": [ 38, { "columns": [ - 2803, + 2551, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -53081,31 +49428,31 @@ export default { } ], "max": [ - 2795 + 2543 ], "min": [ - 2797 + 2545 ], "stddev": [ - 2805 + 2553 ], "stddev_pop": [ - 2807 + 2555 ], "stddev_samp": [ - 2809 + 2557 ], "sum": [ - 2813 + 2561 ], "var_pop": [ - 2817 + 2565 ], "var_samp": [ - 2819 + 2567 ], "variance": [ - 2821 + 2569 ], "__typename": [ 78 @@ -53113,37 +49460,37 @@ export default { }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 2790 + 2538 ], "count": [ - 2781 + 2529 ], "max": [ - 2796 + 2544 ], "min": [ - 2798 + 2546 ], "stddev": [ - 2806 + 2554 ], "stddev_pop": [ - 2808 + 2556 ], "stddev_samp": [ - 2810 + 2558 ], "sum": [ - 2814 + 2562 ], "var_pop": [ - 2818 + 2566 ], "var_samp": [ - 2820 + 2568 ], "variance": [ - 2822 + 2570 ], "__typename": [ 78 @@ -53151,10 +49498,10 @@ export default { }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 2794 + 2542 ], "on_conflict": [ - 2800 + 2548 ], "__typename": [ 78 @@ -53173,10 +49520,10 @@ export default { }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 2781 + 2529 ], "valve_match_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -53184,28 +49531,28 @@ export default { }, "pending_match_import_players_bool_exp": { "_and": [ - 2791 + 2539 ], "_not": [ - 2791 + 2539 ], "_or": [ - 2791 + 2539 ], "created_at": [ - 4325 + 4077 ], "pending_match_import": [ - 2827 + 2575 ], "player": [ - 3743 + 3491 ], "steam_id": [ 182 ], "valve_match_id": [ - 2780 + 2528 ], "__typename": [ 78 @@ -53217,7 +49564,7 @@ export default { 180 ], "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53225,19 +49572,19 @@ export default { }, "pending_match_import_players_insert_input": { "created_at": [ - 4324 + 4076 ], "pending_match_import": [ - 2834 + 2582 ], "player": [ - 3750 + 3498 ], "steam_id": [ 180 ], "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53245,13 +49592,13 @@ export default { }, "pending_match_import_players_max_fields": { "created_at": [ - 4324 + 4076 ], "steam_id": [ 180 ], "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53259,13 +49606,13 @@ export default { }, "pending_match_import_players_max_order_by": { "created_at": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "valve_match_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -53273,13 +49620,13 @@ export default { }, "pending_match_import_players_min_fields": { "created_at": [ - 4324 + 4076 ], "steam_id": [ 180 ], "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53287,13 +49634,13 @@ export default { }, "pending_match_import_players_min_order_by": { "created_at": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "valve_match_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -53304,7 +49651,7 @@ export default { 38 ], "returning": [ - 2782 + 2530 ], "__typename": [ 78 @@ -53312,13 +49659,13 @@ export default { }, "pending_match_import_players_on_conflict": { "constraint": [ - 2792 + 2540 ], "update_columns": [ - 2815 + 2563 ], "where": [ - 2791 + 2539 ], "__typename": [ 78 @@ -53326,19 +49673,19 @@ export default { }, "pending_match_import_players_order_by": { "created_at": [ - 2781 + 2529 ], "pending_match_import": [ - 2836 + 2584 ], "player": [ - 3752 + 3500 ], "steam_id": [ - 2781 + 2529 ], "valve_match_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -53349,7 +49696,7 @@ export default { 180 ], "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53358,13 +49705,13 @@ export default { "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4324 + 4076 ], "steam_id": [ 180 ], "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53383,10 +49730,10 @@ export default { }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 2781 + 2529 ], "valve_match_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -53405,10 +49752,10 @@ export default { }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 2781 + 2529 ], "valve_match_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -53427,10 +49774,10 @@ export default { }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 2781 + 2529 ], "valve_match_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -53438,7 +49785,7 @@ export default { }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 2812 + 2560 ], "ordering": [ 236 @@ -53449,13 +49796,13 @@ export default { }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "steam_id": [ 180 ], "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53466,7 +49813,7 @@ export default { 180 ], "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53474,10 +49821,10 @@ export default { }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 2781 + 2529 ], "valve_match_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -53486,13 +49833,13 @@ export default { "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 2793 + 2541 ], "_set": [ - 2804 + 2552 ], "where": [ - 2791 + 2539 ], "__typename": [ 78 @@ -53511,10 +49858,10 @@ export default { }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 2781 + 2529 ], "valve_match_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -53533,10 +49880,10 @@ export default { }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 2781 + 2529 ], "valve_match_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -53555,10 +49902,10 @@ export default { }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 2781 + 2529 ], "valve_match_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -53566,7 +49913,7 @@ export default { }, "pending_match_imports": { "created_at": [ - 4324 + 4076 ], "demo_url": [ 78 @@ -53578,13 +49925,13 @@ export default { 78 ], "match_start_time": [ - 4324 + 4076 ], "players": [ - 2782, + 2530, { "distinct_on": [ - 2803, + 2551, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -53594,19 +49941,19 @@ export default { 38 ], "order_by": [ - 2801, + 2549, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2539 ] } ], "players_aggregate": [ - 2783, + 2531, { "distinct_on": [ - 2803, + 2551, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -53616,11 +49963,11 @@ export default { 38 ], "order_by": [ - 2801, + 2549, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2539 ] } ], @@ -53631,10 +49978,10 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53642,10 +49989,10 @@ export default { }, "pending_match_imports_aggregate": { "aggregate": [ - 2825 + 2573 ], "nodes": [ - 2823 + 2571 ], "__typename": [ 78 @@ -53653,13 +50000,13 @@ export default { }, "pending_match_imports_aggregate_fields": { "avg": [ - 2826 + 2574 ], "count": [ 38, { "columns": [ - 2838, + 2586, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -53668,31 +50015,31 @@ export default { } ], "max": [ - 2831 + 2579 ], "min": [ - 2832 + 2580 ], "stddev": [ - 2840 + 2588 ], "stddev_pop": [ - 2841 + 2589 ], "stddev_samp": [ - 2842 + 2590 ], "sum": [ - 2845 + 2593 ], "var_pop": [ - 2848 + 2596 ], "var_samp": [ - 2849 + 2597 ], "variance": [ - 2850 + 2598 ], "__typename": [ 78 @@ -53708,16 +50055,16 @@ export default { }, "pending_match_imports_bool_exp": { "_and": [ - 2827 + 2575 ], "_not": [ - 2827 + 2575 ], "_or": [ - 2827 + 2575 ], "created_at": [ - 4325 + 4077 ], "demo_url": [ 80 @@ -53729,13 +50076,13 @@ export default { 80 ], "match_start_time": [ - 4325 + 4077 ], "players": [ - 2791 + 2539 ], "players_aggregate": [ - 2784 + 2532 ], "share_code": [ 80 @@ -53744,10 +50091,10 @@ export default { 80 ], "updated_at": [ - 4325 + 4077 ], "valve_match_id": [ - 2780 + 2528 ], "__typename": [ 78 @@ -53756,7 +50103,7 @@ export default { "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53764,7 +50111,7 @@ export default { }, "pending_match_imports_insert_input": { "created_at": [ - 4324 + 4076 ], "demo_url": [ 78 @@ -53776,10 +50123,10 @@ export default { 78 ], "match_start_time": [ - 4324 + 4076 ], "players": [ - 2788 + 2536 ], "share_code": [ 78 @@ -53788,10 +50135,10 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53799,7 +50146,7 @@ export default { }, "pending_match_imports_max_fields": { "created_at": [ - 4324 + 4076 ], "demo_url": [ 78 @@ -53811,7 +50158,7 @@ export default { 78 ], "match_start_time": [ - 4324 + 4076 ], "share_code": [ 78 @@ -53820,10 +50167,10 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53831,7 +50178,7 @@ export default { }, "pending_match_imports_min_fields": { "created_at": [ - 4324 + 4076 ], "demo_url": [ 78 @@ -53843,7 +50190,7 @@ export default { 78 ], "match_start_time": [ - 4324 + 4076 ], "share_code": [ 78 @@ -53852,10 +50199,10 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53866,7 +50213,7 @@ export default { 38 ], "returning": [ - 2823 + 2571 ], "__typename": [ 78 @@ -53874,10 +50221,10 @@ export default { }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 2830 + 2578 ], "on_conflict": [ - 2835 + 2583 ], "__typename": [ 78 @@ -53885,13 +50232,13 @@ export default { }, "pending_match_imports_on_conflict": { "constraint": [ - 2828 + 2576 ], "update_columns": [ - 2846 + 2594 ], "where": [ - 2827 + 2575 ], "__typename": [ 78 @@ -53899,34 +50246,34 @@ export default { }, "pending_match_imports_order_by": { "created_at": [ - 2781 + 2529 ], "demo_url": [ - 2781 + 2529 ], "error": [ - 2781 + 2529 ], "map_name": [ - 2781 + 2529 ], "match_start_time": [ - 2781 + 2529 ], "players_aggregate": [ - 2787 + 2535 ], "share_code": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "valve_match_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -53934,7 +50281,7 @@ export default { }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53943,7 +50290,7 @@ export default { "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4324 + 4076 ], "demo_url": [ 78 @@ -53955,7 +50302,7 @@ export default { 78 ], "match_start_time": [ - 4324 + 4076 ], "share_code": [ 78 @@ -53964,10 +50311,10 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -53999,7 +50346,7 @@ export default { }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 2844 + 2592 ], "ordering": [ 236 @@ -54010,7 +50357,7 @@ export default { }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "demo_url": [ 78 @@ -54022,7 +50369,7 @@ export default { 78 ], "match_start_time": [ - 4324 + 4076 ], "share_code": [ 78 @@ -54031,10 +50378,10 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -54042,7 +50389,7 @@ export default { }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 2779 + 2527 ], "__typename": [ 78 @@ -54051,13 +50398,13 @@ export default { "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 2829 + 2577 ], "_set": [ - 2839 + 2587 ], "where": [ - 2827 + 2575 ], "__typename": [ 78 @@ -54089,7 +50436,7 @@ export default { }, "player_aim_stats_demo": { "attacker": [ - 3739 + 3487 ], "attacker_steam_id": [ 180 @@ -54104,7 +50451,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "first_bullet_hits": [ 38 @@ -54122,16 +50469,16 @@ export default { 38 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "non_awp_hits": [ 38 @@ -54152,7 +50499,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -54163,10 +50510,10 @@ export default { }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 2853 + 2601 ], "nodes": [ - 2851 + 2599 ], "__typename": [ 78 @@ -54174,13 +50521,13 @@ export default { }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 2854 + 2602 ], "count": [ 38, { "columns": [ - 2865, + 2613, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -54189,31 +50536,31 @@ export default { } ], "max": [ - 2859 + 2607 ], "min": [ - 2860 + 2608 ], "stddev": [ - 2867 + 2615 ], "stddev_pop": [ - 2868 + 2616 ], "stddev_samp": [ - 2869 + 2617 ], "sum": [ - 2872 + 2620 ], "var_pop": [ - 2875 + 2623 ], "var_samp": [ - 2876 + 2624 ], "variance": [ - 2877 + 2625 ], "__typename": [ 78 @@ -54280,16 +50627,16 @@ export default { }, "player_aim_stats_demo_bool_exp": { "_and": [ - 2855 + 2603 ], "_not": [ - 2855 + 2603 ], "_or": [ - 2855 + 2603 ], "attacker": [ - 3743 + 3491 ], "attacker_steam_id": [ 182 @@ -54304,7 +50651,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2780 + 2528 ], "first_bullet_hits": [ 39 @@ -54322,16 +50669,16 @@ export default { 39 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "non_awp_hits": [ 39 @@ -54352,7 +50699,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2780 + 2528 ], "total_engagement_frames": [ 39 @@ -54376,7 +50723,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "first_bullet_hits": [ 38 @@ -54412,7 +50759,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -54423,7 +50770,7 @@ export default { }, "player_aim_stats_demo_insert_input": { "attacker": [ - 3750 + 3498 ], "attacker_steam_id": [ 180 @@ -54438,7 +50785,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "first_bullet_hits": [ 38 @@ -54456,16 +50803,16 @@ export default { 38 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2452 + 2200 ], "match_map_id": [ - 4762 + 4621 ], "non_awp_hits": [ 38 @@ -54486,7 +50833,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -54509,7 +50856,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "first_bullet_hits": [ 38 @@ -54527,10 +50874,10 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "non_awp_hits": [ 38 @@ -54551,7 +50898,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -54574,7 +50921,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "first_bullet_hits": [ 38 @@ -54592,10 +50939,10 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "non_awp_hits": [ 38 @@ -54616,7 +50963,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -54630,7 +50977,7 @@ export default { 38 ], "returning": [ - 2851 + 2599 ], "__typename": [ 78 @@ -54638,13 +50985,13 @@ export default { }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 2856 + 2604 ], "update_columns": [ - 2873 + 2621 ], "where": [ - 2855 + 2603 ], "__typename": [ 78 @@ -54652,73 +50999,73 @@ export default { }, "player_aim_stats_demo_order_by": { "attacker": [ - 3752 + 3500 ], "attacker_steam_id": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "crosshair_angle_count": [ - 2781 + 2529 ], "crosshair_angle_sum_deg": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "time_to_damage_count": [ - 2781 + 2529 ], "time_to_damage_sum_s": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "__typename": [ 78 @@ -54729,7 +51076,7 @@ export default { 180 ], "match_map_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -54750,7 +51097,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "first_bullet_hits": [ 38 @@ -54768,10 +51115,10 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "non_awp_hits": [ 38 @@ -54792,7 +51139,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -54980,7 +51327,7 @@ export default { }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 2871 + 2619 ], "ordering": [ 236 @@ -55003,7 +51350,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "first_bullet_hits": [ 38 @@ -55021,10 +51368,10 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "non_awp_hits": [ 38 @@ -55045,7 +51392,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -55068,7 +51415,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "first_bullet_hits": [ 38 @@ -55104,7 +51451,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -55116,13 +51463,13 @@ export default { "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 2857 + 2605 ], "_set": [ - 2866 + 2614 ], "where": [ - 2855 + 2603 ], "__typename": [ 78 @@ -55319,19 +51666,19 @@ export default { 38 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3739 + 3487 ], "shots": [ 38 @@ -55351,10 +51698,10 @@ export default { }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 2882 + 2630 ], "nodes": [ - 2878 + 2626 ], "__typename": [ 78 @@ -55362,7 +51709,7 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 2881 + 2629 ], "__typename": [ 78 @@ -55370,13 +51717,13 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 2899 + 2647 ], "distinct": [ 3 ], "filter": [ - 2887 + 2635 ], "predicate": [ 39 @@ -55387,13 +51734,13 @@ export default { }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 2885 + 2633 ], "count": [ 38, { "columns": [ - 2899, + 2647, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -55402,31 +51749,31 @@ export default { } ], "max": [ - 2891 + 2639 ], "min": [ - 2893 + 2641 ], "stddev": [ - 2901 + 2649 ], "stddev_pop": [ - 2903 + 2651 ], "stddev_samp": [ - 2905 + 2653 ], "sum": [ - 2909 + 2657 ], "var_pop": [ - 2913 + 2661 ], "var_samp": [ - 2915 + 2663 ], "variance": [ - 2917 + 2665 ], "__typename": [ 78 @@ -55434,37 +51781,37 @@ export default { }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 2886 + 2634 ], "count": [ - 2781 + 2529 ], "max": [ - 2892 + 2640 ], "min": [ - 2894 + 2642 ], "stddev": [ - 2902 + 2650 ], "stddev_pop": [ - 2904 + 2652 ], "stddev_samp": [ - 2906 + 2654 ], "sum": [ - 2910 + 2658 ], "var_pop": [ - 2914 + 2662 ], "var_samp": [ - 2916 + 2664 ], "variance": [ - 2918 + 2666 ], "__typename": [ 78 @@ -55472,10 +51819,10 @@ export default { }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 2890 + 2638 ], "on_conflict": [ - 2896 + 2644 ], "__typename": [ 78 @@ -55509,25 +51856,25 @@ export default { }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -55535,13 +51882,13 @@ export default { }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 2887 + 2635 ], "_not": [ - 2887 + 2635 ], "_or": [ - 2887 + 2635 ], "first_bullet_hits": [ 39 @@ -55556,19 +51903,19 @@ export default { 39 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "player": [ - 3743 + 3491 ], "shots": [ 39 @@ -55627,19 +51974,19 @@ export default { 38 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2452 + 2200 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3750 + 3498 ], "shots": [ 38 @@ -55671,10 +52018,10 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "shots": [ 38 @@ -55694,34 +52041,34 @@ export default { }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "weapon_class": [ - 2781 + 2529 ], "__typename": [ 78 @@ -55741,10 +52088,10 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "shots": [ 38 @@ -55764,34 +52111,34 @@ export default { }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "weapon_class": [ - 2781 + 2529 ], "__typename": [ 78 @@ -55802,7 +52149,7 @@ export default { 38 ], "returning": [ - 2878 + 2626 ], "__typename": [ 78 @@ -55810,13 +52157,13 @@ export default { }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 2888 + 2636 ], "update_columns": [ - 2911 + 2659 ], "where": [ - 2887 + 2635 ], "__typename": [ 78 @@ -55824,43 +52171,43 @@ export default { }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "weapon_class": [ - 2781 + 2529 ], "__typename": [ 78 @@ -55868,7 +52215,7 @@ export default { }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 4762 + 4621 ], "steam_id": [ 180 @@ -55895,10 +52242,10 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "shots": [ 38 @@ -55944,25 +52291,25 @@ export default { }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -55996,25 +52343,25 @@ export default { }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -56048,25 +52395,25 @@ export default { }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -56074,7 +52421,7 @@ export default { }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 2908 + 2656 ], "ordering": [ 236 @@ -56097,10 +52444,10 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "shots": [ 38 @@ -56146,25 +52493,25 @@ export default { }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -56173,13 +52520,13 @@ export default { "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 2889 + 2637 ], "_set": [ - 2900 + 2648 ], "where": [ - 2887 + 2635 ], "__typename": [ 78 @@ -56213,25 +52560,25 @@ export default { }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -56265,25 +52612,25 @@ export default { }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -56317,25 +52664,25 @@ export default { }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -56343,7 +52690,7 @@ export default { }, "player_assists": { "attacked_player": [ - 3739 + 3487 ], "attacked_steam_id": [ 180 @@ -56358,7 +52705,7 @@ export default { 78 ], "deleted_at": [ - 4324 + 4076 ], "flash": [ 3 @@ -56367,25 +52714,25 @@ export default { 3 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3739 + 3487 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -56393,10 +52740,10 @@ export default { }, "player_assists_aggregate": { "aggregate": [ - 2925 + 2673 ], "nodes": [ - 2919 + 2667 ], "__typename": [ 78 @@ -56404,13 +52751,13 @@ export default { }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 2922 + 2670 ], "bool_or": [ - 2923 + 2671 ], "count": [ - 2924 + 2672 ], "__typename": [ 78 @@ -56418,13 +52765,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 2943 + 2691 ], "distinct": [ 3 ], "filter": [ - 2930 + 2678 ], "predicate": [ 4 @@ -56435,13 +52782,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 2944 + 2692 ], "distinct": [ 3 ], "filter": [ - 2930 + 2678 ], "predicate": [ 4 @@ -56452,13 +52799,13 @@ export default { }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 2942 + 2690 ], "distinct": [ 3 ], "filter": [ - 2930 + 2678 ], "predicate": [ 39 @@ -56469,13 +52816,13 @@ export default { }, "player_assists_aggregate_fields": { "avg": [ - 2928 + 2676 ], "count": [ 38, { "columns": [ - 2942, + 2690, "[player_assists_select_column!]" ], "distinct": [ @@ -56484,31 +52831,31 @@ export default { } ], "max": [ - 2934 + 2682 ], "min": [ - 2936 + 2684 ], "stddev": [ - 2946 + 2694 ], "stddev_pop": [ - 2948 + 2696 ], "stddev_samp": [ - 2950 + 2698 ], "sum": [ - 2954 + 2702 ], "var_pop": [ - 2958 + 2706 ], "var_samp": [ - 2960 + 2708 ], "variance": [ - 2962 + 2710 ], "__typename": [ 78 @@ -56516,37 +52863,37 @@ export default { }, "player_assists_aggregate_order_by": { "avg": [ - 2929 + 2677 ], "count": [ - 2781 + 2529 ], "max": [ - 2935 + 2683 ], "min": [ - 2937 + 2685 ], "stddev": [ - 2947 + 2695 ], "stddev_pop": [ - 2949 + 2697 ], "stddev_samp": [ - 2951 + 2699 ], "sum": [ - 2955 + 2703 ], "var_pop": [ - 2959 + 2707 ], "var_samp": [ - 2961 + 2709 ], "variance": [ - 2963 + 2711 ], "__typename": [ 78 @@ -56554,10 +52901,10 @@ export default { }, "player_assists_arr_rel_insert_input": { "data": [ - 2933 + 2681 ], "on_conflict": [ - 2939 + 2687 ], "__typename": [ 78 @@ -56579,13 +52926,13 @@ export default { }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -56593,16 +52940,16 @@ export default { }, "player_assists_bool_exp": { "_and": [ - 2930 + 2678 ], "_not": [ - 2930 + 2678 ], "_or": [ - 2930 + 2678 ], "attacked_player": [ - 3743 + 3491 ], "attacked_steam_id": [ 182 @@ -56617,7 +52964,7 @@ export default { 80 ], "deleted_at": [ - 4325 + 4077 ], "flash": [ 4 @@ -56626,25 +52973,25 @@ export default { 4 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "player": [ - 3743 + 3491 ], "round": [ 39 ], "time": [ - 4325 + 4077 ], "__typename": [ 78 @@ -56667,7 +53014,7 @@ export default { }, "player_assists_insert_input": { "attacked_player": [ - 3750 + 3498 ], "attacked_steam_id": [ 180 @@ -56682,31 +53029,31 @@ export default { 78 ], "deleted_at": [ - 4324 + 4076 ], "flash": [ 3 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2452 + 2200 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3750 + 3498 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -56726,19 +53073,19 @@ export default { 78 ], "deleted_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -56746,31 +53093,31 @@ export default { }, "player_assists_max_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacked_team": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "attacker_team": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "__typename": [ 78 @@ -56790,19 +53137,19 @@ export default { 78 ], "deleted_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -56810,31 +53157,31 @@ export default { }, "player_assists_min_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacked_team": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "attacker_team": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "__typename": [ 78 @@ -56845,7 +53192,7 @@ export default { 38 ], "returning": [ - 2919 + 2667 ], "__typename": [ 78 @@ -56853,13 +53200,13 @@ export default { }, "player_assists_on_conflict": { "constraint": [ - 2931 + 2679 ], "update_columns": [ - 2956 + 2704 ], "where": [ - 2930 + 2678 ], "__typename": [ 78 @@ -56867,49 +53214,49 @@ export default { }, "player_assists_order_by": { "attacked_player": [ - 3752 + 3500 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacked_team": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "attacker_team": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "flash": [ - 2781 + 2529 ], "is_team_assist": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "__typename": [ 78 @@ -56923,10 +53270,10 @@ export default { 180 ], "match_map_id": [ - 4762 + 4621 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -56949,22 +53296,22 @@ export default { 78 ], "deleted_at": [ - 4324 + 4076 ], "flash": [ 3 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -56986,13 +53333,13 @@ export default { }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -57014,13 +53361,13 @@ export default { }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -57042,13 +53389,13 @@ export default { }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -57056,7 +53403,7 @@ export default { }, "player_assists_stream_cursor_input": { "initial_value": [ - 2953 + 2701 ], "ordering": [ 236 @@ -57079,22 +53426,22 @@ export default { 78 ], "deleted_at": [ - 4324 + 4076 ], "flash": [ 3 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -57116,13 +53463,13 @@ export default { }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -57131,13 +53478,13 @@ export default { "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 2932 + 2680 ], "_set": [ - 2945 + 2693 ], "where": [ - 2930 + 2678 ], "__typename": [ 78 @@ -57159,13 +53506,13 @@ export default { }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -57187,13 +53534,13 @@ export default { }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -57215,13 +53562,13 @@ export default { }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -57229,28 +53576,28 @@ export default { }, "player_career_stats_v": { "accuracy": [ - 2779 + 2527 ], "accuracy_spotted": [ - 2779 + 2527 ], "counter_strafe_pct": [ - 2779 + 2527 ], "crosshair_deg": [ - 2779 + 2527 ], "enemy_blind_pr": [ - 2779 + 2527 ], "flash_assists_pr": [ - 2779 + 2527 ], "hs_pct": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "maps": [ 38 @@ -57265,16 +53612,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2527 ], "time_to_damage_s": [ - 2779 + 2527 ], "traded_death_pct": [ - 2779 + 2527 ], "util_efficiency": [ - 2779 + 2527 ], "__typename": [ 78 @@ -57282,10 +53629,10 @@ export default { }, "player_career_stats_v_aggregate": { "aggregate": [ - 2966 + 2714 ], "nodes": [ - 2964 + 2712 ], "__typename": [ 78 @@ -57293,13 +53640,13 @@ export default { }, "player_career_stats_v_aggregate_fields": { "avg": [ - 2967 + 2715 ], "count": [ 38, { "columns": [ - 2972, + 2720, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -57308,31 +53655,31 @@ export default { } ], "max": [ - 2969 + 2717 ], "min": [ - 2970 + 2718 ], "stddev": [ - 2973 + 2721 ], "stddev_pop": [ - 2974 + 2722 ], "stddev_samp": [ - 2975 + 2723 ], "sum": [ - 2978 + 2726 ], "var_pop": [ - 2979 + 2727 ], "var_samp": [ - 2980 + 2728 ], "variance": [ - 2981 + 2729 ], "__typename": [ 78 @@ -57393,37 +53740,37 @@ export default { }, "player_career_stats_v_bool_exp": { "_and": [ - 2968 + 2716 ], "_not": [ - 2968 + 2716 ], "_or": [ - 2968 + 2716 ], "accuracy": [ - 2780 + 2528 ], "accuracy_spotted": [ - 2780 + 2528 ], "counter_strafe_pct": [ - 2780 + 2528 ], "crosshair_deg": [ - 2780 + 2528 ], "enemy_blind_pr": [ - 2780 + 2528 ], "flash_assists_pr": [ - 2780 + 2528 ], "hs_pct": [ - 2780 + 2528 ], "kast_pct": [ - 2780 + 2528 ], "maps": [ 39 @@ -57438,16 +53785,16 @@ export default { 182 ], "survival_pct": [ - 2780 + 2528 ], "time_to_damage_s": [ - 2780 + 2528 ], "traded_death_pct": [ - 2780 + 2528 ], "util_efficiency": [ - 2780 + 2528 ], "__typename": [ 78 @@ -57455,28 +53802,28 @@ export default { }, "player_career_stats_v_max_fields": { "accuracy": [ - 2779 + 2527 ], "accuracy_spotted": [ - 2779 + 2527 ], "counter_strafe_pct": [ - 2779 + 2527 ], "crosshair_deg": [ - 2779 + 2527 ], "enemy_blind_pr": [ - 2779 + 2527 ], "flash_assists_pr": [ - 2779 + 2527 ], "hs_pct": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "maps": [ 38 @@ -57491,16 +53838,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2527 ], "time_to_damage_s": [ - 2779 + 2527 ], "traded_death_pct": [ - 2779 + 2527 ], "util_efficiency": [ - 2779 + 2527 ], "__typename": [ 78 @@ -57508,28 +53855,28 @@ export default { }, "player_career_stats_v_min_fields": { "accuracy": [ - 2779 + 2527 ], "accuracy_spotted": [ - 2779 + 2527 ], "counter_strafe_pct": [ - 2779 + 2527 ], "crosshair_deg": [ - 2779 + 2527 ], "enemy_blind_pr": [ - 2779 + 2527 ], "flash_assists_pr": [ - 2779 + 2527 ], "hs_pct": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "maps": [ 38 @@ -57544,16 +53891,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2527 ], "time_to_damage_s": [ - 2779 + 2527 ], "traded_death_pct": [ - 2779 + 2527 ], "util_efficiency": [ - 2779 + 2527 ], "__typename": [ 78 @@ -57561,52 +53908,52 @@ export default { }, "player_career_stats_v_order_by": { "accuracy": [ - 2781 + 2529 ], "accuracy_spotted": [ - 2781 + 2529 ], "counter_strafe_pct": [ - 2781 + 2529 ], "crosshair_deg": [ - 2781 + 2529 ], "enemy_blind_pr": [ - 2781 + 2529 ], "flash_assists_pr": [ - 2781 + 2529 ], "hs_pct": [ - 2781 + 2529 ], "kast_pct": [ - 2781 + 2529 ], "maps": [ - 2781 + 2529 ], "premier_rank": [ - 2781 + 2529 ], "rounds": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "survival_pct": [ - 2781 + 2529 ], "time_to_damage_s": [ - 2781 + 2529 ], "traded_death_pct": [ - 2781 + 2529 ], "util_efficiency": [ - 2781 + 2529 ], "__typename": [ 78 @@ -57774,7 +54121,7 @@ export default { }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 2977 + 2725 ], "ordering": [ 236 @@ -57785,28 +54132,28 @@ export default { }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 2779 + 2527 ], "accuracy_spotted": [ - 2779 + 2527 ], "counter_strafe_pct": [ - 2779 + 2527 ], "crosshair_deg": [ - 2779 + 2527 ], "enemy_blind_pr": [ - 2779 + 2527 ], "flash_assists_pr": [ - 2779 + 2527 ], "hs_pct": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "maps": [ 38 @@ -57821,16 +54168,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2527 ], "time_to_damage_s": [ - 2779 + 2527 ], "traded_death_pct": [ - 2779 + 2527 ], "util_efficiency": [ - 2779 + 2527 ], "__typename": [ 78 @@ -57838,28 +54185,28 @@ export default { }, "player_career_stats_v_sum_fields": { "accuracy": [ - 2779 + 2527 ], "accuracy_spotted": [ - 2779 + 2527 ], "counter_strafe_pct": [ - 2779 + 2527 ], "crosshair_deg": [ - 2779 + 2527 ], "enemy_blind_pr": [ - 2779 + 2527 ], "flash_assists_pr": [ - 2779 + 2527 ], "hs_pct": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "maps": [ 38 @@ -57874,16 +54221,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2527 ], "time_to_damage_s": [ - 2779 + 2527 ], "traded_death_pct": [ - 2779 + 2527 ], "util_efficiency": [ - 2779 + 2527 ], "__typename": [ 78 @@ -58059,7 +54406,7 @@ export default { 78 ], "attacked_player": [ - 3739 + 3487 ], "attacked_steam_id": [ 180 @@ -58086,7 +54433,7 @@ export default { 38 ], "deleted_at": [ - 4324 + 4076 ], "health": [ 38 @@ -58095,31 +54442,31 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3739 + 3487 ], "round": [ - 2779 + 2527 ], "team_damage": [ 3 ], "time": [ - 4324 + 4076 ], "with": [ 78 @@ -58130,10 +54477,10 @@ export default { }, "player_damages_aggregate": { "aggregate": [ - 2986 + 2734 ], "nodes": [ - 2982 + 2730 ], "__typename": [ 78 @@ -58141,7 +54488,7 @@ export default { }, "player_damages_aggregate_bool_exp": { "count": [ - 2985 + 2733 ], "__typename": [ 78 @@ -58149,13 +54496,13 @@ export default { }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 3003 + 2751 ], "distinct": [ 3 ], "filter": [ - 2991 + 2739 ], "predicate": [ 39 @@ -58166,13 +54513,13 @@ export default { }, "player_damages_aggregate_fields": { "avg": [ - 2989 + 2737 ], "count": [ 38, { "columns": [ - 3003, + 2751, "[player_damages_select_column!]" ], "distinct": [ @@ -58181,31 +54528,31 @@ export default { } ], "max": [ - 2995 + 2743 ], "min": [ - 2997 + 2745 ], "stddev": [ - 3005 + 2753 ], "stddev_pop": [ - 3007 + 2755 ], "stddev_samp": [ - 3009 + 2757 ], "sum": [ - 3013 + 2761 ], "var_pop": [ - 3017 + 2765 ], "var_samp": [ - 3019 + 2767 ], "variance": [ - 3021 + 2769 ], "__typename": [ 78 @@ -58213,37 +54560,37 @@ export default { }, "player_damages_aggregate_order_by": { "avg": [ - 2990 + 2738 ], "count": [ - 2781 + 2529 ], "max": [ - 2996 + 2744 ], "min": [ - 2998 + 2746 ], "stddev": [ - 3006 + 2754 ], "stddev_pop": [ - 3008 + 2756 ], "stddev_samp": [ - 3010 + 2758 ], "sum": [ - 3014 + 2762 ], "var_pop": [ - 3018 + 2766 ], "var_samp": [ - 3020 + 2768 ], "variance": [ - 3022 + 2770 ], "__typename": [ 78 @@ -58251,10 +54598,10 @@ export default { }, "player_damages_arr_rel_insert_input": { "data": [ - 2994 + 2742 ], "on_conflict": [ - 3000 + 2748 ], "__typename": [ 78 @@ -58288,25 +54635,25 @@ export default { }, "player_damages_avg_order_by": { "armor": [ - 2781 + 2529 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_armor": [ - 2781 + 2529 ], "health": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -58314,13 +54661,13 @@ export default { }, "player_damages_bool_exp": { "_and": [ - 2991 + 2739 ], "_not": [ - 2991 + 2739 ], "_or": [ - 2991 + 2739 ], "armor": [ 39 @@ -58332,7 +54679,7 @@ export default { 80 ], "attacked_player": [ - 3743 + 3491 ], "attacked_steam_id": [ 182 @@ -58359,7 +54706,7 @@ export default { 39 ], "deleted_at": [ - 4325 + 4077 ], "health": [ 39 @@ -58368,31 +54715,31 @@ export default { 80 ], "id": [ - 4764 + 4623 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "player": [ - 3743 + 3491 ], "round": [ - 2780 + 2528 ], "team_damage": [ 4 ], "time": [ - 4325 + 4077 ], "with": [ 80 @@ -58422,7 +54769,7 @@ export default { 38 ], "round": [ - 2779 + 2527 ], "__typename": [ 78 @@ -58439,7 +54786,7 @@ export default { 78 ], "attacked_player": [ - 3750 + 3498 ], "attacked_steam_id": [ 180 @@ -58466,7 +54813,7 @@ export default { 38 ], "deleted_at": [ - 4324 + 4076 ], "health": [ 38 @@ -58475,28 +54822,28 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2452 + 2200 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3750 + 3498 ], "round": [ - 2779 + 2527 ], "time": [ - 4324 + 4076 ], "with": [ 78 @@ -58540,7 +54887,7 @@ export default { 38 ], "deleted_at": [ - 4324 + 4076 ], "health": [ 38 @@ -58549,19 +54896,19 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ - 2779 + 2527 ], "time": [ - 4324 + 4076 ], "with": [ 78 @@ -58572,64 +54919,64 @@ export default { }, "player_damages_max_order_by": { "armor": [ - 2781 + 2529 ], "attacked_location": [ - 2781 + 2529 ], "attacked_location_coordinates": [ - 2781 + 2529 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacked_team": [ - 2781 + 2529 ], "attacker_location": [ - 2781 + 2529 ], "attacker_location_coordinates": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "attacker_team": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_armor": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "health": [ - 2781 + 2529 ], "hitgroup": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "with": [ - 2781 + 2529 ], "__typename": [ 78 @@ -58670,7 +55017,7 @@ export default { 38 ], "deleted_at": [ - 4324 + 4076 ], "health": [ 38 @@ -58679,19 +55026,19 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ - 2779 + 2527 ], "time": [ - 4324 + 4076 ], "with": [ 78 @@ -58702,64 +55049,64 @@ export default { }, "player_damages_min_order_by": { "armor": [ - 2781 + 2529 ], "attacked_location": [ - 2781 + 2529 ], "attacked_location_coordinates": [ - 2781 + 2529 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacked_team": [ - 2781 + 2529 ], "attacker_location": [ - 2781 + 2529 ], "attacker_location_coordinates": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "attacker_team": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_armor": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "health": [ - 2781 + 2529 ], "hitgroup": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "with": [ - 2781 + 2529 ], "__typename": [ 78 @@ -58770,7 +55117,7 @@ export default { 38 ], "returning": [ - 2982 + 2730 ], "__typename": [ 78 @@ -58778,13 +55125,13 @@ export default { }, "player_damages_on_conflict": { "constraint": [ - 2992 + 2740 ], "update_columns": [ - 3015 + 2763 ], "where": [ - 2991 + 2739 ], "__typename": [ 78 @@ -58792,79 +55139,79 @@ export default { }, "player_damages_order_by": { "armor": [ - 2781 + 2529 ], "attacked_location": [ - 2781 + 2529 ], "attacked_location_coordinates": [ - 2781 + 2529 ], "attacked_player": [ - 3752 + 3500 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacked_team": [ - 2781 + 2529 ], "attacker_location": [ - 2781 + 2529 ], "attacker_location_coordinates": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "attacker_team": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_armor": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "health": [ - 2781 + 2529 ], "hitgroup": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "round": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "with": [ - 2781 + 2529 ], "__typename": [ 78 @@ -58872,13 +55219,13 @@ export default { }, "player_damages_pk_columns_input": { "id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -58920,7 +55267,7 @@ export default { 38 ], "deleted_at": [ - 4324 + 4076 ], "health": [ 38 @@ -58929,19 +55276,19 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ - 2779 + 2527 ], "time": [ - 4324 + 4076 ], "with": [ 78 @@ -58978,25 +55325,25 @@ export default { }, "player_damages_stddev_order_by": { "armor": [ - 2781 + 2529 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_armor": [ - 2781 + 2529 ], "health": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -59030,25 +55377,25 @@ export default { }, "player_damages_stddev_pop_order_by": { "armor": [ - 2781 + 2529 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_armor": [ - 2781 + 2529 ], "health": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -59082,25 +55429,25 @@ export default { }, "player_damages_stddev_samp_order_by": { "armor": [ - 2781 + 2529 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_armor": [ - 2781 + 2529 ], "health": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -59108,7 +55455,7 @@ export default { }, "player_damages_stream_cursor_input": { "initial_value": [ - 3012 + 2760 ], "ordering": [ 236 @@ -59152,7 +55499,7 @@ export default { 38 ], "deleted_at": [ - 4324 + 4076 ], "health": [ 38 @@ -59161,19 +55508,19 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ - 2779 + 2527 ], "time": [ - 4324 + 4076 ], "with": [ 78 @@ -59202,7 +55549,7 @@ export default { 38 ], "round": [ - 2779 + 2527 ], "__typename": [ 78 @@ -59210,25 +55557,25 @@ export default { }, "player_damages_sum_order_by": { "armor": [ - 2781 + 2529 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_armor": [ - 2781 + 2529 ], "health": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -59237,13 +55584,13 @@ export default { "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 2993 + 2741 ], "_set": [ - 3004 + 2752 ], "where": [ - 2991 + 2739 ], "__typename": [ 78 @@ -59277,25 +55624,25 @@ export default { }, "player_damages_var_pop_order_by": { "armor": [ - 2781 + 2529 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_armor": [ - 2781 + 2529 ], "health": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -59329,25 +55676,25 @@ export default { }, "player_damages_var_samp_order_by": { "armor": [ - 2781 + 2529 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_armor": [ - 2781 + 2529 ], "health": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -59381,25 +55728,25 @@ export default { }, "player_damages_variance_order_by": { "armor": [ - 2781 + 2529 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_armor": [ - 2781 + 2529 ], "health": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -59407,40 +55754,40 @@ export default { }, "player_elo": { "actual_score": [ - 1499 + 1248 ], "assists": [ 38 ], "change": [ - 2779 + 2527 ], "created_at": [ - 4324 + 4076 ], "current": [ - 2779 + 2527 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1248 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1248 ], "impact": [ - 2779 + 2527 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1248 ], "kills": [ 38 @@ -59452,28 +55799,28 @@ export default { 38 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "opponent_team_elo_avg": [ - 1499 + 1248 ], "performance_multiplier": [ - 1499 + 1248 ], "player": [ - 3739 + 3487 ], "player_team_elo_avg": [ - 1499 + 1248 ], "season": [ - 3798 + 3546 ], "season_id": [ - 4762 + 4621 ], "series_multiplier": [ 38 @@ -59482,10 +55829,10 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1248 ], "type": [ - 860 + 847 ], "__typename": [ 78 @@ -59493,10 +55840,10 @@ export default { }, "player_elo_aggregate": { "aggregate": [ - 3025 + 2773 ], "nodes": [ - 3023 + 2771 ], "__typename": [ 78 @@ -59504,13 +55851,13 @@ export default { }, "player_elo_aggregate_fields": { "avg": [ - 3026 + 2774 ], "count": [ 38, { "columns": [ - 3037, + 2785, "[player_elo_select_column!]" ], "distinct": [ @@ -59519,31 +55866,31 @@ export default { } ], "max": [ - 3031 + 2779 ], "min": [ - 3032 + 2780 ], "stddev": [ - 3039 + 2787 ], "stddev_pop": [ - 3040 + 2788 ], "stddev_samp": [ - 3041 + 2789 ], "sum": [ - 3044 + 2792 ], "var_pop": [ - 3047 + 2795 ], "var_samp": [ - 3048 + 2796 ], "variance": [ - 3049 + 2797 ], "__typename": [ 78 @@ -59616,49 +55963,49 @@ export default { }, "player_elo_bool_exp": { "_and": [ - 3027 + 2775 ], "_not": [ - 3027 + 2775 ], "_or": [ - 3027 + 2775 ], "actual_score": [ - 1500 + 1249 ], "assists": [ 39 ], "change": [ - 2780 + 2528 ], "created_at": [ - 4325 + 4077 ], "current": [ - 2780 + 2528 ], "damage": [ 39 ], "damage_percent": [ - 1500 + 1249 ], "deaths": [ 39 ], "expected_score": [ - 1500 + 1249 ], "impact": [ - 2780 + 2528 ], "k_factor": [ 39 ], "kda": [ - 1500 + 1249 ], "kills": [ 39 @@ -59670,28 +56017,28 @@ export default { 39 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "opponent_team_elo_avg": [ - 1500 + 1249 ], "performance_multiplier": [ - 1500 + 1249 ], "player": [ - 3743 + 3491 ], "player_team_elo_avg": [ - 1500 + 1249 ], "season": [ - 3802 + 3550 ], "season_id": [ - 4764 + 4623 ], "series_multiplier": [ 39 @@ -59700,10 +56047,10 @@ export default { 182 ], "team_avg_kda": [ - 1500 + 1249 ], "type": [ - 861 + 848 ], "__typename": [ 78 @@ -59712,37 +56059,37 @@ export default { "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1499 + 1248 ], "assists": [ 38 ], "change": [ - 2779 + 2527 ], "current": [ - 2779 + 2527 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1248 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1248 ], "impact": [ - 2779 + 2527 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1248 ], "kills": [ 38 @@ -59754,13 +56101,13 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1499 + 1248 ], "performance_multiplier": [ - 1499 + 1248 ], "player_team_elo_avg": [ - 1499 + 1248 ], "series_multiplier": [ 38 @@ -59769,7 +56116,7 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1248 ], "__typename": [ 78 @@ -59777,40 +56124,40 @@ export default { }, "player_elo_insert_input": { "actual_score": [ - 1499 + 1248 ], "assists": [ 38 ], "change": [ - 2779 + 2527 ], "created_at": [ - 4324 + 4076 ], "current": [ - 2779 + 2527 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1248 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1248 ], "impact": [ - 2779 + 2527 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1248 ], "kills": [ 38 @@ -59822,28 +56169,28 @@ export default { 38 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "opponent_team_elo_avg": [ - 1499 + 1248 ], "performance_multiplier": [ - 1499 + 1248 ], "player": [ - 3750 + 3498 ], "player_team_elo_avg": [ - 1499 + 1248 ], "season": [ - 3809 + 3557 ], "season_id": [ - 4762 + 4621 ], "series_multiplier": [ 38 @@ -59852,10 +56199,10 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1248 ], "type": [ - 860 + 847 ], "__typename": [ 78 @@ -59863,40 +56210,40 @@ export default { }, "player_elo_max_fields": { "actual_score": [ - 1499 + 1248 ], "assists": [ 38 ], "change": [ - 2779 + 2527 ], "created_at": [ - 4324 + 4076 ], "current": [ - 2779 + 2527 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1248 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1248 ], "impact": [ - 2779 + 2527 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1248 ], "kills": [ 38 @@ -59908,19 +56255,19 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "opponent_team_elo_avg": [ - 1499 + 1248 ], "performance_multiplier": [ - 1499 + 1248 ], "player_team_elo_avg": [ - 1499 + 1248 ], "season_id": [ - 4762 + 4621 ], "series_multiplier": [ 38 @@ -59929,7 +56276,7 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1248 ], "__typename": [ 78 @@ -59937,40 +56284,40 @@ export default { }, "player_elo_min_fields": { "actual_score": [ - 1499 + 1248 ], "assists": [ 38 ], "change": [ - 2779 + 2527 ], "created_at": [ - 4324 + 4076 ], "current": [ - 2779 + 2527 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1248 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1248 ], "impact": [ - 2779 + 2527 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1248 ], "kills": [ 38 @@ -59982,19 +56329,19 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "opponent_team_elo_avg": [ - 1499 + 1248 ], "performance_multiplier": [ - 1499 + 1248 ], "player_team_elo_avg": [ - 1499 + 1248 ], "season_id": [ - 4762 + 4621 ], "series_multiplier": [ 38 @@ -60003,7 +56350,7 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1248 ], "__typename": [ 78 @@ -60014,7 +56361,7 @@ export default { 38 ], "returning": [ - 3023 + 2771 ], "__typename": [ 78 @@ -60022,13 +56369,13 @@ export default { }, "player_elo_on_conflict": { "constraint": [ - 3028 + 2776 ], "update_columns": [ - 3045 + 2793 ], "where": [ - 3027 + 2775 ], "__typename": [ 78 @@ -60036,85 +56383,85 @@ export default { }, "player_elo_order_by": { "actual_score": [ - 2781 + 2529 ], "assists": [ - 2781 + 2529 ], "change": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "current": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_percent": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "expected_score": [ - 2781 + 2529 ], "impact": [ - 2781 + 2529 ], "k_factor": [ - 2781 + 2529 ], "kda": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "map_losses": [ - 2781 + 2529 ], "map_wins": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "opponent_team_elo_avg": [ - 2781 + 2529 ], "performance_multiplier": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "player_team_elo_avg": [ - 2781 + 2529 ], "season": [ - 3811 + 3559 ], "season_id": [ - 2781 + 2529 ], "series_multiplier": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_avg_kda": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "__typename": [ 78 @@ -60122,13 +56469,13 @@ export default { }, "player_elo_pk_columns_input": { "match_id": [ - 4762 + 4621 ], "steam_id": [ 180 ], "type": [ - 860 + 847 ], "__typename": [ 78 @@ -60137,40 +56484,40 @@ export default { "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1499 + 1248 ], "assists": [ 38 ], "change": [ - 2779 + 2527 ], "created_at": [ - 4324 + 4076 ], "current": [ - 2779 + 2527 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1248 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1248 ], "impact": [ - 2779 + 2527 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1248 ], "kills": [ 38 @@ -60182,19 +56529,19 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "opponent_team_elo_avg": [ - 1499 + 1248 ], "performance_multiplier": [ - 1499 + 1248 ], "player_team_elo_avg": [ - 1499 + 1248 ], "season_id": [ - 4762 + 4621 ], "series_multiplier": [ 38 @@ -60203,10 +56550,10 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1248 ], "type": [ - 860 + 847 ], "__typename": [ 78 @@ -60409,7 +56756,7 @@ export default { }, "player_elo_stream_cursor_input": { "initial_value": [ - 3043 + 2791 ], "ordering": [ 236 @@ -60420,40 +56767,40 @@ export default { }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1499 + 1248 ], "assists": [ 38 ], "change": [ - 2779 + 2527 ], "created_at": [ - 4324 + 4076 ], "current": [ - 2779 + 2527 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1248 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1248 ], "impact": [ - 2779 + 2527 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1248 ], "kills": [ 38 @@ -60465,19 +56812,19 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "opponent_team_elo_avg": [ - 1499 + 1248 ], "performance_multiplier": [ - 1499 + 1248 ], "player_team_elo_avg": [ - 1499 + 1248 ], "season_id": [ - 4762 + 4621 ], "series_multiplier": [ 38 @@ -60486,10 +56833,10 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1248 ], "type": [ - 860 + 847 ], "__typename": [ 78 @@ -60497,37 +56844,37 @@ export default { }, "player_elo_sum_fields": { "actual_score": [ - 1499 + 1248 ], "assists": [ 38 ], "change": [ - 2779 + 2527 ], "current": [ - 2779 + 2527 ], "damage": [ 38 ], "damage_percent": [ - 1499 + 1248 ], "deaths": [ 38 ], "expected_score": [ - 1499 + 1248 ], "impact": [ - 2779 + 2527 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1248 ], "kills": [ 38 @@ -60539,13 +56886,13 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1499 + 1248 ], "performance_multiplier": [ - 1499 + 1248 ], "player_team_elo_avg": [ - 1499 + 1248 ], "series_multiplier": [ 38 @@ -60554,7 +56901,7 @@ export default { 180 ], "team_avg_kda": [ - 1499 + 1248 ], "__typename": [ 78 @@ -60563,13 +56910,13 @@ export default { "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 3029 + 2777 ], "_set": [ - 3038 + 2786 ], "where": [ - 3027 + 2775 ], "__typename": [ 78 @@ -60775,19 +57122,19 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "observed_at": [ - 4324 + 4076 ], "player": [ - 3739 + 3487 ], "previous_rank": [ 38 @@ -60804,10 +57151,10 @@ export default { }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 3054 + 2802 ], "nodes": [ - 3050 + 2798 ], "__typename": [ 78 @@ -60815,7 +57162,7 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 3053 + 2801 ], "__typename": [ 78 @@ -60823,13 +57170,13 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3071 + 2819 ], "distinct": [ 3 ], "filter": [ - 3059 + 2807 ], "predicate": [ 39 @@ -60840,13 +57187,13 @@ export default { }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 3057 + 2805 ], "count": [ 38, { "columns": [ - 3071, + 2819, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -60855,31 +57202,31 @@ export default { } ], "max": [ - 3063 + 2811 ], "min": [ - 3065 + 2813 ], "stddev": [ - 3073 + 2821 ], "stddev_pop": [ - 3075 + 2823 ], "stddev_samp": [ - 3077 + 2825 ], "sum": [ - 3081 + 2829 ], "var_pop": [ - 3085 + 2833 ], "var_samp": [ - 3087 + 2835 ], "variance": [ - 3089 + 2837 ], "__typename": [ 78 @@ -60887,37 +57234,37 @@ export default { }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 3058 + 2806 ], "count": [ - 2781 + 2529 ], "max": [ - 3064 + 2812 ], "min": [ - 3066 + 2814 ], "stddev": [ - 3074 + 2822 ], "stddev_pop": [ - 3076 + 2824 ], "stddev_samp": [ - 3078 + 2826 ], "sum": [ - 3082 + 2830 ], "var_pop": [ - 3086 + 2834 ], "var_samp": [ - 3088 + 2836 ], "variance": [ - 3090 + 2838 ], "__typename": [ 78 @@ -60925,10 +57272,10 @@ export default { }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 3062 + 2810 ], "on_conflict": [ - 3068 + 2816 ], "__typename": [ 78 @@ -60953,16 +57300,16 @@ export default { }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 2781 + 2529 ], "previous_rank": [ - 2781 + 2529 ], "skill_level": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -60970,31 +57317,31 @@ export default { }, "player_faceit_rank_history_bool_exp": { "_and": [ - 3059 + 2807 ], "_not": [ - 3059 + 2807 ], "_or": [ - 3059 + 2807 ], "elo": [ 39 ], "id": [ - 4764 + 4623 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "observed_at": [ - 4325 + 4077 ], "player": [ - 3743 + 3491 ], "previous_rank": [ 39 @@ -61032,19 +57379,19 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "observed_at": [ - 4324 + 4076 ], "player": [ - 3750 + 3498 ], "previous_rank": [ 38 @@ -61064,13 +57411,13 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "observed_at": [ - 4324 + 4076 ], "previous_rank": [ 38 @@ -61087,25 +57434,25 @@ export default { }, "player_faceit_rank_history_max_order_by": { "elo": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "observed_at": [ - 2781 + 2529 ], "previous_rank": [ - 2781 + 2529 ], "skill_level": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -61116,13 +57463,13 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "observed_at": [ - 4324 + 4076 ], "previous_rank": [ 38 @@ -61139,25 +57486,25 @@ export default { }, "player_faceit_rank_history_min_order_by": { "elo": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "observed_at": [ - 2781 + 2529 ], "previous_rank": [ - 2781 + 2529 ], "skill_level": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -61168,7 +57515,7 @@ export default { 38 ], "returning": [ - 3050 + 2798 ], "__typename": [ 78 @@ -61176,13 +57523,13 @@ export default { }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 3060 + 2808 ], "update_columns": [ - 3083 + 2831 ], "where": [ - 3059 + 2807 ], "__typename": [ 78 @@ -61190,31 +57537,31 @@ export default { }, "player_faceit_rank_history_order_by": { "elo": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "observed_at": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "previous_rank": [ - 2781 + 2529 ], "skill_level": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -61222,7 +57569,7 @@ export default { }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -61234,13 +57581,13 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "observed_at": [ - 4324 + 4076 ], "previous_rank": [ 38 @@ -61274,16 +57621,16 @@ export default { }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 2781 + 2529 ], "previous_rank": [ - 2781 + 2529 ], "skill_level": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -61308,16 +57655,16 @@ export default { }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 2781 + 2529 ], "previous_rank": [ - 2781 + 2529 ], "skill_level": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -61342,16 +57689,16 @@ export default { }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 2781 + 2529 ], "previous_rank": [ - 2781 + 2529 ], "skill_level": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -61359,7 +57706,7 @@ export default { }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 3080 + 2828 ], "ordering": [ 236 @@ -61373,13 +57720,13 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "observed_at": [ - 4324 + 4076 ], "previous_rank": [ 38 @@ -61413,16 +57760,16 @@ export default { }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 2781 + 2529 ], "previous_rank": [ - 2781 + 2529 ], "skill_level": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -61431,13 +57778,13 @@ export default { "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 3061 + 2809 ], "_set": [ - 3072 + 2820 ], "where": [ - 3059 + 2807 ], "__typename": [ 78 @@ -61462,16 +57809,16 @@ export default { }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 2781 + 2529 ], "previous_rank": [ - 2781 + 2529 ], "skill_level": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -61496,16 +57843,16 @@ export default { }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 2781 + 2529 ], "previous_rank": [ - 2781 + 2529 ], "skill_level": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -61530,16 +57877,16 @@ export default { }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 2781 + 2529 ], "previous_rank": [ - 2781 + 2529 ], "skill_level": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -61553,25 +57900,25 @@ export default { 180 ], "blinded": [ - 3739 + 3487 ], "deleted_at": [ - 4324 + 4076 ], "duration": [ - 2779 + 2527 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 @@ -61580,10 +57927,10 @@ export default { 3 ], "thrown_by": [ - 3739 + 3487 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -61591,10 +57938,10 @@ export default { }, "player_flashes_aggregate": { "aggregate": [ - 3097 + 2845 ], "nodes": [ - 3091 + 2839 ], "__typename": [ 78 @@ -61602,13 +57949,13 @@ export default { }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 3094 + 2842 ], "bool_or": [ - 3095 + 2843 ], "count": [ - 3096 + 2844 ], "__typename": [ 78 @@ -61616,13 +57963,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 3115 + 2863 ], "distinct": [ 3 ], "filter": [ - 3102 + 2850 ], "predicate": [ 4 @@ -61633,13 +57980,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 3116 + 2864 ], "distinct": [ 3 ], "filter": [ - 3102 + 2850 ], "predicate": [ 4 @@ -61650,13 +57997,13 @@ export default { }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 3114 + 2862 ], "distinct": [ 3 ], "filter": [ - 3102 + 2850 ], "predicate": [ 39 @@ -61667,13 +58014,13 @@ export default { }, "player_flashes_aggregate_fields": { "avg": [ - 3100 + 2848 ], "count": [ 38, { "columns": [ - 3114, + 2862, "[player_flashes_select_column!]" ], "distinct": [ @@ -61682,31 +58029,31 @@ export default { } ], "max": [ - 3106 + 2854 ], "min": [ - 3108 + 2856 ], "stddev": [ - 3118 + 2866 ], "stddev_pop": [ - 3120 + 2868 ], "stddev_samp": [ - 3122 + 2870 ], "sum": [ - 3126 + 2874 ], "var_pop": [ - 3130 + 2878 ], "var_samp": [ - 3132 + 2880 ], "variance": [ - 3134 + 2882 ], "__typename": [ 78 @@ -61714,37 +58061,37 @@ export default { }, "player_flashes_aggregate_order_by": { "avg": [ - 3101 + 2849 ], "count": [ - 2781 + 2529 ], "max": [ - 3107 + 2855 ], "min": [ - 3109 + 2857 ], "stddev": [ - 3119 + 2867 ], "stddev_pop": [ - 3121 + 2869 ], "stddev_samp": [ - 3123 + 2871 ], "sum": [ - 3127 + 2875 ], "var_pop": [ - 3131 + 2879 ], "var_samp": [ - 3133 + 2881 ], "variance": [ - 3135 + 2883 ], "__typename": [ 78 @@ -61752,10 +58099,10 @@ export default { }, "player_flashes_arr_rel_insert_input": { "data": [ - 3105 + 2853 ], "on_conflict": [ - 3111 + 2859 ], "__typename": [ 78 @@ -61780,16 +58127,16 @@ export default { }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "duration": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -61797,13 +58144,13 @@ export default { }, "player_flashes_bool_exp": { "_and": [ - 3102 + 2850 ], "_not": [ - 3102 + 2850 ], "_or": [ - 3102 + 2850 ], "attacked_steam_id": [ 182 @@ -61812,25 +58159,25 @@ export default { 182 ], "blinded": [ - 3743 + 3491 ], "deleted_at": [ - 4325 + 4077 ], "duration": [ - 2780 + 2528 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "round": [ 39 @@ -61839,10 +58186,10 @@ export default { 4 ], "thrown_by": [ - 3743 + 3491 ], "time": [ - 4325 + 4077 ], "__typename": [ 78 @@ -61857,7 +58204,7 @@ export default { 180 ], "duration": [ - 2779 + 2527 ], "round": [ 38 @@ -61874,25 +58221,25 @@ export default { 180 ], "blinded": [ - 3750 + 3498 ], "deleted_at": [ - 4324 + 4076 ], "duration": [ - 2779 + 2527 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2452 + 2200 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 @@ -61901,10 +58248,10 @@ export default { 3 ], "thrown_by": [ - 3750 + 3498 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -61918,22 +58265,22 @@ export default { 180 ], "deleted_at": [ - 4324 + 4076 ], "duration": [ - 2779 + 2527 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -61941,28 +58288,28 @@ export default { }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "duration": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "__typename": [ 78 @@ -61976,22 +58323,22 @@ export default { 180 ], "deleted_at": [ - 4324 + 4076 ], "duration": [ - 2779 + 2527 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -61999,28 +58346,28 @@ export default { }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "duration": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "__typename": [ 78 @@ -62031,7 +58378,7 @@ export default { 38 ], "returning": [ - 3091 + 2839 ], "__typename": [ 78 @@ -62039,13 +58386,13 @@ export default { }, "player_flashes_on_conflict": { "constraint": [ - 3103 + 2851 ], "update_columns": [ - 3128 + 2876 ], "where": [ - 3102 + 2850 ], "__typename": [ 78 @@ -62053,43 +58400,43 @@ export default { }, "player_flashes_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "blinded": [ - 3752 + 3500 ], "deleted_at": [ - 2781 + 2529 ], "duration": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "team_flash": [ - 2781 + 2529 ], "thrown_by": [ - 3752 + 3500 ], "time": [ - 2781 + 2529 ], "__typename": [ 78 @@ -62103,10 +58450,10 @@ export default { 180 ], "match_map_id": [ - 4762 + 4621 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -62123,16 +58470,16 @@ export default { 180 ], "deleted_at": [ - 4324 + 4076 ], "duration": [ - 2779 + 2527 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 @@ -62141,7 +58488,7 @@ export default { 3 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -62166,16 +58513,16 @@ export default { }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "duration": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -62200,16 +58547,16 @@ export default { }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "duration": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -62234,16 +58581,16 @@ export default { }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "duration": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -62251,7 +58598,7 @@ export default { }, "player_flashes_stream_cursor_input": { "initial_value": [ - 3125 + 2873 ], "ordering": [ 236 @@ -62268,16 +58615,16 @@ export default { 180 ], "deleted_at": [ - 4324 + 4076 ], "duration": [ - 2779 + 2527 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 @@ -62286,7 +58633,7 @@ export default { 3 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -62300,7 +58647,7 @@ export default { 180 ], "duration": [ - 2779 + 2527 ], "round": [ 38 @@ -62311,16 +58658,16 @@ export default { }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "duration": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -62329,13 +58676,13 @@ export default { "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 3104 + 2852 ], "_set": [ - 3117 + 2865 ], "where": [ - 3102 + 2850 ], "__typename": [ 78 @@ -62360,16 +58707,16 @@ export default { }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "duration": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -62394,16 +58741,16 @@ export default { }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "duration": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -62428,16 +58775,16 @@ export default { }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "duration": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -62454,7 +58801,7 @@ export default { 78 ], "attacked_player": [ - 3739 + 3487 ], "attacked_steam_id": [ 180 @@ -62478,7 +58825,7 @@ export default { 3 ], "deleted_at": [ - 4324 + 4076 ], "headshot": [ 3 @@ -62493,22 +58840,22 @@ export default { 3 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "no_scope": [ 3 ], "player": [ - 3739 + 3487 ], "round": [ 38 @@ -62523,7 +58870,7 @@ export default { 3 ], "time": [ - 4324 + 4076 ], "with": [ 78 @@ -62534,10 +58881,10 @@ export default { }, "player_kills_aggregate": { "aggregate": [ - 3142 + 2890 ], "nodes": [ - 3136 + 2884 ], "__typename": [ 78 @@ -62545,13 +58892,13 @@ export default { }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 3139 + 2887 ], "bool_or": [ - 3140 + 2888 ], "count": [ - 3141 + 2889 ], "__typename": [ 78 @@ -62559,13 +58906,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 3201 + 2949 ], "distinct": [ 3 ], "filter": [ - 3147 + 2895 ], "predicate": [ 4 @@ -62576,13 +58923,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 3202 + 2950 ], "distinct": [ 3 ], "filter": [ - 3147 + 2895 ], "predicate": [ 4 @@ -62593,13 +58940,13 @@ export default { }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 3200 + 2948 ], "distinct": [ 3 ], "filter": [ - 3147 + 2895 ], "predicate": [ 39 @@ -62610,13 +58957,13 @@ export default { }, "player_kills_aggregate_fields": { "avg": [ - 3145 + 2893 ], "count": [ 38, { "columns": [ - 3200, + 2948, "[player_kills_select_column!]" ], "distinct": [ @@ -62625,31 +58972,31 @@ export default { } ], "max": [ - 3192 + 2940 ], "min": [ - 3194 + 2942 ], "stddev": [ - 3204 + 2952 ], "stddev_pop": [ - 3206 + 2954 ], "stddev_samp": [ - 3208 + 2956 ], "sum": [ - 3212 + 2960 ], "var_pop": [ - 3216 + 2964 ], "var_samp": [ - 3218 + 2966 ], "variance": [ - 3220 + 2968 ], "__typename": [ 78 @@ -62657,37 +59004,37 @@ export default { }, "player_kills_aggregate_order_by": { "avg": [ - 3146 + 2894 ], "count": [ - 2781 + 2529 ], "max": [ - 3193 + 2941 ], "min": [ - 3195 + 2943 ], "stddev": [ - 3205 + 2953 ], "stddev_pop": [ - 3207 + 2955 ], "stddev_samp": [ - 3209 + 2957 ], "sum": [ - 3213 + 2961 ], "var_pop": [ - 3217 + 2965 ], "var_samp": [ - 3219 + 2967 ], "variance": [ - 3221 + 2969 ], "__typename": [ 78 @@ -62695,10 +59042,10 @@ export default { }, "player_kills_arr_rel_insert_input": { "data": [ - 3191 + 2939 ], "on_conflict": [ - 3197 + 2945 ], "__typename": [ 78 @@ -62720,13 +59067,13 @@ export default { }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -62734,13 +59081,13 @@ export default { }, "player_kills_bool_exp": { "_and": [ - 3147 + 2895 ], "_not": [ - 3147 + 2895 ], "_or": [ - 3147 + 2895 ], "assisted": [ 4 @@ -62752,7 +59099,7 @@ export default { 80 ], "attacked_player": [ - 3743 + 3491 ], "attacked_steam_id": [ 182 @@ -62776,7 +59123,7 @@ export default { 4 ], "deleted_at": [ - 4325 + 4077 ], "headshot": [ 4 @@ -62791,22 +59138,22 @@ export default { 4 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "no_scope": [ 4 ], "player": [ - 3743 + 3491 ], "round": [ 39 @@ -62821,7 +59168,7 @@ export default { 4 ], "time": [ - 4325 + 4077 ], "with": [ 80 @@ -62835,7 +59182,7 @@ export default { 180 ], "player": [ - 3739 + 3487 ], "player_steam_id": [ 180 @@ -62849,10 +59196,10 @@ export default { }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 3152 + 2900 ], "nodes": [ - 3148 + 2896 ], "__typename": [ 78 @@ -62860,7 +59207,7 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 3151 + 2899 ], "__typename": [ 78 @@ -62868,13 +59215,13 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 3169 + 2917 ], "distinct": [ 3 ], "filter": [ - 3157 + 2905 ], "predicate": [ 39 @@ -62885,13 +59232,13 @@ export default { }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 3155 + 2903 ], "count": [ 38, { "columns": [ - 3169, + 2917, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -62900,31 +59247,31 @@ export default { } ], "max": [ - 3161 + 2909 ], "min": [ - 3163 + 2911 ], "stddev": [ - 3171 + 2919 ], "stddev_pop": [ - 3173 + 2921 ], "stddev_samp": [ - 3175 + 2923 ], "sum": [ - 3179 + 2927 ], "var_pop": [ - 3183 + 2931 ], "var_samp": [ - 3185 + 2933 ], "variance": [ - 3187 + 2935 ], "__typename": [ 78 @@ -62932,37 +59279,37 @@ export default { }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 3156 + 2904 ], "count": [ - 2781 + 2529 ], "max": [ - 3162 + 2910 ], "min": [ - 3164 + 2912 ], "stddev": [ - 3172 + 2920 ], "stddev_pop": [ - 3174 + 2922 ], "stddev_samp": [ - 3176 + 2924 ], "sum": [ - 3180 + 2928 ], "var_pop": [ - 3184 + 2932 ], "var_samp": [ - 3186 + 2934 ], "variance": [ - 3188 + 2936 ], "__typename": [ 78 @@ -62970,10 +59317,10 @@ export default { }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 3160 + 2908 ], "on_conflict": [ - 3166 + 2914 ], "__typename": [ 78 @@ -62992,10 +59339,10 @@ export default { }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63003,19 +59350,19 @@ export default { }, "player_kills_by_weapon_bool_exp": { "_and": [ - 3157 + 2905 ], "_not": [ - 3157 + 2905 ], "_or": [ - 3157 + 2905 ], "kill_count": [ 182 ], "player": [ - 3743 + 3491 ], "player_steam_id": [ 182 @@ -63044,7 +59391,7 @@ export default { 180 ], "player": [ - 3750 + 3498 ], "player_steam_id": [ 180 @@ -63072,13 +59419,13 @@ export default { }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "with": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63100,13 +59447,13 @@ export default { }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "with": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63117,7 +59464,7 @@ export default { 38 ], "returning": [ - 3148 + 2896 ], "__typename": [ 78 @@ -63125,13 +59472,13 @@ export default { }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 3158 + 2906 ], "update_columns": [ - 3181 + 2929 ], "where": [ - 3157 + 2905 ], "__typename": [ 78 @@ -63139,16 +59486,16 @@ export default { }, "player_kills_by_weapon_order_by": { "kill_count": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "player_steam_id": [ - 2781 + 2529 ], "with": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63193,10 +59540,10 @@ export default { }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63215,10 +59562,10 @@ export default { }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63237,10 +59584,10 @@ export default { }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63248,7 +59595,7 @@ export default { }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 3178 + 2926 ], "ordering": [ 236 @@ -63284,10 +59631,10 @@ export default { }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63296,13 +59643,13 @@ export default { "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 3159 + 2907 ], "_set": [ - 3170 + 2918 ], "where": [ - 3157 + 2905 ], "__typename": [ 78 @@ -63321,10 +59668,10 @@ export default { }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63343,10 +59690,10 @@ export default { }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63365,10 +59712,10 @@ export default { }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63400,7 +59747,7 @@ export default { 78 ], "attacked_player": [ - 3750 + 3498 ], "attacked_steam_id": [ 180 @@ -63424,7 +59771,7 @@ export default { 3 ], "deleted_at": [ - 4324 + 4076 ], "headshot": [ 3 @@ -63436,22 +59783,22 @@ export default { 3 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2452 + 2200 ], "match_map_id": [ - 4762 + 4621 ], "no_scope": [ 3 ], "player": [ - 3750 + 3498 ], "round": [ 38 @@ -63463,7 +59810,7 @@ export default { 3 ], "time": [ - 4324 + 4076 ], "with": [ 78 @@ -63498,22 +59845,22 @@ export default { 78 ], "deleted_at": [ - 4324 + 4076 ], "hitgroup": [ 78 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "with": [ 78 @@ -63524,49 +59871,49 @@ export default { }, "player_kills_max_order_by": { "attacked_location": [ - 2781 + 2529 ], "attacked_location_coordinates": [ - 2781 + 2529 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacked_team": [ - 2781 + 2529 ], "attacker_location": [ - 2781 + 2529 ], "attacker_location_coordinates": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "attacker_team": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "hitgroup": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "with": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63598,22 +59945,22 @@ export default { 78 ], "deleted_at": [ - 4324 + 4076 ], "hitgroup": [ 78 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "with": [ 78 @@ -63624,49 +59971,49 @@ export default { }, "player_kills_min_order_by": { "attacked_location": [ - 2781 + 2529 ], "attacked_location_coordinates": [ - 2781 + 2529 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacked_team": [ - 2781 + 2529 ], "attacker_location": [ - 2781 + 2529 ], "attacker_location_coordinates": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "attacker_team": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "hitgroup": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "with": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63677,7 +60024,7 @@ export default { 38 ], "returning": [ - 3136 + 2884 ], "__typename": [ 78 @@ -63685,13 +60032,13 @@ export default { }, "player_kills_on_conflict": { "constraint": [ - 3189 + 2937 ], "update_columns": [ - 3214 + 2962 ], "where": [ - 3147 + 2895 ], "__typename": [ 78 @@ -63699,88 +60046,88 @@ export default { }, "player_kills_order_by": { "assisted": [ - 2781 + 2529 ], "attacked_location": [ - 2781 + 2529 ], "attacked_location_coordinates": [ - 2781 + 2529 ], "attacked_player": [ - 3752 + 3500 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacked_team": [ - 2781 + 2529 ], "attacker_location": [ - 2781 + 2529 ], "attacker_location_coordinates": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "attacker_team": [ - 2781 + 2529 ], "blinded": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "headshot": [ - 2781 + 2529 ], "hitgroup": [ - 2781 + 2529 ], "in_air": [ - 2781 + 2529 ], "is_suicide": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "no_scope": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "round": [ - 2781 + 2529 ], "team_kill": [ - 2781 + 2529 ], "thru_smoke": [ - 2781 + 2529 ], "thru_wall": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "with": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63794,10 +60141,10 @@ export default { 180 ], "match_map_id": [ - 4762 + 4621 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -63838,7 +60185,7 @@ export default { 3 ], "deleted_at": [ - 4324 + 4076 ], "headshot": [ 3 @@ -63850,10 +60197,10 @@ export default { 3 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "no_scope": [ 3 @@ -63868,7 +60215,7 @@ export default { 3 ], "time": [ - 4324 + 4076 ], "with": [ 78 @@ -63893,13 +60240,13 @@ export default { }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63921,13 +60268,13 @@ export default { }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63949,13 +60296,13 @@ export default { }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -63963,7 +60310,7 @@ export default { }, "player_kills_stream_cursor_input": { "initial_value": [ - 3211 + 2959 ], "ordering": [ 236 @@ -64004,7 +60351,7 @@ export default { 3 ], "deleted_at": [ - 4324 + 4076 ], "headshot": [ 3 @@ -64016,10 +60363,10 @@ export default { 3 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "no_scope": [ 3 @@ -64034,7 +60381,7 @@ export default { 3 ], "time": [ - 4324 + 4076 ], "with": [ 78 @@ -64059,13 +60406,13 @@ export default { }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -64074,13 +60421,13 @@ export default { "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 3190 + 2938 ], "_set": [ - 3203 + 2951 ], "where": [ - 3147 + 2895 ], "__typename": [ 78 @@ -64102,13 +60449,13 @@ export default { }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -64130,13 +60477,13 @@ export default { }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -64158,13 +60505,13 @@ export default { }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -64181,7 +60528,7 @@ export default { 38 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -64189,10 +60536,10 @@ export default { }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 3224 + 2972 ], "nodes": [ - 3222 + 2970 ], "__typename": [ 78 @@ -64200,13 +60547,13 @@ export default { }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 3225 + 2973 ], "count": [ 38, { "columns": [ - 3233, + 2981, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -64215,31 +60562,31 @@ export default { } ], "max": [ - 3229 + 2977 ], "min": [ - 3230 + 2978 ], "stddev": [ - 3235 + 2983 ], "stddev_pop": [ - 3236 + 2984 ], "stddev_samp": [ - 3237 + 2985 ], "sum": [ - 3240 + 2988 ], "var_pop": [ - 3242 + 2990 ], "var_samp": [ - 3243 + 2991 ], "variance": [ - 3244 + 2992 ], "__typename": [ 78 @@ -64261,13 +60608,13 @@ export default { }, "player_leaderboard_rank_bool_exp": { "_and": [ - 3226 + 2974 ], "_not": [ - 3226 + 2974 ], "_or": [ - 3226 + 2974 ], "player_steam_id": [ 80 @@ -64279,7 +60626,7 @@ export default { 39 ], "value": [ - 1500 + 1249 ], "__typename": [ 78 @@ -64293,7 +60640,7 @@ export default { 38 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -64310,7 +60657,7 @@ export default { 38 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -64327,7 +60674,7 @@ export default { 38 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -64344,7 +60691,7 @@ export default { 38 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -64355,7 +60702,7 @@ export default { 38 ], "returning": [ - 3222 + 2970 ], "__typename": [ 78 @@ -64363,16 +60710,16 @@ export default { }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "total": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -64390,7 +60737,7 @@ export default { 38 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -64440,7 +60787,7 @@ export default { }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 3239 + 2987 ], "ordering": [ 236 @@ -64460,7 +60807,7 @@ export default { 38 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -64474,7 +60821,7 @@ export default { 38 ], "value": [ - 1499 + 1248 ], "__typename": [ 78 @@ -64482,13 +60829,13 @@ export default { }, "player_leaderboard_rank_updates": { "_inc": [ - 3227 + 2975 ], "_set": [ - 3234 + 2982 ], "where": [ - 3226 + 2974 ], "__typename": [ 78 @@ -64556,7 +60903,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "damage": [ 38 @@ -64598,7 +60945,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2527 ], "flashes_thrown": [ 38 @@ -64652,16 +60999,16 @@ export default { 38 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "molotov_damage": [ 38 @@ -64676,7 +61023,7 @@ export default { 38 ], "player": [ - 3739 + 3487 ], "rounds_ct": [ 38 @@ -64724,7 +61071,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -64754,7 +61101,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4076 ], "util_on_death_count": [ 38 @@ -64774,10 +61121,10 @@ export default { }, "player_match_map_stats_aggregate": { "aggregate": [ - 3249 + 2997 ], "nodes": [ - 3245 + 2993 ], "__typename": [ 78 @@ -64785,7 +61132,7 @@ export default { }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 3248 + 2996 ], "__typename": [ 78 @@ -64793,13 +61140,13 @@ export default { }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 3266 + 3014 ], "distinct": [ 3 ], "filter": [ - 3254 + 3002 ], "predicate": [ 39 @@ -64810,13 +61157,13 @@ export default { }, "player_match_map_stats_aggregate_fields": { "avg": [ - 3252 + 3000 ], "count": [ 38, { "columns": [ - 3266, + 3014, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -64825,31 +61172,31 @@ export default { } ], "max": [ - 3258 + 3006 ], "min": [ - 3260 + 3008 ], "stddev": [ - 3268 + 3016 ], "stddev_pop": [ - 3270 + 3018 ], "stddev_samp": [ - 3272 + 3020 ], "sum": [ - 3276 + 3024 ], "var_pop": [ - 3280 + 3028 ], "var_samp": [ - 3282 + 3030 ], "variance": [ - 3284 + 3032 ], "__typename": [ 78 @@ -64857,37 +61204,37 @@ export default { }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 3253 + 3001 ], "count": [ - 2781 + 2529 ], "max": [ - 3259 + 3007 ], "min": [ - 3261 + 3009 ], "stddev": [ - 3269 + 3017 ], "stddev_pop": [ - 3271 + 3019 ], "stddev_samp": [ - 3273 + 3021 ], "sum": [ - 3277 + 3025 ], "var_pop": [ - 3281 + 3029 ], "var_samp": [ - 3283 + 3031 ], "variance": [ - 3285 + 3033 ], "__typename": [ 78 @@ -64895,10 +61242,10 @@ export default { }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 3257 + 3005 ], "on_conflict": [ - 3263 + 3011 ], "__typename": [ 78 @@ -65124,217 +61471,217 @@ export default { }, "player_match_map_stats_avg_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "crosshair_angle_count": [ - 2781 + 2529 ], "crosshair_angle_sum_deg": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flash_duration_count": [ - 2781 + 2529 ], "flash_duration_sum": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kast_rounds": [ - 2781 + 2529 ], "kast_total_rounds": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "time_to_damage_count": [ - 2781 + 2529 ], "time_to_damage_sum_s": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "util_on_death_count": [ - 2781 + 2529 ], "util_on_death_sum": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -65342,13 +61689,13 @@ export default { }, "player_match_map_stats_bool_exp": { "_and": [ - 3254 + 3002 ], "_not": [ - 3254 + 3002 ], "_or": [ - 3254 + 3002 ], "assists": [ 39 @@ -65369,7 +61716,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2780 + 2528 ], "damage": [ 39 @@ -65411,7 +61758,7 @@ export default { 39 ], "flash_duration_sum": [ - 2780 + 2528 ], "flashes_thrown": [ 39 @@ -65465,16 +61812,16 @@ export default { 39 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "molotov_damage": [ 39 @@ -65489,7 +61836,7 @@ export default { 39 ], "player": [ - 3743 + 3491 ], "rounds_ct": [ 39 @@ -65537,7 +61884,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2780 + 2528 ], "total_engagement_frames": [ 39 @@ -65567,7 +61914,7 @@ export default { 39 ], "updated_at": [ - 4325 + 4077 ], "util_on_death_count": [ 39 @@ -65606,7 +61953,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "damage": [ 38 @@ -65648,7 +61995,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2527 ], "flashes_thrown": [ 38 @@ -65759,7 +62106,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -65824,7 +62171,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "damage": [ 38 @@ -65866,7 +62213,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2527 ], "flashes_thrown": [ 38 @@ -65920,16 +62267,16 @@ export default { 38 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2452 + 2200 ], "match_map_id": [ - 4762 + 4621 ], "molotov_damage": [ 38 @@ -65944,7 +62291,7 @@ export default { 38 ], "player": [ - 3750 + 3498 ], "rounds_ct": [ 38 @@ -65992,7 +62339,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -66022,7 +62369,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4076 ], "util_on_death_count": [ 38 @@ -66060,7 +62407,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "damage": [ 38 @@ -66102,7 +62449,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2527 ], "flashes_thrown": [ 38 @@ -66156,10 +62503,10 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "molotov_damage": [ 38 @@ -66219,7 +62566,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -66249,7 +62596,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4076 ], "util_on_death_count": [ 38 @@ -66269,226 +62616,226 @@ export default { }, "player_match_map_stats_max_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "crosshair_angle_count": [ - 2781 + 2529 ], "crosshair_angle_sum_deg": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flash_duration_count": [ - 2781 + 2529 ], "flash_duration_sum": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kast_rounds": [ - 2781 + 2529 ], "kast_total_rounds": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "time_to_damage_count": [ - 2781 + 2529 ], "time_to_damage_sum_s": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "util_on_death_count": [ - 2781 + 2529 ], "util_on_death_sum": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -66514,7 +62861,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "damage": [ 38 @@ -66556,7 +62903,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2527 ], "flashes_thrown": [ 38 @@ -66610,10 +62957,10 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "molotov_damage": [ 38 @@ -66673,7 +63020,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -66703,7 +63050,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4076 ], "util_on_death_count": [ 38 @@ -66723,226 +63070,226 @@ export default { }, "player_match_map_stats_min_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "crosshair_angle_count": [ - 2781 + 2529 ], "crosshair_angle_sum_deg": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flash_duration_count": [ - 2781 + 2529 ], "flash_duration_sum": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kast_rounds": [ - 2781 + 2529 ], "kast_total_rounds": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "time_to_damage_count": [ - 2781 + 2529 ], "time_to_damage_sum_s": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "util_on_death_count": [ - 2781 + 2529 ], "util_on_death_sum": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -66953,7 +63300,7 @@ export default { 38 ], "returning": [ - 3245 + 2993 ], "__typename": [ 78 @@ -66961,13 +63308,13 @@ export default { }, "player_match_map_stats_on_conflict": { "constraint": [ - 3255 + 3003 ], "update_columns": [ - 3278 + 3026 ], "where": [ - 3254 + 3002 ], "__typename": [ 78 @@ -66975,235 +63322,235 @@ export default { }, "player_match_map_stats_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "crosshair_angle_count": [ - 2781 + 2529 ], "crosshair_angle_sum_deg": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flash_duration_count": [ - 2781 + 2529 ], "flash_duration_sum": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kast_rounds": [ - 2781 + 2529 ], "kast_total_rounds": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "time_to_damage_count": [ - 2781 + 2529 ], "time_to_damage_sum_s": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "util_on_death_count": [ - 2781 + 2529 ], "util_on_death_sum": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -67211,7 +63558,7 @@ export default { }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 4762 + 4621 ], "steam_id": [ 180 @@ -67241,7 +63588,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "damage": [ 38 @@ -67283,7 +63630,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2527 ], "flashes_thrown": [ 38 @@ -67337,10 +63684,10 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "molotov_damage": [ 38 @@ -67400,7 +63747,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -67430,7 +63777,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4076 ], "util_on_death_count": [ 38 @@ -67668,217 +64015,217 @@ export default { }, "player_match_map_stats_stddev_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "crosshair_angle_count": [ - 2781 + 2529 ], "crosshair_angle_sum_deg": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flash_duration_count": [ - 2781 + 2529 ], "flash_duration_sum": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kast_rounds": [ - 2781 + 2529 ], "kast_total_rounds": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "time_to_damage_count": [ - 2781 + 2529 ], "time_to_damage_sum_s": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "util_on_death_count": [ - 2781 + 2529 ], "util_on_death_sum": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -68104,217 +64451,217 @@ export default { }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "crosshair_angle_count": [ - 2781 + 2529 ], "crosshair_angle_sum_deg": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flash_duration_count": [ - 2781 + 2529 ], "flash_duration_sum": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kast_rounds": [ - 2781 + 2529 ], "kast_total_rounds": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "time_to_damage_count": [ - 2781 + 2529 ], "time_to_damage_sum_s": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "util_on_death_count": [ - 2781 + 2529 ], "util_on_death_sum": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -68540,217 +64887,217 @@ export default { }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "crosshair_angle_count": [ - 2781 + 2529 ], "crosshair_angle_sum_deg": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flash_duration_count": [ - 2781 + 2529 ], "flash_duration_sum": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kast_rounds": [ - 2781 + 2529 ], "kast_total_rounds": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "time_to_damage_count": [ - 2781 + 2529 ], "time_to_damage_sum_s": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "util_on_death_count": [ - 2781 + 2529 ], "util_on_death_sum": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -68758,7 +65105,7 @@ export default { }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 3275 + 3023 ], "ordering": [ 236 @@ -68787,7 +65134,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "damage": [ 38 @@ -68829,7 +65176,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2527 ], "flashes_thrown": [ 38 @@ -68883,10 +65230,10 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "molotov_damage": [ 38 @@ -68946,7 +65293,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -68976,7 +65323,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4076 ], "util_on_death_count": [ 38 @@ -69014,7 +65361,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2779 + 2527 ], "damage": [ 38 @@ -69056,7 +65403,7 @@ export default { 38 ], "flash_duration_sum": [ - 2779 + 2527 ], "flashes_thrown": [ 38 @@ -69167,7 +65514,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2779 + 2527 ], "total_engagement_frames": [ 38 @@ -69214,217 +65561,217 @@ export default { }, "player_match_map_stats_sum_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "crosshair_angle_count": [ - 2781 + 2529 ], "crosshair_angle_sum_deg": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flash_duration_count": [ - 2781 + 2529 ], "flash_duration_sum": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kast_rounds": [ - 2781 + 2529 ], "kast_total_rounds": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "time_to_damage_count": [ - 2781 + 2529 ], "time_to_damage_sum_s": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "util_on_death_count": [ - 2781 + 2529 ], "util_on_death_sum": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -69433,13 +65780,13 @@ export default { "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 3256 + 3004 ], "_set": [ - 3267 + 3015 ], "where": [ - 3254 + 3002 ], "__typename": [ 78 @@ -69665,217 +66012,217 @@ export default { }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "crosshair_angle_count": [ - 2781 + 2529 ], "crosshair_angle_sum_deg": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flash_duration_count": [ - 2781 + 2529 ], "flash_duration_sum": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kast_rounds": [ - 2781 + 2529 ], "kast_total_rounds": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "time_to_damage_count": [ - 2781 + 2529 ], "time_to_damage_sum_s": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "util_on_death_count": [ - 2781 + 2529 ], "util_on_death_sum": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -70101,217 +66448,217 @@ export default { }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "crosshair_angle_count": [ - 2781 + 2529 ], "crosshair_angle_sum_deg": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flash_duration_count": [ - 2781 + 2529 ], "flash_duration_sum": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kast_rounds": [ - 2781 + 2529 ], "kast_total_rounds": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "time_to_damage_count": [ - 2781 + 2529 ], "time_to_damage_sum_s": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "util_on_death_count": [ - 2781 + 2529 ], "util_on_death_sum": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -70537,217 +66884,217 @@ export default { }, "player_match_map_stats_variance_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "crosshair_angle_count": [ - 2781 + 2529 ], "crosshair_angle_sum_deg": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flash_duration_count": [ - 2781 + 2529 ], "flash_duration_sum": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kast_rounds": [ - 2781 + 2529 ], "kast_total_rounds": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "time_to_damage_count": [ - 2781 + 2529 ], "time_to_damage_sum_s": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "util_on_death_count": [ - 2781 + 2529 ], "util_on_death_sum": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -70755,40 +67102,40 @@ export default { }, "player_match_performance_v": { "accuracy": [ - 2779 + 2527 ], "accuracy_spotted": [ - 2779 + 2527 ], "aim_rating": [ - 1499 + 1248 ], "counter_strafe_pct": [ - 2779 + 2527 ], "enemy_blind_pr": [ - 2779 + 2527 ], "flash_assists_pr": [ - 2779 + 2527 ], "hs_pct": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "match_id": [ - 4762 + 4621 ], "overall_rating": [ - 1499 + 1248 ], "played_at": [ - 4324 + 4076 ], "positioning_rating": [ - 1499 + 1248 ], "rounds": [ 38 @@ -70800,16 +67147,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2527 ], "traded_death_pct": [ - 2779 + 2527 ], "util_efficiency": [ - 2779 + 2527 ], "utility_rating": [ - 1499 + 1248 ], "__typename": [ 78 @@ -70817,10 +67164,10 @@ export default { }, "player_match_performance_v_aggregate": { "aggregate": [ - 3288 + 3036 ], "nodes": [ - 3286 + 3034 ], "__typename": [ 78 @@ -70828,13 +67175,13 @@ export default { }, "player_match_performance_v_aggregate_fields": { "avg": [ - 3289 + 3037 ], "count": [ 38, { "columns": [ - 3294, + 3042, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -70843,31 +67190,31 @@ export default { } ], "max": [ - 3291 + 3039 ], "min": [ - 3292 + 3040 ], "stddev": [ - 3295 + 3043 ], "stddev_pop": [ - 3296 + 3044 ], "stddev_samp": [ - 3297 + 3045 ], "sum": [ - 3300 + 3048 ], "var_pop": [ - 3301 + 3049 ], "var_samp": [ - 3302 + 3050 ], "variance": [ - 3303 + 3051 ], "__typename": [ 78 @@ -70928,49 +67275,49 @@ export default { }, "player_match_performance_v_bool_exp": { "_and": [ - 3290 + 3038 ], "_not": [ - 3290 + 3038 ], "_or": [ - 3290 + 3038 ], "accuracy": [ - 2780 + 2528 ], "accuracy_spotted": [ - 2780 + 2528 ], "aim_rating": [ - 1500 + 1249 ], "counter_strafe_pct": [ - 2780 + 2528 ], "enemy_blind_pr": [ - 2780 + 2528 ], "flash_assists_pr": [ - 2780 + 2528 ], "hs_pct": [ - 2780 + 2528 ], "kast_pct": [ - 2780 + 2528 ], "match_id": [ - 4764 + 4623 ], "overall_rating": [ - 1500 + 1249 ], "played_at": [ - 4325 + 4077 ], "positioning_rating": [ - 1500 + 1249 ], "rounds": [ 39 @@ -70982,16 +67329,16 @@ export default { 182 ], "survival_pct": [ - 2780 + 2528 ], "traded_death_pct": [ - 2780 + 2528 ], "util_efficiency": [ - 2780 + 2528 ], "utility_rating": [ - 1500 + 1249 ], "__typename": [ 78 @@ -70999,40 +67346,40 @@ export default { }, "player_match_performance_v_max_fields": { "accuracy": [ - 2779 + 2527 ], "accuracy_spotted": [ - 2779 + 2527 ], "aim_rating": [ - 1499 + 1248 ], "counter_strafe_pct": [ - 2779 + 2527 ], "enemy_blind_pr": [ - 2779 + 2527 ], "flash_assists_pr": [ - 2779 + 2527 ], "hs_pct": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "match_id": [ - 4762 + 4621 ], "overall_rating": [ - 1499 + 1248 ], "played_at": [ - 4324 + 4076 ], "positioning_rating": [ - 1499 + 1248 ], "rounds": [ 38 @@ -71044,16 +67391,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2527 ], "traded_death_pct": [ - 2779 + 2527 ], "util_efficiency": [ - 2779 + 2527 ], "utility_rating": [ - 1499 + 1248 ], "__typename": [ 78 @@ -71061,40 +67408,40 @@ export default { }, "player_match_performance_v_min_fields": { "accuracy": [ - 2779 + 2527 ], "accuracy_spotted": [ - 2779 + 2527 ], "aim_rating": [ - 1499 + 1248 ], "counter_strafe_pct": [ - 2779 + 2527 ], "enemy_blind_pr": [ - 2779 + 2527 ], "flash_assists_pr": [ - 2779 + 2527 ], "hs_pct": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "match_id": [ - 4762 + 4621 ], "overall_rating": [ - 1499 + 1248 ], "played_at": [ - 4324 + 4076 ], "positioning_rating": [ - 1499 + 1248 ], "rounds": [ 38 @@ -71106,16 +67453,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2527 ], "traded_death_pct": [ - 2779 + 2527 ], "util_efficiency": [ - 2779 + 2527 ], "utility_rating": [ - 1499 + 1248 ], "__typename": [ 78 @@ -71123,61 +67470,61 @@ export default { }, "player_match_performance_v_order_by": { "accuracy": [ - 2781 + 2529 ], "accuracy_spotted": [ - 2781 + 2529 ], "aim_rating": [ - 2781 + 2529 ], "counter_strafe_pct": [ - 2781 + 2529 ], "enemy_blind_pr": [ - 2781 + 2529 ], "flash_assists_pr": [ - 2781 + 2529 ], "hs_pct": [ - 2781 + 2529 ], "kast_pct": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "overall_rating": [ - 2781 + 2529 ], "played_at": [ - 2781 + 2529 ], "positioning_rating": [ - 2781 + 2529 ], "rounds": [ - 2781 + 2529 ], "source": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "survival_pct": [ - 2781 + 2529 ], "traded_death_pct": [ - 2781 + 2529 ], "util_efficiency": [ - 2781 + 2529 ], "utility_rating": [ - 2781 + 2529 ], "__typename": [ 78 @@ -71345,7 +67692,7 @@ export default { }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 3299 + 3047 ], "ordering": [ 236 @@ -71356,40 +67703,40 @@ export default { }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 2779 + 2527 ], "accuracy_spotted": [ - 2779 + 2527 ], "aim_rating": [ - 1499 + 1248 ], "counter_strafe_pct": [ - 2779 + 2527 ], "enemy_blind_pr": [ - 2779 + 2527 ], "flash_assists_pr": [ - 2779 + 2527 ], "hs_pct": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "match_id": [ - 4762 + 4621 ], "overall_rating": [ - 1499 + 1248 ], "played_at": [ - 4324 + 4076 ], "positioning_rating": [ - 1499 + 1248 ], "rounds": [ 38 @@ -71401,16 +67748,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2527 ], "traded_death_pct": [ - 2779 + 2527 ], "util_efficiency": [ - 2779 + 2527 ], "utility_rating": [ - 1499 + 1248 ], "__typename": [ 78 @@ -71418,34 +67765,34 @@ export default { }, "player_match_performance_v_sum_fields": { "accuracy": [ - 2779 + 2527 ], "accuracy_spotted": [ - 2779 + 2527 ], "aim_rating": [ - 1499 + 1248 ], "counter_strafe_pct": [ - 2779 + 2527 ], "enemy_blind_pr": [ - 2779 + 2527 ], "flash_assists_pr": [ - 2779 + 2527 ], "hs_pct": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "overall_rating": [ - 1499 + 1248 ], "positioning_rating": [ - 1499 + 1248 ], "rounds": [ 38 @@ -71454,16 +67801,16 @@ export default { 180 ], "survival_pct": [ - 2779 + 2527 ], "traded_death_pct": [ - 2779 + 2527 ], "util_efficiency": [ - 2779 + 2527 ], "utility_rating": [ - 1499 + 1248 ], "__typename": [ 78 @@ -71639,13 +67986,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2779 + 2527 ], "avg_flash_duration": [ - 2779 + 2527 ], "avg_time_to_damage_s": [ - 2779 + 2527 ], "counter_strafe_eligible_shots": [ 38 @@ -71735,7 +68082,7 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "molotov_damage": [ 38 @@ -71819,7 +68166,7 @@ export default { 38 ], "utility_on_death": [ - 2779 + 2527 ], "wasted_magazine_shots": [ 38 @@ -71833,10 +68180,10 @@ export default { }, "player_match_stats_v_aggregate": { "aggregate": [ - 3308 + 3056 ], "nodes": [ - 3304 + 3052 ], "__typename": [ 78 @@ -71844,7 +68191,7 @@ export default { }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3307 + 3055 ], "__typename": [ 78 @@ -71852,13 +68199,13 @@ export default { }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3320 + 3068 ], "distinct": [ 3 ], "filter": [ - 3313 + 3061 ], "predicate": [ 39 @@ -71869,13 +68216,13 @@ export default { }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3311 + 3059 ], "count": [ 38, { "columns": [ - 3320, + 3068, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -71884,31 +68231,31 @@ export default { } ], "max": [ - 3315 + 3063 ], "min": [ - 3317 + 3065 ], "stddev": [ - 3321 + 3069 ], "stddev_pop": [ - 3323 + 3071 ], "stddev_samp": [ - 3325 + 3073 ], "sum": [ - 3329 + 3077 ], "var_pop": [ - 3331 + 3079 ], "var_samp": [ - 3333 + 3081 ], "variance": [ - 3335 + 3083 ], "__typename": [ 78 @@ -71916,37 +68263,37 @@ export default { }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3312 + 3060 ], "count": [ - 2781 + 2529 ], "max": [ - 3316 + 3064 ], "min": [ - 3318 + 3066 ], "stddev": [ - 3322 + 3070 ], "stddev_pop": [ - 3324 + 3072 ], "stddev_samp": [ - 3326 + 3074 ], "sum": [ - 3330 + 3078 ], "var_pop": [ - 3332 + 3080 ], "var_samp": [ - 3334 + 3082 ], "variance": [ - 3336 + 3084 ], "__typename": [ 78 @@ -71954,7 +68301,7 @@ export default { }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3314 + 3062 ], "__typename": [ 78 @@ -72162,199 +68509,199 @@ export default { }, "player_match_stats_v_avg_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "avg_crosshair_angle_deg": [ - 2781 + 2529 ], "avg_flash_duration": [ - 2781 + 2529 ], "avg_time_to_damage_s": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "utility_on_death": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -72362,13 +68709,13 @@ export default { }, "player_match_stats_v_bool_exp": { "_and": [ - 3313 + 3061 ], "_not": [ - 3313 + 3061 ], "_or": [ - 3313 + 3061 ], "assists": [ 39 @@ -72380,13 +68727,13 @@ export default { 39 ], "avg_crosshair_angle_deg": [ - 2780 + 2528 ], "avg_flash_duration": [ - 2780 + 2528 ], "avg_time_to_damage_s": [ - 2780 + 2528 ], "counter_strafe_eligible_shots": [ 39 @@ -72476,7 +68823,7 @@ export default { 39 ], "match_id": [ - 4764 + 4623 ], "molotov_damage": [ 39 @@ -72560,7 +68907,7 @@ export default { 39 ], "utility_on_death": [ - 2780 + 2528 ], "wasted_magazine_shots": [ 39 @@ -72583,13 +68930,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2779 + 2527 ], "avg_flash_duration": [ - 2779 + 2527 ], "avg_time_to_damage_s": [ - 2779 + 2527 ], "counter_strafe_eligible_shots": [ 38 @@ -72679,7 +69026,7 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "molotov_damage": [ 38 @@ -72763,7 +69110,7 @@ export default { 38 ], "utility_on_death": [ - 2779 + 2527 ], "wasted_magazine_shots": [ 38 @@ -72786,13 +69133,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2779 + 2527 ], "avg_flash_duration": [ - 2779 + 2527 ], "avg_time_to_damage_s": [ - 2779 + 2527 ], "counter_strafe_eligible_shots": [ 38 @@ -72882,7 +69229,7 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "molotov_damage": [ 38 @@ -72966,7 +69313,7 @@ export default { 38 ], "utility_on_death": [ - 2779 + 2527 ], "wasted_magazine_shots": [ 38 @@ -72980,202 +69327,202 @@ export default { }, "player_match_stats_v_max_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "avg_crosshair_angle_deg": [ - 2781 + 2529 ], "avg_flash_duration": [ - 2781 + 2529 ], "avg_time_to_damage_s": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "utility_on_death": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -73192,13 +69539,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2779 + 2527 ], "avg_flash_duration": [ - 2779 + 2527 ], "avg_time_to_damage_s": [ - 2779 + 2527 ], "counter_strafe_eligible_shots": [ 38 @@ -73288,7 +69635,7 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "molotov_damage": [ 38 @@ -73372,7 +69719,7 @@ export default { 38 ], "utility_on_death": [ - 2779 + 2527 ], "wasted_magazine_shots": [ 38 @@ -73386,202 +69733,202 @@ export default { }, "player_match_stats_v_min_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "avg_crosshair_angle_deg": [ - 2781 + 2529 ], "avg_flash_duration": [ - 2781 + 2529 ], "avg_time_to_damage_s": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "utility_on_death": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -73589,202 +69936,202 @@ export default { }, "player_match_stats_v_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "avg_crosshair_angle_deg": [ - 2781 + 2529 ], "avg_flash_duration": [ - 2781 + 2529 ], "avg_time_to_damage_s": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "utility_on_death": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -73993,199 +70340,199 @@ export default { }, "player_match_stats_v_stddev_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "avg_crosshair_angle_deg": [ - 2781 + 2529 ], "avg_flash_duration": [ - 2781 + 2529 ], "avg_time_to_damage_s": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "utility_on_death": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -74393,199 +70740,199 @@ export default { }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "avg_crosshair_angle_deg": [ - 2781 + 2529 ], "avg_flash_duration": [ - 2781 + 2529 ], "avg_time_to_damage_s": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "utility_on_death": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -74793,199 +71140,199 @@ export default { }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "avg_crosshair_angle_deg": [ - 2781 + 2529 ], "avg_flash_duration": [ - 2781 + 2529 ], "avg_time_to_damage_s": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "utility_on_death": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -74993,7 +71340,7 @@ export default { }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3328 + 3076 ], "ordering": [ 236 @@ -75013,13 +71360,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2779 + 2527 ], "avg_flash_duration": [ - 2779 + 2527 ], "avg_time_to_damage_s": [ - 2779 + 2527 ], "counter_strafe_eligible_shots": [ 38 @@ -75109,7 +71456,7 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "molotov_damage": [ 38 @@ -75193,7 +71540,7 @@ export default { 38 ], "utility_on_death": [ - 2779 + 2527 ], "wasted_magazine_shots": [ 38 @@ -75216,13 +71563,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2779 + 2527 ], "avg_flash_duration": [ - 2779 + 2527 ], "avg_time_to_damage_s": [ - 2779 + 2527 ], "counter_strafe_eligible_shots": [ 38 @@ -75393,7 +71740,7 @@ export default { 38 ], "utility_on_death": [ - 2779 + 2527 ], "wasted_magazine_shots": [ 38 @@ -75407,199 +71754,199 @@ export default { }, "player_match_stats_v_sum_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "avg_crosshair_angle_deg": [ - 2781 + 2529 ], "avg_flash_duration": [ - 2781 + 2529 ], "avg_time_to_damage_s": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "utility_on_death": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -75807,199 +72154,199 @@ export default { }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "avg_crosshair_angle_deg": [ - 2781 + 2529 ], "avg_flash_duration": [ - 2781 + 2529 ], "avg_time_to_damage_s": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "utility_on_death": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -76207,199 +72554,199 @@ export default { }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "avg_crosshair_angle_deg": [ - 2781 + 2529 ], "avg_flash_duration": [ - 2781 + 2529 ], "avg_time_to_damage_s": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "utility_on_death": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -76607,199 +72954,199 @@ export default { }, "player_match_stats_v_variance_order_by": { "assists": [ - 2781 + 2529 ], "assists_ct": [ - 2781 + 2529 ], "assists_t": [ - 2781 + 2529 ], "avg_crosshair_angle_deg": [ - 2781 + 2529 ], "avg_flash_duration": [ - 2781 + 2529 ], "avg_time_to_damage_s": [ - 2781 + 2529 ], "counter_strafe_eligible_shots": [ - 2781 + 2529 ], "counter_strafed_shots": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_ct": [ - 2781 + 2529 ], "damage_t": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "deaths_ct": [ - 2781 + 2529 ], "deaths_t": [ - 2781 + 2529 ], "decoy_throws": [ - 2781 + 2529 ], "enemies_flashed": [ - 2781 + 2529 ], "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "five_kill_rounds": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "flashes_thrown": [ - 2781 + 2529 ], "four_kill_rounds": [ - 2781 + 2529 ], "he_damage": [ - 2781 + 2529 ], "he_team_damage": [ - 2781 + 2529 ], "he_throws": [ - 2781 + 2529 ], "headshot_hits": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_at_spotted": [ - 2781 + 2529 ], "hs_kills": [ - 2781 + 2529 ], "hs_kills_ct": [ - 2781 + 2529 ], "hs_kills_t": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kills_ct": [ - 2781 + 2529 ], "kills_t": [ - 2781 + 2529 ], "knife_kills": [ - 2781 + 2529 ], "molotov_damage": [ - 2781 + 2529 ], "molotov_throws": [ - 2781 + 2529 ], "non_awp_hits": [ - 2781 + 2529 ], "on_target_frames": [ - 2781 + 2529 ], "rounds_ct": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "rounds_t": [ - 2781 + 2529 ], "shots_at_spotted": [ - 2781 + 2529 ], "shots_fired": [ - 2781 + 2529 ], "smoke_throws": [ - 2781 + 2529 ], "spotted_count": [ - 2781 + 2529 ], "spotted_with_damage_count": [ - 2781 + 2529 ], "spray_hits": [ - 2781 + 2529 ], "spray_shots": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_damage": [ - 2781 + 2529 ], "team_flashed": [ - 2781 + 2529 ], "three_kill_rounds": [ - 2781 + 2529 ], "total_engagement_frames": [ - 2781 + 2529 ], "trade_kill_attempts": [ - 2781 + 2529 ], "trade_kill_opportunities": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_attempts": [ - 2781 + 2529 ], "traded_death_opportunities": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "two_kill_rounds": [ - 2781 + 2529 ], "unused_utility_value": [ - 2781 + 2529 ], "utility_on_death": [ - 2781 + 2529 ], "wasted_magazine_shots": [ - 2781 + 2529 ], "zeus_kills": [ - 2781 + 2529 ], "__typename": [ 78 @@ -76807,22 +73154,22 @@ export default { }, "player_objectives": { "deleted_at": [ - 4324 + 4076 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3739 + 3487 ], "player_steam_id": [ 180 @@ -76831,10 +73178,10 @@ export default { 38 ], "time": [ - 4324 + 4076 ], "type": [ - 901 + 888 ], "__typename": [ 78 @@ -76842,10 +73189,10 @@ export default { }, "player_objectives_aggregate": { "aggregate": [ - 3341 + 3089 ], "nodes": [ - 3337 + 3085 ], "__typename": [ 78 @@ -76853,7 +73200,7 @@ export default { }, "player_objectives_aggregate_bool_exp": { "count": [ - 3340 + 3088 ], "__typename": [ 78 @@ -76861,13 +73208,13 @@ export default { }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3358 + 3106 ], "distinct": [ 3 ], "filter": [ - 3346 + 3094 ], "predicate": [ 39 @@ -76878,13 +73225,13 @@ export default { }, "player_objectives_aggregate_fields": { "avg": [ - 3344 + 3092 ], "count": [ 38, { "columns": [ - 3358, + 3106, "[player_objectives_select_column!]" ], "distinct": [ @@ -76893,31 +73240,31 @@ export default { } ], "max": [ - 3350 + 3098 ], "min": [ - 3352 + 3100 ], "stddev": [ - 3360 + 3108 ], "stddev_pop": [ - 3362 + 3110 ], "stddev_samp": [ - 3364 + 3112 ], "sum": [ - 3368 + 3116 ], "var_pop": [ - 3372 + 3120 ], "var_samp": [ - 3374 + 3122 ], "variance": [ - 3376 + 3124 ], "__typename": [ 78 @@ -76925,37 +73272,37 @@ export default { }, "player_objectives_aggregate_order_by": { "avg": [ - 3345 + 3093 ], "count": [ - 2781 + 2529 ], "max": [ - 3351 + 3099 ], "min": [ - 3353 + 3101 ], "stddev": [ - 3361 + 3109 ], "stddev_pop": [ - 3363 + 3111 ], "stddev_samp": [ - 3365 + 3113 ], "sum": [ - 3369 + 3117 ], "var_pop": [ - 3373 + 3121 ], "var_samp": [ - 3375 + 3123 ], "variance": [ - 3377 + 3125 ], "__typename": [ 78 @@ -76963,10 +73310,10 @@ export default { }, "player_objectives_arr_rel_insert_input": { "data": [ - 3349 + 3097 ], "on_conflict": [ - 3355 + 3103 ], "__typename": [ 78 @@ -76985,10 +73332,10 @@ export default { }, "player_objectives_avg_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -76996,31 +73343,31 @@ export default { }, "player_objectives_bool_exp": { "_and": [ - 3346 + 3094 ], "_not": [ - 3346 + 3094 ], "_or": [ - 3346 + 3094 ], "deleted_at": [ - 4325 + 4077 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "player": [ - 3743 + 3491 ], "player_steam_id": [ 182 @@ -77029,10 +73376,10 @@ export default { 39 ], "time": [ - 4325 + 4077 ], "type": [ - 902 + 889 ], "__typename": [ 78 @@ -77052,22 +73399,22 @@ export default { }, "player_objectives_insert_input": { "deleted_at": [ - 4324 + 4076 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2452 + 2200 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3750 + 3498 ], "player_steam_id": [ 180 @@ -77076,10 +73423,10 @@ export default { 38 ], "time": [ - 4324 + 4076 ], "type": [ - 901 + 888 ], "__typename": [ 78 @@ -77087,13 +73434,13 @@ export default { }, "player_objectives_max_fields": { "deleted_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "player_steam_id": [ 180 @@ -77102,7 +73449,7 @@ export default { 38 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -77110,22 +73457,22 @@ export default { }, "player_objectives_max_order_by": { "deleted_at": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "__typename": [ 78 @@ -77133,13 +73480,13 @@ export default { }, "player_objectives_min_fields": { "deleted_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "player_steam_id": [ 180 @@ -77148,7 +73495,7 @@ export default { 38 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -77156,22 +73503,22 @@ export default { }, "player_objectives_min_order_by": { "deleted_at": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "__typename": [ 78 @@ -77182,7 +73529,7 @@ export default { 38 ], "returning": [ - 3337 + 3085 ], "__typename": [ 78 @@ -77190,13 +73537,13 @@ export default { }, "player_objectives_on_conflict": { "constraint": [ - 3347 + 3095 ], "update_columns": [ - 3370 + 3118 ], "where": [ - 3346 + 3094 ], "__typename": [ 78 @@ -77204,34 +73551,34 @@ export default { }, "player_objectives_order_by": { "deleted_at": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "__typename": [ 78 @@ -77239,13 +73586,13 @@ export default { }, "player_objectives_pk_columns_input": { "match_map_id": [ - 4762 + 4621 ], "player_steam_id": [ 180 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -77254,13 +73601,13 @@ export default { "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "player_steam_id": [ 180 @@ -77269,10 +73616,10 @@ export default { 38 ], "time": [ - 4324 + 4076 ], "type": [ - 901 + 888 ], "__typename": [ 78 @@ -77291,10 +73638,10 @@ export default { }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -77313,10 +73660,10 @@ export default { }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -77335,10 +73682,10 @@ export default { }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -77346,7 +73693,7 @@ export default { }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3367 + 3115 ], "ordering": [ 236 @@ -77357,13 +73704,13 @@ export default { }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "player_steam_id": [ 180 @@ -77372,10 +73719,10 @@ export default { 38 ], "time": [ - 4324 + 4076 ], "type": [ - 901 + 888 ], "__typename": [ 78 @@ -77394,10 +73741,10 @@ export default { }, "player_objectives_sum_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -77406,13 +73753,13 @@ export default { "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3348 + 3096 ], "_set": [ - 3359 + 3107 ], "where": [ - 3346 + 3094 ], "__typename": [ 78 @@ -77431,10 +73778,10 @@ export default { }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -77453,10 +73800,10 @@ export default { }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -77475,10 +73822,10 @@ export default { }, "player_objectives_variance_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -77486,13 +73833,13 @@ export default { }, "player_performance_v": { "accuracy_score": [ - 1499 + 1248 ], "aim_goal": [ - 1499 + 1248 ], "aim_rating": [ - 1499 + 1248 ], "band": [ 38 @@ -77501,31 +73848,31 @@ export default { 180 ], "blind_score": [ - 1499 + 1248 ], "counter_strafe_score": [ - 1499 + 1248 ], "crosshair_score": [ - 1499 + 1248 ], "flash_assists_score": [ - 1499 + 1248 ], "hs_score": [ - 1499 + 1248 ], "kast_score": [ - 1499 + 1248 ], "maps": [ 38 ], "positioning_goal": [ - 1499 + 1248 ], "positioning_rating": [ - 1499 + 1248 ], "premier_rank": [ 38 @@ -77534,28 +73881,28 @@ export default { 38 ], "spotted_score": [ - 1499 + 1248 ], "steam_id": [ 180 ], "survival_score": [ - 1499 + 1248 ], "traded_score": [ - 1499 + 1248 ], "ttd_score": [ - 1499 + 1248 ], "util_eff_score": [ - 1499 + 1248 ], "utility_goal": [ - 1499 + 1248 ], "utility_rating": [ - 1499 + 1248 ], "__typename": [ 78 @@ -77563,10 +73910,10 @@ export default { }, "player_performance_v_aggregate": { "aggregate": [ - 3380 + 3128 ], "nodes": [ - 3378 + 3126 ], "__typename": [ 78 @@ -77574,13 +73921,13 @@ export default { }, "player_performance_v_aggregate_fields": { "avg": [ - 3381 + 3129 ], "count": [ 38, { "columns": [ - 3386, + 3134, "[player_performance_v_select_column!]" ], "distinct": [ @@ -77589,31 +73936,31 @@ export default { } ], "max": [ - 3383 + 3131 ], "min": [ - 3384 + 3132 ], "stddev": [ - 3387 + 3135 ], "stddev_pop": [ - 3388 + 3136 ], "stddev_samp": [ - 3389 + 3137 ], "sum": [ - 3392 + 3140 ], "var_pop": [ - 3393 + 3141 ], "var_samp": [ - 3394 + 3142 ], "variance": [ - 3395 + 3143 ], "__typename": [ 78 @@ -77698,22 +74045,22 @@ export default { }, "player_performance_v_bool_exp": { "_and": [ - 3382 + 3130 ], "_not": [ - 3382 + 3130 ], "_or": [ - 3382 + 3130 ], "accuracy_score": [ - 1500 + 1249 ], "aim_goal": [ - 1500 + 1249 ], "aim_rating": [ - 1500 + 1249 ], "band": [ 39 @@ -77722,31 +74069,31 @@ export default { 182 ], "blind_score": [ - 1500 + 1249 ], "counter_strafe_score": [ - 1500 + 1249 ], "crosshair_score": [ - 1500 + 1249 ], "flash_assists_score": [ - 1500 + 1249 ], "hs_score": [ - 1500 + 1249 ], "kast_score": [ - 1500 + 1249 ], "maps": [ 39 ], "positioning_goal": [ - 1500 + 1249 ], "positioning_rating": [ - 1500 + 1249 ], "premier_rank": [ 39 @@ -77755,28 +74102,28 @@ export default { 39 ], "spotted_score": [ - 1500 + 1249 ], "steam_id": [ 182 ], "survival_score": [ - 1500 + 1249 ], "traded_score": [ - 1500 + 1249 ], "ttd_score": [ - 1500 + 1249 ], "util_eff_score": [ - 1500 + 1249 ], "utility_goal": [ - 1500 + 1249 ], "utility_rating": [ - 1500 + 1249 ], "__typename": [ 78 @@ -77784,13 +74131,13 @@ export default { }, "player_performance_v_max_fields": { "accuracy_score": [ - 1499 + 1248 ], "aim_goal": [ - 1499 + 1248 ], "aim_rating": [ - 1499 + 1248 ], "band": [ 38 @@ -77799,31 +74146,31 @@ export default { 180 ], "blind_score": [ - 1499 + 1248 ], "counter_strafe_score": [ - 1499 + 1248 ], "crosshair_score": [ - 1499 + 1248 ], "flash_assists_score": [ - 1499 + 1248 ], "hs_score": [ - 1499 + 1248 ], "kast_score": [ - 1499 + 1248 ], "maps": [ 38 ], "positioning_goal": [ - 1499 + 1248 ], "positioning_rating": [ - 1499 + 1248 ], "premier_rank": [ 38 @@ -77832,28 +74179,28 @@ export default { 38 ], "spotted_score": [ - 1499 + 1248 ], "steam_id": [ 180 ], "survival_score": [ - 1499 + 1248 ], "traded_score": [ - 1499 + 1248 ], "ttd_score": [ - 1499 + 1248 ], "util_eff_score": [ - 1499 + 1248 ], "utility_goal": [ - 1499 + 1248 ], "utility_rating": [ - 1499 + 1248 ], "__typename": [ 78 @@ -77861,13 +74208,13 @@ export default { }, "player_performance_v_min_fields": { "accuracy_score": [ - 1499 + 1248 ], "aim_goal": [ - 1499 + 1248 ], "aim_rating": [ - 1499 + 1248 ], "band": [ 38 @@ -77876,31 +74223,31 @@ export default { 180 ], "blind_score": [ - 1499 + 1248 ], "counter_strafe_score": [ - 1499 + 1248 ], "crosshair_score": [ - 1499 + 1248 ], "flash_assists_score": [ - 1499 + 1248 ], "hs_score": [ - 1499 + 1248 ], "kast_score": [ - 1499 + 1248 ], "maps": [ 38 ], "positioning_goal": [ - 1499 + 1248 ], "positioning_rating": [ - 1499 + 1248 ], "premier_rank": [ 38 @@ -77909,28 +74256,28 @@ export default { 38 ], "spotted_score": [ - 1499 + 1248 ], "steam_id": [ 180 ], "survival_score": [ - 1499 + 1248 ], "traded_score": [ - 1499 + 1248 ], "ttd_score": [ - 1499 + 1248 ], "util_eff_score": [ - 1499 + 1248 ], "utility_goal": [ - 1499 + 1248 ], "utility_rating": [ - 1499 + 1248 ], "__typename": [ 78 @@ -77938,76 +74285,76 @@ export default { }, "player_performance_v_order_by": { "accuracy_score": [ - 2781 + 2529 ], "aim_goal": [ - 2781 + 2529 ], "aim_rating": [ - 2781 + 2529 ], "band": [ - 2781 + 2529 ], "band_sample": [ - 2781 + 2529 ], "blind_score": [ - 2781 + 2529 ], "counter_strafe_score": [ - 2781 + 2529 ], "crosshair_score": [ - 2781 + 2529 ], "flash_assists_score": [ - 2781 + 2529 ], "hs_score": [ - 2781 + 2529 ], "kast_score": [ - 2781 + 2529 ], "maps": [ - 2781 + 2529 ], "positioning_goal": [ - 2781 + 2529 ], "positioning_rating": [ - 2781 + 2529 ], "premier_rank": [ - 2781 + 2529 ], "rounds": [ - 2781 + 2529 ], "spotted_score": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "survival_score": [ - 2781 + 2529 ], "traded_score": [ - 2781 + 2529 ], "ttd_score": [ - 2781 + 2529 ], "util_eff_score": [ - 2781 + 2529 ], "utility_goal": [ - 2781 + 2529 ], "utility_rating": [ - 2781 + 2529 ], "__typename": [ 78 @@ -78247,7 +74594,7 @@ export default { }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3391 + 3139 ], "ordering": [ 236 @@ -78258,13 +74605,13 @@ export default { }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1499 + 1248 ], "aim_goal": [ - 1499 + 1248 ], "aim_rating": [ - 1499 + 1248 ], "band": [ 38 @@ -78273,31 +74620,31 @@ export default { 180 ], "blind_score": [ - 1499 + 1248 ], "counter_strafe_score": [ - 1499 + 1248 ], "crosshair_score": [ - 1499 + 1248 ], "flash_assists_score": [ - 1499 + 1248 ], "hs_score": [ - 1499 + 1248 ], "kast_score": [ - 1499 + 1248 ], "maps": [ 38 ], "positioning_goal": [ - 1499 + 1248 ], "positioning_rating": [ - 1499 + 1248 ], "premier_rank": [ 38 @@ -78306,28 +74653,28 @@ export default { 38 ], "spotted_score": [ - 1499 + 1248 ], "steam_id": [ 180 ], "survival_score": [ - 1499 + 1248 ], "traded_score": [ - 1499 + 1248 ], "ttd_score": [ - 1499 + 1248 ], "util_eff_score": [ - 1499 + 1248 ], "utility_goal": [ - 1499 + 1248 ], "utility_rating": [ - 1499 + 1248 ], "__typename": [ 78 @@ -78335,13 +74682,13 @@ export default { }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1499 + 1248 ], "aim_goal": [ - 1499 + 1248 ], "aim_rating": [ - 1499 + 1248 ], "band": [ 38 @@ -78350,31 +74697,31 @@ export default { 180 ], "blind_score": [ - 1499 + 1248 ], "counter_strafe_score": [ - 1499 + 1248 ], "crosshair_score": [ - 1499 + 1248 ], "flash_assists_score": [ - 1499 + 1248 ], "hs_score": [ - 1499 + 1248 ], "kast_score": [ - 1499 + 1248 ], "maps": [ 38 ], "positioning_goal": [ - 1499 + 1248 ], "positioning_rating": [ - 1499 + 1248 ], "premier_rank": [ 38 @@ -78383,28 +74730,28 @@ export default { 38 ], "spotted_score": [ - 1499 + 1248 ], "steam_id": [ 180 ], "survival_score": [ - 1499 + 1248 ], "traded_score": [ - 1499 + 1248 ], "ttd_score": [ - 1499 + 1248 ], "util_eff_score": [ - 1499 + 1248 ], "utility_goal": [ - 1499 + 1248 ], "utility_rating": [ - 1499 + 1248 ], "__typename": [ 78 @@ -78643,25 +74990,25 @@ export default { }, "player_premier_rank_history": { "id": [ - 4762 + 4621 ], "map": [ - 2114 + 1862 ], "map_id": [ - 4762 + 4621 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "observed_at": [ - 4324 + 4076 ], "player": [ - 3739 + 3487 ], "previous_rank": [ 38 @@ -78681,10 +75028,10 @@ export default { }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3400 + 3148 ], "nodes": [ - 3396 + 3144 ], "__typename": [ 78 @@ -78692,7 +75039,7 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3399 + 3147 ], "__typename": [ 78 @@ -78700,13 +75047,13 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3417 + 3165 ], "distinct": [ 3 ], "filter": [ - 3405 + 3153 ], "predicate": [ 39 @@ -78717,13 +75064,13 @@ export default { }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3403 + 3151 ], "count": [ 38, { "columns": [ - 3417, + 3165, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -78732,31 +75079,31 @@ export default { } ], "max": [ - 3409 + 3157 ], "min": [ - 3411 + 3159 ], "stddev": [ - 3419 + 3167 ], "stddev_pop": [ - 3421 + 3169 ], "stddev_samp": [ - 3423 + 3171 ], "sum": [ - 3427 + 3175 ], "var_pop": [ - 3431 + 3179 ], "var_samp": [ - 3433 + 3181 ], "variance": [ - 3435 + 3183 ], "__typename": [ 78 @@ -78764,37 +75111,37 @@ export default { }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 3404 + 3152 ], "count": [ - 2781 + 2529 ], "max": [ - 3410 + 3158 ], "min": [ - 3412 + 3160 ], "stddev": [ - 3420 + 3168 ], "stddev_pop": [ - 3422 + 3170 ], "stddev_samp": [ - 3424 + 3172 ], "sum": [ - 3428 + 3176 ], "var_pop": [ - 3432 + 3180 ], "var_samp": [ - 3434 + 3182 ], "variance": [ - 3436 + 3184 ], "__typename": [ 78 @@ -78802,10 +75149,10 @@ export default { }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3408 + 3156 ], "on_conflict": [ - 3414 + 3162 ], "__typename": [ 78 @@ -78830,16 +75177,16 @@ export default { }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rank_type": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -78847,34 +75194,34 @@ export default { }, "player_premier_rank_history_bool_exp": { "_and": [ - 3405 + 3153 ], "_not": [ - 3405 + 3153 ], "_or": [ - 3405 + 3153 ], "id": [ - 4764 + 4623 ], "map": [ - 2123 + 1871 ], "map_id": [ - 4764 + 4623 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "observed_at": [ - 4325 + 4077 ], "player": [ - 3743 + 3491 ], "previous_rank": [ 39 @@ -78912,25 +75259,25 @@ export default { }, "player_premier_rank_history_insert_input": { "id": [ - 4762 + 4621 ], "map": [ - 2131 + 1879 ], "map_id": [ - 4762 + 4621 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "observed_at": [ - 4324 + 4076 ], "player": [ - 3750 + 3498 ], "previous_rank": [ 38 @@ -78950,16 +75297,16 @@ export default { }, "player_premier_rank_history_max_fields": { "id": [ - 4762 + 4621 ], "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "observed_at": [ - 4324 + 4076 ], "previous_rank": [ 38 @@ -78979,28 +75326,28 @@ export default { }, "player_premier_rank_history_max_order_by": { "id": [ - 2781 + 2529 ], "map_id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "observed_at": [ - 2781 + 2529 ], "previous_rank": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rank_type": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -79008,16 +75355,16 @@ export default { }, "player_premier_rank_history_min_fields": { "id": [ - 4762 + 4621 ], "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "observed_at": [ - 4324 + 4076 ], "previous_rank": [ 38 @@ -79037,28 +75384,28 @@ export default { }, "player_premier_rank_history_min_order_by": { "id": [ - 2781 + 2529 ], "map_id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "observed_at": [ - 2781 + 2529 ], "previous_rank": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rank_type": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -79069,7 +75416,7 @@ export default { 38 ], "returning": [ - 3396 + 3144 ], "__typename": [ 78 @@ -79077,13 +75424,13 @@ export default { }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3406 + 3154 ], "update_columns": [ - 3429 + 3177 ], "where": [ - 3405 + 3153 ], "__typename": [ 78 @@ -79091,37 +75438,37 @@ export default { }, "player_premier_rank_history_order_by": { "id": [ - 2781 + 2529 ], "map": [ - 2133 + 1881 ], "map_id": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "observed_at": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "previous_rank": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rank_type": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -79129,7 +75476,7 @@ export default { }, "player_premier_rank_history_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -79138,16 +75485,16 @@ export default { "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 4762 + 4621 ], "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "observed_at": [ - 4324 + 4076 ], "previous_rank": [ 38 @@ -79184,16 +75531,16 @@ export default { }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rank_type": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -79218,16 +75565,16 @@ export default { }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rank_type": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -79252,16 +75599,16 @@ export default { }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rank_type": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -79269,7 +75616,7 @@ export default { }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3426 + 3174 ], "ordering": [ 236 @@ -79280,16 +75627,16 @@ export default { }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 4762 + 4621 ], "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "observed_at": [ - 4324 + 4076 ], "previous_rank": [ 38 @@ -79326,16 +75673,16 @@ export default { }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rank_type": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -79344,13 +75691,13 @@ export default { "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3407 + 3155 ], "_set": [ - 3418 + 3166 ], "where": [ - 3405 + 3153 ], "__typename": [ 78 @@ -79375,16 +75722,16 @@ export default { }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rank_type": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -79409,16 +75756,16 @@ export default { }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rank_type": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -79443,16 +75790,16 @@ export default { }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rank_type": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -79460,19 +75807,19 @@ export default { }, "player_sanctions": { "created_at": [ - 4324 + 4076 ], "deleted_at": [ - 4324 + 4076 ], "e_sanction_type": [ - 976 + 963 ], "id": [ - 4762 + 4621 ], "player": [ - 3739 + 3487 ], "player_steam_id": [ 180 @@ -79481,16 +75828,16 @@ export default { 78 ], "remove_sanction_date": [ - 4324 + 4076 ], "sanctioned_by": [ - 3739 + 3487 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 981 + 968 ], "__typename": [ 78 @@ -79498,10 +75845,10 @@ export default { }, "player_sanctions_aggregate": { "aggregate": [ - 3441 + 3189 ], "nodes": [ - 3437 + 3185 ], "__typename": [ 78 @@ -79509,7 +75856,7 @@ export default { }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3440 + 3188 ], "__typename": [ 78 @@ -79517,13 +75864,13 @@ export default { }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3458 + 3206 ], "distinct": [ 3 ], "filter": [ - 3446 + 3194 ], "predicate": [ 39 @@ -79534,13 +75881,13 @@ export default { }, "player_sanctions_aggregate_fields": { "avg": [ - 3444 + 3192 ], "count": [ 38, { "columns": [ - 3458, + 3206, "[player_sanctions_select_column!]" ], "distinct": [ @@ -79549,31 +75896,31 @@ export default { } ], "max": [ - 3450 + 3198 ], "min": [ - 3452 + 3200 ], "stddev": [ - 3460 + 3208 ], "stddev_pop": [ - 3462 + 3210 ], "stddev_samp": [ - 3464 + 3212 ], "sum": [ - 3468 + 3216 ], "var_pop": [ - 3472 + 3220 ], "var_samp": [ - 3474 + 3222 ], "variance": [ - 3476 + 3224 ], "__typename": [ 78 @@ -79581,37 +75928,37 @@ export default { }, "player_sanctions_aggregate_order_by": { "avg": [ - 3445 + 3193 ], "count": [ - 2781 + 2529 ], "max": [ - 3451 + 3199 ], "min": [ - 3453 + 3201 ], "stddev": [ - 3461 + 3209 ], "stddev_pop": [ - 3463 + 3211 ], "stddev_samp": [ - 3465 + 3213 ], "sum": [ - 3469 + 3217 ], "var_pop": [ - 3473 + 3221 ], "var_samp": [ - 3475 + 3223 ], "variance": [ - 3477 + 3225 ], "__typename": [ 78 @@ -79619,10 +75966,10 @@ export default { }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3449 + 3197 ], "on_conflict": [ - 3455 + 3203 ], "__typename": [ 78 @@ -79641,10 +75988,10 @@ export default { }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 2781 + 2529 ], "sanctioned_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -79652,28 +75999,28 @@ export default { }, "player_sanctions_bool_exp": { "_and": [ - 3446 + 3194 ], "_not": [ - 3446 + 3194 ], "_or": [ - 3446 + 3194 ], "created_at": [ - 4325 + 4077 ], "deleted_at": [ - 4325 + 4077 ], "e_sanction_type": [ - 979 + 966 ], "id": [ - 4764 + 4623 ], "player": [ - 3743 + 3491 ], "player_steam_id": [ 182 @@ -79682,16 +76029,16 @@ export default { 80 ], "remove_sanction_date": [ - 4325 + 4077 ], "sanctioned_by": [ - 3743 + 3491 ], "sanctioned_by_steam_id": [ 182 ], "type": [ - 982 + 969 ], "__typename": [ 78 @@ -79711,19 +76058,19 @@ export default { }, "player_sanctions_insert_input": { "created_at": [ - 4324 + 4076 ], "deleted_at": [ - 4324 + 4076 ], "e_sanction_type": [ - 987 + 974 ], "id": [ - 4762 + 4621 ], "player": [ - 3750 + 3498 ], "player_steam_id": [ 180 @@ -79732,16 +76079,16 @@ export default { 78 ], "remove_sanction_date": [ - 4324 + 4076 ], "sanctioned_by": [ - 3750 + 3498 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 981 + 968 ], "__typename": [ 78 @@ -79749,13 +76096,13 @@ export default { }, "player_sanctions_max_fields": { "created_at": [ - 4324 + 4076 ], "deleted_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "player_steam_id": [ 180 @@ -79764,7 +76111,7 @@ export default { 78 ], "remove_sanction_date": [ - 4324 + 4076 ], "sanctioned_by_steam_id": [ 180 @@ -79775,25 +76122,25 @@ export default { }, "player_sanctions_max_order_by": { "created_at": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "reason": [ - 2781 + 2529 ], "remove_sanction_date": [ - 2781 + 2529 ], "sanctioned_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -79801,13 +76148,13 @@ export default { }, "player_sanctions_min_fields": { "created_at": [ - 4324 + 4076 ], "deleted_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "player_steam_id": [ 180 @@ -79816,7 +76163,7 @@ export default { 78 ], "remove_sanction_date": [ - 4324 + 4076 ], "sanctioned_by_steam_id": [ 180 @@ -79827,25 +76174,25 @@ export default { }, "player_sanctions_min_order_by": { "created_at": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "reason": [ - 2781 + 2529 ], "remove_sanction_date": [ - 2781 + 2529 ], "sanctioned_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -79856,7 +76203,7 @@ export default { 38 ], "returning": [ - 3437 + 3185 ], "__typename": [ 78 @@ -79864,13 +76211,13 @@ export default { }, "player_sanctions_on_conflict": { "constraint": [ - 3447 + 3195 ], "update_columns": [ - 3470 + 3218 ], "where": [ - 3446 + 3194 ], "__typename": [ 78 @@ -79878,37 +76225,37 @@ export default { }, "player_sanctions_order_by": { "created_at": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "e_sanction_type": [ - 989 + 976 ], "id": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "player_steam_id": [ - 2781 + 2529 ], "reason": [ - 2781 + 2529 ], "remove_sanction_date": [ - 2781 + 2529 ], "sanctioned_by": [ - 3752 + 3500 ], "sanctioned_by_steam_id": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "__typename": [ 78 @@ -79916,10 +76263,10 @@ export default { }, "player_sanctions_pk_columns_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -79928,13 +76275,13 @@ export default { "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4324 + 4076 ], "deleted_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "player_steam_id": [ 180 @@ -79943,13 +76290,13 @@ export default { 78 ], "remove_sanction_date": [ - 4324 + 4076 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 981 + 968 ], "__typename": [ 78 @@ -79968,10 +76315,10 @@ export default { }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 2781 + 2529 ], "sanctioned_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -79990,10 +76337,10 @@ export default { }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 2781 + 2529 ], "sanctioned_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -80012,10 +76359,10 @@ export default { }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 2781 + 2529 ], "sanctioned_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -80023,7 +76370,7 @@ export default { }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3467 + 3215 ], "ordering": [ 236 @@ -80034,13 +76381,13 @@ export default { }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "deleted_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "player_steam_id": [ 180 @@ -80049,13 +76396,13 @@ export default { 78 ], "remove_sanction_date": [ - 4324 + 4076 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 981 + 968 ], "__typename": [ 78 @@ -80074,10 +76421,10 @@ export default { }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 2781 + 2529 ], "sanctioned_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -80086,13 +76433,13 @@ export default { "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3448 + 3196 ], "_set": [ - 3459 + 3207 ], "where": [ - 3446 + 3194 ], "__typename": [ 78 @@ -80111,10 +76458,10 @@ export default { }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 2781 + 2529 ], "sanctioned_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -80133,10 +76480,10 @@ export default { }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 2781 + 2529 ], "sanctioned_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -80155,10 +76502,10 @@ export default { }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 2781 + 2529 ], "sanctioned_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -80172,7 +76519,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -80181,16 +76528,16 @@ export default { 180 ], "player": [ - 3739 + 3487 ], "player_steam_id": [ 180 ], "season": [ - 3798 + 3546 ], "season_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -80198,10 +76545,10 @@ export default { }, "player_season_stats_aggregate": { "aggregate": [ - 3492 + 3240 ], "nodes": [ - 3478 + 3226 ], "__typename": [ 78 @@ -80209,31 +76556,31 @@ export default { }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3481 + 3229 ], "corr": [ - 3482 + 3230 ], "count": [ - 3484 + 3232 ], "covar_samp": [ - 3485 + 3233 ], "max": [ - 3487 + 3235 ], "min": [ - 3488 + 3236 ], "stddev_samp": [ - 3489 + 3237 ], "sum": [ - 3490 + 3238 ], "var_samp": [ - 3491 + 3239 ], "__typename": [ 78 @@ -80241,16 +76588,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3510 + 3258 ], "distinct": [ 3 ], "filter": [ - 3497 + 3245 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -80258,16 +76605,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3483 + 3231 ], "distinct": [ 3 ], "filter": [ - 3497 + 3245 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -80275,10 +76622,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3511 + 3259 ], "Y": [ - 3511 + 3259 ], "__typename": [ 78 @@ -80286,13 +76633,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3509 + 3257 ], "distinct": [ 3 ], "filter": [ - 3497 + 3245 ], "predicate": [ 39 @@ -80303,16 +76650,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3486 + 3234 ], "distinct": [ 3 ], "filter": [ - 3497 + 3245 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -80320,10 +76667,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3512 + 3260 ], "Y": [ - 3512 + 3260 ], "__typename": [ 78 @@ -80331,16 +76678,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3513 + 3261 ], "distinct": [ 3 ], "filter": [ - 3497 + 3245 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -80348,16 +76695,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3514 + 3262 ], "distinct": [ 3 ], "filter": [ - 3497 + 3245 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -80365,16 +76712,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3515 + 3263 ], "distinct": [ 3 ], "filter": [ - 3497 + 3245 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -80382,16 +76729,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3516 + 3264 ], "distinct": [ 3 ], "filter": [ - 3497 + 3245 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -80399,16 +76746,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3517 + 3265 ], "distinct": [ 3 ], "filter": [ - 3497 + 3245 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -80416,13 +76763,13 @@ export default { }, "player_season_stats_aggregate_fields": { "avg": [ - 3495 + 3243 ], "count": [ 38, { "columns": [ - 3509, + 3257, "[player_season_stats_select_column!]" ], "distinct": [ @@ -80431,31 +76778,31 @@ export default { } ], "max": [ - 3501 + 3249 ], "min": [ - 3503 + 3251 ], "stddev": [ - 3519 + 3267 ], "stddev_pop": [ - 3521 + 3269 ], "stddev_samp": [ - 3523 + 3271 ], "sum": [ - 3527 + 3275 ], "var_pop": [ - 3531 + 3279 ], "var_samp": [ - 3533 + 3281 ], "variance": [ - 3535 + 3283 ], "__typename": [ 78 @@ -80463,37 +76810,37 @@ export default { }, "player_season_stats_aggregate_order_by": { "avg": [ - 3496 + 3244 ], "count": [ - 2781 + 2529 ], "max": [ - 3502 + 3250 ], "min": [ - 3504 + 3252 ], "stddev": [ - 3520 + 3268 ], "stddev_pop": [ - 3522 + 3270 ], "stddev_samp": [ - 3524 + 3272 ], "sum": [ - 3528 + 3276 ], "var_pop": [ - 3532 + 3280 ], "var_samp": [ - 3534 + 3282 ], "variance": [ - 3536 + 3284 ], "__typename": [ 78 @@ -80501,10 +76848,10 @@ export default { }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3500 + 3248 ], "on_conflict": [ - 3506 + 3254 ], "__typename": [ 78 @@ -80535,22 +76882,22 @@ export default { }, "player_season_stats_avg_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -80558,13 +76905,13 @@ export default { }, "player_season_stats_bool_exp": { "_and": [ - 3497 + 3245 ], "_not": [ - 3497 + 3245 ], "_or": [ - 3497 + 3245 ], "assists": [ 182 @@ -80573,7 +76920,7 @@ export default { 182 ], "headshot_percentage": [ - 1500 + 1249 ], "headshots": [ 182 @@ -80582,16 +76929,16 @@ export default { 182 ], "player": [ - 3743 + 3491 ], "player_steam_id": [ 182 ], "season": [ - 3802 + 3550 ], "season_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -80606,7 +76953,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -80629,7 +76976,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -80638,16 +76985,16 @@ export default { 180 ], "player": [ - 3750 + 3498 ], "player_steam_id": [ 180 ], "season": [ - 3809 + 3557 ], "season_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -80661,7 +77008,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -80673,7 +77020,7 @@ export default { 180 ], "season_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -80681,25 +77028,25 @@ export default { }, "player_season_stats_max_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "season_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -80713,7 +77060,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -80725,7 +77072,7 @@ export default { 180 ], "season_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -80733,25 +77080,25 @@ export default { }, "player_season_stats_min_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "season_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -80762,7 +77109,7 @@ export default { 38 ], "returning": [ - 3478 + 3226 ], "__typename": [ 78 @@ -80770,13 +77117,13 @@ export default { }, "player_season_stats_on_conflict": { "constraint": [ - 3498 + 3246 ], "update_columns": [ - 3529 + 3277 ], "where": [ - 3497 + 3245 ], "__typename": [ 78 @@ -80784,31 +77131,31 @@ export default { }, "player_season_stats_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "player_steam_id": [ - 2781 + 2529 ], "season": [ - 3811 + 3559 ], "season_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -80819,7 +77166,7 @@ export default { 180 ], "season_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -80842,7 +77189,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -80854,7 +77201,7 @@ export default { 180 ], "season_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -80885,22 +77232,22 @@ export default { }, "player_season_stats_stddev_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -80931,22 +77278,22 @@ export default { }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -80977,22 +77324,22 @@ export default { }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -81000,7 +77347,7 @@ export default { }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3526 + 3274 ], "ordering": [ 236 @@ -81017,7 +77364,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -81029,7 +77376,7 @@ export default { 180 ], "season_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -81043,7 +77390,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -81060,22 +77407,22 @@ export default { }, "player_season_stats_sum_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -81084,13 +77431,13 @@ export default { "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3499 + 3247 ], "_set": [ - 3518 + 3266 ], "where": [ - 3497 + 3245 ], "__typename": [ 78 @@ -81121,22 +77468,22 @@ export default { }, "player_season_stats_var_pop_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -81167,22 +77514,22 @@ export default { }, "player_season_stats_var_samp_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -81213,22 +77560,22 @@ export default { }, "player_season_stats_variance_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -81242,7 +77589,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -81251,7 +77598,7 @@ export default { 180 ], "player": [ - 3739 + 3487 ], "player_steam_id": [ 180 @@ -81262,10 +77609,10 @@ export default { }, "player_stats_aggregate": { "aggregate": [ - 3539 + 3287 ], "nodes": [ - 3537 + 3285 ], "__typename": [ 78 @@ -81273,13 +77620,13 @@ export default { }, "player_stats_aggregate_fields": { "avg": [ - 3540 + 3288 ], "count": [ 38, { "columns": [ - 3552, + 3300, "[player_stats_select_column!]" ], "distinct": [ @@ -81288,31 +77635,31 @@ export default { } ], "max": [ - 3545 + 3293 ], "min": [ - 3546 + 3294 ], "stddev": [ - 3554 + 3302 ], "stddev_pop": [ - 3555 + 3303 ], "stddev_samp": [ - 3556 + 3304 ], "sum": [ - 3559 + 3307 ], "var_pop": [ - 3562 + 3310 ], "var_samp": [ - 3563 + 3311 ], "variance": [ - 3564 + 3312 ], "__typename": [ 78 @@ -81343,13 +77690,13 @@ export default { }, "player_stats_bool_exp": { "_and": [ - 3541 + 3289 ], "_not": [ - 3541 + 3289 ], "_or": [ - 3541 + 3289 ], "assists": [ 182 @@ -81358,7 +77705,7 @@ export default { 182 ], "headshot_percentage": [ - 1500 + 1249 ], "headshots": [ 182 @@ -81367,7 +77714,7 @@ export default { 182 ], "player": [ - 3743 + 3491 ], "player_steam_id": [ 182 @@ -81385,7 +77732,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -81408,7 +77755,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -81417,7 +77764,7 @@ export default { 180 ], "player": [ - 3750 + 3498 ], "player_steam_id": [ 180 @@ -81434,7 +77781,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -81457,7 +77804,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -81477,7 +77824,7 @@ export default { 38 ], "returning": [ - 3537 + 3285 ], "__typename": [ 78 @@ -81485,10 +77832,10 @@ export default { }, "player_stats_obj_rel_insert_input": { "data": [ - 3544 + 3292 ], "on_conflict": [ - 3549 + 3297 ], "__typename": [ 78 @@ -81496,13 +77843,13 @@ export default { }, "player_stats_on_conflict": { "constraint": [ - 3542 + 3290 ], "update_columns": [ - 3560 + 3308 ], "where": [ - 3541 + 3289 ], "__typename": [ 78 @@ -81510,25 +77857,25 @@ export default { }, "player_stats_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -81551,7 +77898,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -81637,7 +77984,7 @@ export default { }, "player_stats_stream_cursor_input": { "initial_value": [ - 3558 + 3306 ], "ordering": [ 236 @@ -81654,7 +78001,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -81677,7 +78024,7 @@ export default { 180 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 180 @@ -81695,13 +78042,13 @@ export default { "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3543 + 3291 ], "_set": [ - 3553 + 3301 ], "where": [ - 3541 + 3289 ], "__typename": [ 78 @@ -81778,19 +78125,19 @@ export default { }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 4762 + 4621 ], "bot_steamid64": [ 180 ], "created_at": [ - 4324 + 4076 ], "friended_at": [ - 4324 + 4076 ], "last_presence_state": [ - 1652, + 1400, { "path": [ 78 @@ -81798,7 +78145,7 @@ export default { } ], "player": [ - 3739 + 3487 ], "status": [ 78 @@ -81807,7 +78154,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -81815,10 +78162,10 @@ export default { }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3567 + 3315 ], "nodes": [ - 3565 + 3313 ], "__typename": [ 78 @@ -81826,13 +78173,13 @@ export default { }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3569 + 3317 ], "count": [ 38, { "columns": [ - 3584, + 3332, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -81841,31 +78188,31 @@ export default { } ], "max": [ - 3577 + 3325 ], "min": [ - 3578 + 3326 ], "stddev": [ - 3586 + 3334 ], "stddev_pop": [ - 3587 + 3335 ], "stddev_samp": [ - 3588 + 3336 ], "sum": [ - 3591 + 3339 ], "var_pop": [ - 3594 + 3342 ], "var_samp": [ - 3595 + 3343 ], "variance": [ - 3596 + 3344 ], "__typename": [ 78 @@ -81873,7 +78220,7 @@ export default { }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 1652 + 1400 ], "__typename": [ 78 @@ -81892,31 +78239,31 @@ export default { }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3570 + 3318 ], "_not": [ - 3570 + 3318 ], "_or": [ - 3570 + 3318 ], "bot_steam_account_id": [ - 4764 + 4623 ], "bot_steamid64": [ 182 ], "created_at": [ - 4325 + 4077 ], "friended_at": [ - 4325 + 4077 ], "last_presence_state": [ - 1654 + 1402 ], "player": [ - 3743 + 3491 ], "status": [ 80 @@ -81925,7 +78272,7 @@ export default { 182 ], "updated_at": [ - 4325 + 4077 ], "__typename": [ 78 @@ -81969,22 +78316,22 @@ export default { }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 4762 + 4621 ], "bot_steamid64": [ 180 ], "created_at": [ - 4324 + 4076 ], "friended_at": [ - 4324 + 4076 ], "last_presence_state": [ - 1652 + 1400 ], "player": [ - 3750 + 3498 ], "status": [ 78 @@ -81993,7 +78340,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -82001,16 +78348,16 @@ export default { }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 4762 + 4621 ], "bot_steamid64": [ 180 ], "created_at": [ - 4324 + 4076 ], "friended_at": [ - 4324 + 4076 ], "status": [ 78 @@ -82019,7 +78366,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -82027,16 +78374,16 @@ export default { }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 4762 + 4621 ], "bot_steamid64": [ 180 ], "created_at": [ - 4324 + 4076 ], "friended_at": [ - 4324 + 4076 ], "status": [ 78 @@ -82045,7 +78392,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -82056,7 +78403,7 @@ export default { 38 ], "returning": [ - 3565 + 3313 ], "__typename": [ 78 @@ -82064,13 +78411,13 @@ export default { }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3571 + 3319 ], "update_columns": [ - 3592 + 3340 ], "where": [ - 3570 + 3318 ], "__typename": [ 78 @@ -82078,31 +78425,31 @@ export default { }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 2781 + 2529 ], "bot_steamid64": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "friended_at": [ - 2781 + 2529 ], "last_presence_state": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "status": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "__typename": [ 78 @@ -82118,7 +78465,7 @@ export default { }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 1652 + 1400 ], "__typename": [ 78 @@ -82127,19 +78474,19 @@ export default { "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 4762 + 4621 ], "bot_steamid64": [ 180 ], "created_at": [ - 4324 + 4076 ], "friended_at": [ - 4324 + 4076 ], "last_presence_state": [ - 1652 + 1400 ], "status": [ 78 @@ -82148,7 +78495,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -82189,7 +78536,7 @@ export default { }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3590 + 3338 ], "ordering": [ 236 @@ -82200,19 +78547,19 @@ export default { }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 4762 + 4621 ], "bot_steamid64": [ 180 ], "created_at": [ - 4324 + 4076 ], "friended_at": [ - 4324 + 4076 ], "last_presence_state": [ - 1652 + 1400 ], "status": [ 78 @@ -82221,7 +78568,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -82241,28 +78588,28 @@ export default { "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3568 + 3316 ], "_delete_at_path": [ - 3572 + 3320 ], "_delete_elem": [ - 3573 + 3321 ], "_delete_key": [ - 3574 + 3322 ], "_inc": [ - 3575 + 3323 ], "_prepend": [ - 3583 + 3331 ], "_set": [ - 3585 + 3333 ], "where": [ - 3570 + 3318 ], "__typename": [ 78 @@ -82306,7 +78653,7 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "last_error": [ 78 @@ -82315,16 +78662,16 @@ export default { 78 ], "last_polled_at": [ - 4324 + 4076 ], "player": [ - 3739 + 3487 ], "steam_id": [ 180 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -82332,10 +78679,10 @@ export default { }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3599 + 3347 ], "nodes": [ - 3597 + 3345 ], "__typename": [ 78 @@ -82343,13 +78690,13 @@ export default { }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3600 + 3348 ], "count": [ 38, { "columns": [ - 3611, + 3359, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -82358,31 +78705,31 @@ export default { } ], "max": [ - 3605 + 3353 ], "min": [ - 3606 + 3354 ], "stddev": [ - 3613 + 3361 ], "stddev_pop": [ - 3614 + 3362 ], "stddev_samp": [ - 3615 + 3363 ], "sum": [ - 3618 + 3366 ], "var_pop": [ - 3621 + 3369 ], "var_samp": [ - 3622 + 3370 ], "variance": [ - 3623 + 3371 ], "__typename": [ 78 @@ -82398,19 +78745,19 @@ export default { }, "player_steam_match_auth_bool_exp": { "_and": [ - 3601 + 3349 ], "_not": [ - 3601 + 3349 ], "_or": [ - 3601 + 3349 ], "auth_code": [ 80 ], "created_at": [ - 4325 + 4077 ], "last_error": [ 80 @@ -82419,16 +78766,16 @@ export default { 80 ], "last_polled_at": [ - 4325 + 4077 ], "player": [ - 3743 + 3491 ], "steam_id": [ 182 ], "updated_at": [ - 4325 + 4077 ], "__typename": [ 78 @@ -82448,7 +78795,7 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "last_error": [ 78 @@ -82457,16 +78804,16 @@ export default { 78 ], "last_polled_at": [ - 4324 + 4076 ], "player": [ - 3750 + 3498 ], "steam_id": [ 180 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -82477,7 +78824,7 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "last_error": [ 78 @@ -82486,13 +78833,13 @@ export default { 78 ], "last_polled_at": [ - 4324 + 4076 ], "steam_id": [ 180 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -82503,7 +78850,7 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "last_error": [ 78 @@ -82512,13 +78859,13 @@ export default { 78 ], "last_polled_at": [ - 4324 + 4076 ], "steam_id": [ 180 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -82529,7 +78876,7 @@ export default { 38 ], "returning": [ - 3597 + 3345 ], "__typename": [ 78 @@ -82537,13 +78884,13 @@ export default { }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3602 + 3350 ], "update_columns": [ - 3619 + 3367 ], "where": [ - 3601 + 3349 ], "__typename": [ 78 @@ -82551,28 +78898,28 @@ export default { }, "player_steam_match_auth_order_by": { "auth_code": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "last_error": [ - 2781 + 2529 ], "last_known_share_code": [ - 2781 + 2529 ], "last_polled_at": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "steam_id": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "__typename": [ 78 @@ -82592,7 +78939,7 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "last_error": [ 78 @@ -82601,13 +78948,13 @@ export default { 78 ], "last_polled_at": [ - 4324 + 4076 ], "steam_id": [ 180 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -82639,7 +78986,7 @@ export default { }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3617 + 3365 ], "ordering": [ 236 @@ -82653,7 +79000,7 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "last_error": [ 78 @@ -82662,13 +79009,13 @@ export default { 78 ], "last_polled_at": [ - 4324 + 4076 ], "steam_id": [ 180 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -82685,13 +79032,13 @@ export default { "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3603 + 3351 ], "_set": [ - 3612 + 3360 ], "where": [ - 3601 + 3349 ], "__typename": [ 78 @@ -82723,22 +79070,22 @@ export default { }, "player_unused_utility": { "deleted_at": [ - 4324 + 4076 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3739 + 3487 ], "player_steam_id": [ 180 @@ -82755,10 +79102,10 @@ export default { }, "player_unused_utility_aggregate": { "aggregate": [ - 3628 + 3376 ], "nodes": [ - 3624 + 3372 ], "__typename": [ 78 @@ -82766,7 +79113,7 @@ export default { }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3627 + 3375 ], "__typename": [ 78 @@ -82774,13 +79121,13 @@ export default { }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3645 + 3393 ], "distinct": [ 3 ], "filter": [ - 3633 + 3381 ], "predicate": [ 39 @@ -82791,13 +79138,13 @@ export default { }, "player_unused_utility_aggregate_fields": { "avg": [ - 3631 + 3379 ], "count": [ 38, { "columns": [ - 3645, + 3393, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -82806,31 +79153,31 @@ export default { } ], "max": [ - 3637 + 3385 ], "min": [ - 3639 + 3387 ], "stddev": [ - 3647 + 3395 ], "stddev_pop": [ - 3649 + 3397 ], "stddev_samp": [ - 3651 + 3399 ], "sum": [ - 3655 + 3403 ], "var_pop": [ - 3659 + 3407 ], "var_samp": [ - 3661 + 3409 ], "variance": [ - 3663 + 3411 ], "__typename": [ 78 @@ -82838,37 +79185,37 @@ export default { }, "player_unused_utility_aggregate_order_by": { "avg": [ - 3632 + 3380 ], "count": [ - 2781 + 2529 ], "max": [ - 3638 + 3386 ], "min": [ - 3640 + 3388 ], "stddev": [ - 3648 + 3396 ], "stddev_pop": [ - 3650 + 3398 ], "stddev_samp": [ - 3652 + 3400 ], "sum": [ - 3656 + 3404 ], "var_pop": [ - 3660 + 3408 ], "var_samp": [ - 3662 + 3410 ], "variance": [ - 3664 + 3412 ], "__typename": [ 78 @@ -82876,10 +79223,10 @@ export default { }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3636 + 3384 ], "on_conflict": [ - 3642 + 3390 ], "__typename": [ 78 @@ -82901,13 +79248,13 @@ export default { }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "unused": [ - 2781 + 2529 ], "__typename": [ 78 @@ -82915,31 +79262,31 @@ export default { }, "player_unused_utility_bool_exp": { "_and": [ - 3633 + 3381 ], "_not": [ - 3633 + 3381 ], "_or": [ - 3633 + 3381 ], "deleted_at": [ - 4325 + 4077 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "player": [ - 3743 + 3491 ], "player_steam_id": [ 182 @@ -82971,22 +79318,22 @@ export default { }, "player_unused_utility_insert_input": { "deleted_at": [ - 4324 + 4076 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2452 + 2200 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3750 + 3498 ], "player_steam_id": [ 180 @@ -83003,13 +79350,13 @@ export default { }, "player_unused_utility_max_fields": { "deleted_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "player_steam_id": [ 180 @@ -83026,22 +79373,22 @@ export default { }, "player_unused_utility_max_order_by": { "deleted_at": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "unused": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83049,13 +79396,13 @@ export default { }, "player_unused_utility_min_fields": { "deleted_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "player_steam_id": [ 180 @@ -83072,22 +79419,22 @@ export default { }, "player_unused_utility_min_order_by": { "deleted_at": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "unused": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83098,7 +79445,7 @@ export default { 38 ], "returning": [ - 3624 + 3372 ], "__typename": [ 78 @@ -83106,13 +79453,13 @@ export default { }, "player_unused_utility_on_conflict": { "constraint": [ - 3634 + 3382 ], "update_columns": [ - 3657 + 3405 ], "where": [ - 3633 + 3381 ], "__typename": [ 78 @@ -83120,31 +79467,31 @@ export default { }, "player_unused_utility_order_by": { "deleted_at": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "unused": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83152,7 +79499,7 @@ export default { }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 4762 + 4621 ], "player_steam_id": [ 180 @@ -83164,13 +79511,13 @@ export default { "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "player_steam_id": [ 180 @@ -83201,13 +79548,13 @@ export default { }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "unused": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83229,13 +79576,13 @@ export default { }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "unused": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83257,13 +79604,13 @@ export default { }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "unused": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83271,7 +79618,7 @@ export default { }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3654 + 3402 ], "ordering": [ 236 @@ -83282,13 +79629,13 @@ export default { }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "player_steam_id": [ 180 @@ -83319,13 +79666,13 @@ export default { }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "unused": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83334,13 +79681,13 @@ export default { "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3635 + 3383 ], "_set": [ - 3646 + 3394 ], "where": [ - 3633 + 3381 ], "__typename": [ 78 @@ -83362,13 +79709,13 @@ export default { }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "unused": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83390,13 +79737,13 @@ export default { }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "unused": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83418,13 +79765,13 @@ export default { }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "unused": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83438,31 +79785,31 @@ export default { 180 ], "deleted_at": [ - 4324 + 4076 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3739 + 3487 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "type": [ - 1185 + 1193 ], "__typename": [ 78 @@ -83470,10 +79817,10 @@ export default { }, "player_utility_aggregate": { "aggregate": [ - 3669 + 3417 ], "nodes": [ - 3665 + 3413 ], "__typename": [ 78 @@ -83481,7 +79828,7 @@ export default { }, "player_utility_aggregate_bool_exp": { "count": [ - 3668 + 3416 ], "__typename": [ 78 @@ -83489,13 +79836,13 @@ export default { }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3686 + 3434 ], "distinct": [ 3 ], "filter": [ - 3674 + 3422 ], "predicate": [ 39 @@ -83506,13 +79853,13 @@ export default { }, "player_utility_aggregate_fields": { "avg": [ - 3672 + 3420 ], "count": [ 38, { "columns": [ - 3686, + 3434, "[player_utility_select_column!]" ], "distinct": [ @@ -83521,31 +79868,31 @@ export default { } ], "max": [ - 3678 + 3426 ], "min": [ - 3680 + 3428 ], "stddev": [ - 3688 + 3436 ], "stddev_pop": [ - 3690 + 3438 ], "stddev_samp": [ - 3692 + 3440 ], "sum": [ - 3696 + 3444 ], "var_pop": [ - 3700 + 3448 ], "var_samp": [ - 3702 + 3450 ], "variance": [ - 3704 + 3452 ], "__typename": [ 78 @@ -83553,37 +79900,37 @@ export default { }, "player_utility_aggregate_order_by": { "avg": [ - 3673 + 3421 ], "count": [ - 2781 + 2529 ], "max": [ - 3679 + 3427 ], "min": [ - 3681 + 3429 ], "stddev": [ - 3689 + 3437 ], "stddev_pop": [ - 3691 + 3439 ], "stddev_samp": [ - 3693 + 3441 ], "sum": [ - 3697 + 3445 ], "var_pop": [ - 3701 + 3449 ], "var_samp": [ - 3703 + 3451 ], "variance": [ - 3705 + 3453 ], "__typename": [ 78 @@ -83591,10 +79938,10 @@ export default { }, "player_utility_arr_rel_insert_input": { "data": [ - 3677 + 3425 ], "on_conflict": [ - 3683 + 3431 ], "__typename": [ 78 @@ -83613,10 +79960,10 @@ export default { }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83624,13 +79971,13 @@ export default { }, "player_utility_bool_exp": { "_and": [ - 3674 + 3422 ], "_not": [ - 3674 + 3422 ], "_or": [ - 3674 + 3422 ], "attacker_location_coordinates": [ 80 @@ -83639,31 +79986,31 @@ export default { 182 ], "deleted_at": [ - 4325 + 4077 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "player": [ - 3743 + 3491 ], "round": [ 39 ], "time": [ - 4325 + 4077 ], "type": [ - 1186 + 1194 ], "__typename": [ 78 @@ -83689,31 +80036,31 @@ export default { 180 ], "deleted_at": [ - 4324 + 4076 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2452 + 2200 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3750 + 3498 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "type": [ - 1185 + 1193 ], "__typename": [ 78 @@ -83727,19 +80074,19 @@ export default { 180 ], "deleted_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -83747,25 +80094,25 @@ export default { }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83779,19 +80126,19 @@ export default { 180 ], "deleted_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -83799,25 +80146,25 @@ export default { }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83828,7 +80175,7 @@ export default { 38 ], "returning": [ - 3665 + 3413 ], "__typename": [ 78 @@ -83836,13 +80183,13 @@ export default { }, "player_utility_on_conflict": { "constraint": [ - 3675 + 3423 ], "update_columns": [ - 3698 + 3446 ], "where": [ - 3674 + 3422 ], "__typename": [ 78 @@ -83850,37 +80197,37 @@ export default { }, "player_utility_order_by": { "attacker_location_coordinates": [ - 2781 + 2529 ], "attacker_steam_id": [ - 2781 + 2529 ], "deleted_at": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "round": [ - 2781 + 2529 ], "time": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83891,10 +80238,10 @@ export default { 180 ], "match_map_id": [ - 4762 + 4621 ], "time": [ - 4324 + 4076 ], "__typename": [ 78 @@ -83909,22 +80256,22 @@ export default { 180 ], "deleted_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "type": [ - 1185 + 1193 ], "__typename": [ 78 @@ -83943,10 +80290,10 @@ export default { }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83965,10 +80312,10 @@ export default { }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83987,10 +80334,10 @@ export default { }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -83998,7 +80345,7 @@ export default { }, "player_utility_stream_cursor_input": { "initial_value": [ - 3695 + 3443 ], "ordering": [ 236 @@ -84015,22 +80362,22 @@ export default { 180 ], "deleted_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 ], "time": [ - 4324 + 4076 ], "type": [ - 1185 + 1193 ], "__typename": [ 78 @@ -84049,10 +80396,10 @@ export default { }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -84061,13 +80408,13 @@ export default { "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3676 + 3424 ], "_set": [ - 3687 + 3435 ], "where": [ - 3674 + 3422 ], "__typename": [ 78 @@ -84086,10 +80433,10 @@ export default { }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -84108,10 +80455,10 @@ export default { }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -84130,10 +80477,10 @@ export default { }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -84153,7 +80500,7 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "shots": [ 38 @@ -84173,10 +80520,10 @@ export default { }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 3710 + 3458 ], "nodes": [ - 3706 + 3454 ], "__typename": [ 78 @@ -84184,7 +80531,7 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 3709 + 3457 ], "__typename": [ 78 @@ -84192,13 +80539,13 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3722 + 3470 ], "distinct": [ 3 ], "filter": [ - 3715 + 3463 ], "predicate": [ 39 @@ -84209,13 +80556,13 @@ export default { }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 3713 + 3461 ], "count": [ 38, { "columns": [ - 3722, + 3470, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -84224,31 +80571,31 @@ export default { } ], "max": [ - 3717 + 3465 ], "min": [ - 3719 + 3467 ], "stddev": [ - 3723 + 3471 ], "stddev_pop": [ - 3725 + 3473 ], "stddev_samp": [ - 3727 + 3475 ], "sum": [ - 3731 + 3479 ], "var_pop": [ - 3733 + 3481 ], "var_samp": [ - 3735 + 3483 ], "variance": [ - 3737 + 3485 ], "__typename": [ 78 @@ -84256,37 +80603,37 @@ export default { }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 3714 + 3462 ], "count": [ - 2781 + 2529 ], "max": [ - 3718 + 3466 ], "min": [ - 3720 + 3468 ], "stddev": [ - 3724 + 3472 ], "stddev_pop": [ - 3726 + 3474 ], "stddev_samp": [ - 3728 + 3476 ], "sum": [ - 3732 + 3480 ], "var_pop": [ - 3734 + 3482 ], "var_samp": [ - 3736 + 3484 ], "variance": [ - 3738 + 3486 ], "__typename": [ 78 @@ -84294,7 +80641,7 @@ export default { }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 3716 + 3464 ], "__typename": [ 78 @@ -84328,25 +80675,25 @@ export default { }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -84354,13 +80701,13 @@ export default { }, "player_weapon_stats_v_bool_exp": { "_and": [ - 3715 + 3463 ], "_not": [ - 3715 + 3463 ], "_or": [ - 3715 + 3463 ], "first_bullet_hits": [ 39 @@ -84375,7 +80722,7 @@ export default { 39 ], "match_id": [ - 4764 + 4623 ], "shots": [ 39 @@ -84407,7 +80754,7 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "shots": [ 38 @@ -84439,7 +80786,7 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "shots": [ 38 @@ -84459,31 +80806,31 @@ export default { }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "weapon_class": [ - 2781 + 2529 ], "__typename": [ 78 @@ -84503,7 +80850,7 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "shots": [ 38 @@ -84523,31 +80870,31 @@ export default { }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "weapon_class": [ - 2781 + 2529 ], "__typename": [ 78 @@ -84555,31 +80902,31 @@ export default { }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "weapon_class": [ - 2781 + 2529 ], "__typename": [ 78 @@ -84614,25 +80961,25 @@ export default { }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -84666,25 +81013,25 @@ export default { }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -84718,25 +81065,25 @@ export default { }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -84744,7 +81091,7 @@ export default { }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 3730 + 3478 ], "ordering": [ 236 @@ -84767,7 +81114,7 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "shots": [ 38 @@ -84813,25 +81160,25 @@ export default { }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -84865,25 +81212,25 @@ export default { }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -84917,25 +81264,25 @@ export default { }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -84969,25 +81316,25 @@ export default { }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 2781 + 2529 ], "first_bullet_shots": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "hits_spotted": [ - 2781 + 2529 ], "shots": [ - 2781 + 2529 ], "shots_spotted": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -85039,10 +81386,10 @@ export default { } ], "aim_weapon_stats": [ - 2878, + 2626, { "distinct_on": [ - 2899, + 2647, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -85052,19 +81399,19 @@ export default { 38 ], "order_by": [ - 2897, + 2645, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2887 + 2635 ] } ], "aim_weapon_stats_aggregate": [ - 2879, + 2627, { "distinct_on": [ - 2899, + 2647, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -85074,19 +81421,19 @@ export default { 38 ], "order_by": [ - 2897, + 2645, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2887 + 2635 ] } ], "assists": [ - 2919, + 2667, { "distinct_on": [ - 2942, + 2690, "[player_assists_select_column!]" ], "limit": [ @@ -85096,19 +81443,19 @@ export default { 38 ], "order_by": [ - 2940, + 2688, "[player_assists_order_by!]" ], "where": [ - 2930 + 2678 ] } ], "assists_aggregate": [ - 2920, + 2668, { "distinct_on": [ - 2942, + 2690, "[player_assists_select_column!]" ], "limit": [ @@ -85118,19 +81465,19 @@ export default { 38 ], "order_by": [ - 2940, + 2688, "[player_assists_order_by!]" ], "where": [ - 2930 + 2678 ] } ], "assited_by_players": [ - 2919, + 2667, { "distinct_on": [ - 2942, + 2690, "[player_assists_select_column!]" ], "limit": [ @@ -85140,19 +81487,19 @@ export default { 38 ], "order_by": [ - 2940, + 2688, "[player_assists_order_by!]" ], "where": [ - 2930 + 2678 ] } ], "assited_by_players_aggregate": [ - 2920, + 2668, { "distinct_on": [ - 2942, + 2690, "[player_assists_select_column!]" ], "limit": [ @@ -85162,11 +81509,11 @@ export default { 38 ], "order_by": [ - 2940, + 2688, "[player_assists_order_by!]" ], "where": [ - 2930 + 2678 ] } ], @@ -85174,10 +81521,10 @@ export default { 78 ], "coach_lineups": [ - 2276, + 2024, { "distinct_on": [ - 2298, + 2046, "[match_lineups_select_column!]" ], "limit": [ @@ -85187,19 +81534,19 @@ export default { 38 ], "order_by": [ - 2296, + 2044, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2033 ] } ], "coach_lineups_aggregate": [ - 2277, + 2025, { "distinct_on": [ - 2298, + 2046, "[match_lineups_select_column!]" ], "limit": [ @@ -85209,11 +81556,11 @@ export default { 38 ], "order_by": [ - 2296, + 2044, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2033 ] } ], @@ -85221,19 +81568,19 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "current_lobby_id": [ - 4762 + 4621 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2982, + 2730, { "distinct_on": [ - 3003, + 2751, "[player_damages_select_column!]" ], "limit": [ @@ -85243,19 +81590,19 @@ export default { 38 ], "order_by": [ - 3001, + 2749, "[player_damages_order_by!]" ], "where": [ - 2991 + 2739 ] } ], "damage_dealt_aggregate": [ - 2983, + 2731, { "distinct_on": [ - 3003, + 2751, "[player_damages_select_column!]" ], "limit": [ @@ -85265,19 +81612,19 @@ export default { 38 ], "order_by": [ - 3001, + 2749, "[player_damages_order_by!]" ], "where": [ - 2991 + 2739 ] } ], "damage_taken": [ - 2982, + 2730, { "distinct_on": [ - 3003, + 2751, "[player_damages_select_column!]" ], "limit": [ @@ -85287,19 +81634,19 @@ export default { 38 ], "order_by": [ - 3001, + 2749, "[player_damages_order_by!]" ], "where": [ - 2991 + 2739 ] } ], "damage_taken_aggregate": [ - 2983, + 2731, { "distinct_on": [ - 3003, + 2751, "[player_damages_select_column!]" ], "limit": [ @@ -85309,11 +81656,11 @@ export default { 38 ], "order_by": [ - 3001, + 2749, "[player_damages_order_by!]" ], "where": [ - 2991 + 2739 ] } ], @@ -85321,10 +81668,10 @@ export default { 38 ], "deaths": [ - 3136, + 2884, { "distinct_on": [ - 3200, + 2948, "[player_kills_select_column!]" ], "limit": [ @@ -85334,19 +81681,19 @@ export default { 38 ], "order_by": [ - 3198, + 2946, "[player_kills_order_by!]" ], "where": [ - 3147 + 2895 ] } ], "deaths_aggregate": [ - 3137, + 2885, { "distinct_on": [ - 3200, + 2948, "[player_kills_select_column!]" ], "limit": [ @@ -85356,11 +81703,11 @@ export default { 38 ], "order_by": [ - 3198, + 2946, "[player_kills_order_by!]" ], "where": [ - 3147 + 2895 ] } ], @@ -85368,10 +81715,10 @@ export default { 78 ], "draft_game_players": [ - 309, + 336, { "distinct_on": [ - 332, + 359, "[draft_game_players_select_column!]" ], "limit": [ @@ -85381,19 +81728,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 +81750,16 @@ export default { 38 ], "order_by": [ - 330, + 357, "[draft_game_players_order_by!]" ], "where": [ - 320 + 347 ] } ], "elo": [ - 1652, + 1400, { "path": [ 78 @@ -85420,10 +81767,10 @@ export default { } ], "elo_history": [ - 5139, + 4947, { "distinct_on": [ - 5165, + 4973, "[v_player_elo_select_column!]" ], "limit": [ @@ -85433,19 +81780,19 @@ export default { 38 ], "order_by": [ - 5164, + 4972, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 4966 ] } ], "elo_history_aggregate": [ - 5140, + 4948, { "distinct_on": [ - 5165, + 4973, "[v_player_elo_select_column!]" ], "limit": [ @@ -85455,11 +81802,11 @@ export default { 38 ], "order_by": [ - 5164, + 4972, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 4966 ] } ], @@ -85473,10 +81820,10 @@ export default { 78 ], "faceit_rank_history": [ - 3050, + 2798, { "distinct_on": [ - 3071, + 2819, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -85486,19 +81833,19 @@ export default { 38 ], "order_by": [ - 3069, + 2817, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3059 + 2807 ] } ], "faceit_rank_history_aggregate": [ - 3051, + 2799, { "distinct_on": [ - 3071, + 2819, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -85508,11 +81855,11 @@ export default { 38 ], "order_by": [ - 3069, + 2817, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3059 + 2807 ] } ], @@ -85520,16 +81867,16 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4076 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 3091, + 2839, { "distinct_on": [ - 3114, + 2862, "[player_flashes_select_column!]" ], "limit": [ @@ -85539,19 +81886,19 @@ export default { 38 ], "order_by": [ - 3112, + 2860, "[player_flashes_order_by!]" ], "where": [ - 3102 + 2850 ] } ], "flashed_by_players_aggregate": [ - 3092, + 2840, { "distinct_on": [ - 3114, + 2862, "[player_flashes_select_column!]" ], "limit": [ @@ -85561,19 +81908,19 @@ export default { 38 ], "order_by": [ - 3112, + 2860, "[player_flashes_order_by!]" ], "where": [ - 3102 + 2850 ] } ], "flashed_players": [ - 3091, + 2839, { "distinct_on": [ - 3114, + 2862, "[player_flashes_select_column!]" ], "limit": [ @@ -85583,19 +81930,19 @@ export default { 38 ], "order_by": [ - 3112, + 2860, "[player_flashes_order_by!]" ], "where": [ - 3102 + 2850 ] } ], "flashed_players_aggregate": [ - 3092, + 2840, { "distinct_on": [ - 3114, + 2862, "[player_flashes_select_column!]" ], "limit": [ @@ -85605,19 +81952,19 @@ export default { 38 ], "order_by": [ - 3112, + 2860, "[player_flashes_order_by!]" ], "where": [ - 3102 + 2850 ] } ], "friends": [ - 2656, + 2404, { "distinct_on": [ - 2681, + 2429, "[my_friends_select_column!]" ], "limit": [ @@ -85627,19 +81974,19 @@ export default { 38 ], "order_by": [ - 2679, + 2427, "[my_friends_order_by!]" ], "where": [ - 2668 + 2416 ] } ], "friends_aggregate": [ - 2657, + 2405, { "distinct_on": [ - 2681, + 2429, "[my_friends_select_column!]" ], "limit": [ @@ -85649,11 +81996,11 @@ export default { 38 ], "order_by": [ - 2679, + 2427, "[my_friends_order_by!]" ], "where": [ - 2668 + 2416 ] } ], @@ -85661,10 +82008,10 @@ export default { 38 ], "invited_players": [ - 3998, + 3746, { "distinct_on": [ - 4019, + 3767, "[team_invites_select_column!]" ], "limit": [ @@ -85674,19 +82021,19 @@ export default { 38 ], "order_by": [ - 4017, + 3765, "[team_invites_order_by!]" ], "where": [ - 4007 + 3755 ] } ], "invited_players_aggregate": [ - 3999, + 3747, { "distinct_on": [ - 4019, + 3767, "[team_invites_select_column!]" ], "limit": [ @@ -85696,11 +82043,11 @@ export default { 38 ], "order_by": [ - 4017, + 3765, "[team_invites_order_by!]" ], "where": [ - 4007 + 3755 ] } ], @@ -85723,10 +82070,10 @@ export default { 3 ], "kills": [ - 3136, + 2884, { "distinct_on": [ - 3200, + 2948, "[player_kills_select_column!]" ], "limit": [ @@ -85736,19 +82083,19 @@ export default { 38 ], "order_by": [ - 3198, + 2946, "[player_kills_order_by!]" ], "where": [ - 3147 + 2895 ] } ], "kills_aggregate": [ - 3137, + 2885, { "distinct_on": [ - 3200, + 2948, "[player_kills_select_column!]" ], "limit": [ @@ -85758,19 +82105,19 @@ export default { 38 ], "order_by": [ - 3198, + 2946, "[player_kills_order_by!]" ], "where": [ - 3147 + 2895 ] } ], "kills_by_weapons": [ - 3148, + 2896, { "distinct_on": [ - 3169, + 2917, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -85780,19 +82127,19 @@ export default { 38 ], "order_by": [ - 3167, + 2915, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3157 + 2905 ] } ], "kills_by_weapons_aggregate": [ - 3149, + 2897, { "distinct_on": [ - 3169, + 2917, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -85802,11 +82149,11 @@ export default { 38 ], "order_by": [ - 3167, + 2915, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3157 + 2905 ] } ], @@ -85814,16 +82161,16 @@ export default { 78 ], "last_read_news_at": [ - 4324 + 4076 ], "last_sign_in_at": [ - 4324 + 4076 ], "lobby_players": [ - 2050, + 1798, { "distinct_on": [ - 2073, + 1821, "[lobby_players_select_column!]" ], "limit": [ @@ -85833,19 +82180,19 @@ export default { 38 ], "order_by": [ - 2071, + 1819, "[lobby_players_order_by!]" ], "where": [ - 2061 + 1809 ] } ], "lobby_players_aggregate": [ - 2051, + 1799, { "distinct_on": [ - 2073, + 1821, "[lobby_players_select_column!]" ], "limit": [ @@ -85855,11 +82202,11 @@ export default { 38 ], "order_by": [ - 2071, + 1819, "[lobby_players_order_by!]" ], "where": [ - 2061 + 1809 ] } ], @@ -85876,10 +82223,10 @@ export default { 38 ], "match_map_hltv": [ - 5244, + 5052, { "distinct_on": [ - 5262, + 5070, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -85889,19 +82236,19 @@ export default { 38 ], "order_by": [ - 5261, + 5069, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5253 + 5061 ] } ], "match_map_hltv_aggregate": [ - 5245, + 5053, { "distinct_on": [ - 5262, + 5070, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -85911,19 +82258,19 @@ export default { 38 ], "order_by": [ - 5261, + 5069, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5253 + 5061 ] } ], "match_map_stats": [ - 3245, + 2993, { "distinct_on": [ - 3266, + 3014, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -85933,19 +82280,19 @@ export default { 38 ], "order_by": [ - 3264, + 3012, "[player_match_map_stats_order_by!]" ], "where": [ - 3254 + 3002 ] } ], "match_map_stats_aggregate": [ - 3246, + 2994, { "distinct_on": [ - 3266, + 3014, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -85955,19 +82302,19 @@ export default { 38 ], "order_by": [ - 3264, + 3012, "[player_match_map_stats_order_by!]" ], "where": [ - 3254 + 3002 ] } ], "match_stats": [ - 3304, + 3052, { "distinct_on": [ - 3320, + 3068, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -85977,19 +82324,19 @@ export default { 38 ], "order_by": [ - 3319, + 3067, "[player_match_stats_v_order_by!]" ], "where": [ - 3313 + 3061 ] } ], "match_stats_aggregate": [ - 3305, + 3053, { "distinct_on": [ - 3320, + 3068, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -85999,19 +82346,19 @@ export default { 38 ], "order_by": [ - 3319, + 3067, "[player_match_stats_v_order_by!]" ], "where": [ - 3313 + 3061 ] } ], "matches": [ - 2596, + 2344, { "distinct_on": [ - 2618, + 2366, "[matches_select_column!]" ], "limit": [ @@ -86021,22 +82368,22 @@ export default { 38 ], "order_by": [ - 2616, + 2364, "[matches_order_by!]" ], "where": [ - 2605 + 2353 ] } ], "matchmaking_cooldown": [ - 4324 + 4076 ], "multi_kills": [ - 5335, + 5143, { "distinct_on": [ - 5351, + 5159, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -86046,19 +82393,19 @@ export default { 38 ], "order_by": [ - 5350, + 5158, "[v_player_multi_kills_order_by!]" ], "where": [ - 5344 + 5152 ] } ], "multi_kills_aggregate": [ - 5336, + 5144, { "distinct_on": [ - 5351, + 5159, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -86068,11 +82415,11 @@ export default { 38 ], "order_by": [ - 5350, + 5158, "[v_player_multi_kills_order_by!]" ], "where": [ - 5344 + 5152 ] } ], @@ -86083,10 +82430,10 @@ export default { 3 ], "notifications": [ - 2729, + 2477, { "distinct_on": [ - 2757, + 2505, "[notifications_select_column!]" ], "limit": [ @@ -86096,19 +82443,19 @@ export default { 38 ], "order_by": [ - 2754, + 2502, "[notifications_order_by!]" ], "where": [ - 2741 + 2489 ] } ], "notifications_aggregate": [ - 2730, + 2478, { "distinct_on": [ - 2757, + 2505, "[notifications_select_column!]" ], "limit": [ @@ -86118,19 +82465,19 @@ export default { 38 ], "order_by": [ - 2754, + 2502, "[notifications_order_by!]" ], "where": [ - 2741 + 2489 ] } ], "objectives": [ - 3337, + 3085, { "distinct_on": [ - 3358, + 3106, "[player_objectives_select_column!]" ], "limit": [ @@ -86140,19 +82487,19 @@ export default { 38 ], "order_by": [ - 3356, + 3104, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3094 ] } ], "objectives_aggregate": [ - 3338, + 3086, { "distinct_on": [ - 3358, + 3106, "[player_objectives_select_column!]" ], "limit": [ @@ -86162,19 +82509,19 @@ export default { 38 ], "order_by": [ - 3356, + 3104, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3094 ] } ], "owned_teams": [ - 4281, + 4029, { "distinct_on": [ - 4303, + 4053, "[teams_select_column!]" ], "limit": [ @@ -86184,19 +82531,19 @@ export default { 38 ], "order_by": [ - 4301, + 4051, "[teams_order_by!]" ], "where": [ - 4290 + 4040 ] } ], "owned_teams_aggregate": [ - 4282, + 4030, { "distinct_on": [ - 4303, + 4053, "[teams_select_column!]" ], "limit": [ @@ -86206,16 +82553,16 @@ export default { 38 ], "order_by": [ - 4301, + 4051, "[teams_order_by!]" ], "where": [ - 4290 + 4040 ] } ], "peak_elo": [ - 1652, + 1400, { "path": [ 78 @@ -86223,10 +82570,10 @@ export default { } ], "pending_match_imports": [ - 2782, + 2530, { "distinct_on": [ - 2803, + 2551, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -86236,19 +82583,19 @@ export default { 38 ], "order_by": [ - 2801, + 2549, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2539 ] } ], "pending_match_imports_aggregate": [ - 2783, + 2531, { "distinct_on": [ - 2803, + 2551, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -86258,19 +82605,19 @@ export default { 38 ], "order_by": [ - 2801, + 2549, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2539 ] } ], "player_lineup": [ - 2231, + 1979, { "distinct_on": [ - 2254, + 2002, "[match_lineup_players_select_column!]" ], "limit": [ @@ -86280,19 +82627,19 @@ export default { 38 ], "order_by": [ - 2252, + 2000, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 1990 ] } ], "player_lineup_aggregate": [ - 2232, + 1980, { "distinct_on": [ - 2254, + 2002, "[match_lineup_players_select_column!]" ], "limit": [ @@ -86302,19 +82649,19 @@ export default { 38 ], "order_by": [ - 2252, + 2000, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 1990 ] } ], "player_unused_utilities": [ - 3624, + 3372, { "distinct_on": [ - 3645, + 3393, "[player_unused_utility_select_column!]" ], "limit": [ @@ -86324,19 +82671,19 @@ export default { 38 ], "order_by": [ - 3643, + 3391, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3381 ] } ], "player_unused_utilities_aggregate": [ - 3625, + 3373, { "distinct_on": [ - 3645, + 3393, "[player_unused_utility_select_column!]" ], "limit": [ @@ -86346,11 +82693,11 @@ export default { 38 ], "order_by": [ - 3643, + 3391, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3381 ] } ], @@ -86358,10 +82705,10 @@ export default { 38 ], "premier_rank_history": [ - 3396, + 3144, { "distinct_on": [ - 3417, + 3165, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -86371,19 +82718,19 @@ export default { 38 ], "order_by": [ - 3415, + 3163, "[player_premier_rank_history_order_by!]" ], "where": [ - 3405 + 3153 ] } ], "premier_rank_history_aggregate": [ - 3397, + 3145, { "distinct_on": [ - 3417, + 3165, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -86393,31 +82740,31 @@ export default { 38 ], "order_by": [ - 3415, + 3163, "[player_premier_rank_history_order_by!]" ], "where": [ - 3405 + 3153 ] } ], "premier_rank_updated_at": [ - 4324 + 4076 ], "profile_url": [ 78 ], "role": [ - 921 + 908 ], "roster_image_url": [ 78 ], "sanctions": [ - 3437, + 3185, { "distinct_on": [ - 3458, + 3206, "[player_sanctions_select_column!]" ], "limit": [ @@ -86427,19 +82774,19 @@ export default { 38 ], "order_by": [ - 3456, + 3204, "[player_sanctions_order_by!]" ], "where": [ - 3446 + 3194 ] } ], "sanctions_aggregate": [ - 3438, + 3186, { "distinct_on": [ - 3458, + 3206, "[player_sanctions_select_column!]" ], "limit": [ @@ -86449,19 +82796,19 @@ export default { 38 ], "order_by": [ - 3456, + 3204, "[player_sanctions_order_by!]" ], "where": [ - 3446 + 3194 ] } ], "season_stats": [ - 3478, + 3226, { "distinct_on": [ - 3509, + 3257, "[player_season_stats_select_column!]" ], "limit": [ @@ -86471,19 +82818,19 @@ export default { 38 ], "order_by": [ - 3507, + 3255, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3245 ] } ], "season_stats_aggregate": [ - 3479, + 3227, { "distinct_on": [ - 3509, + 3257, "[player_season_stats_select_column!]" ], "limit": [ @@ -86493,11 +82840,11 @@ export default { 38 ], "order_by": [ - 3507, + 3255, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3245 ] } ], @@ -86505,19 +82852,19 @@ export default { 3 ], "stats": [ - 3537 + 3285 ], "steam_bans_checked_at": [ - 4324 + 4076 ], "steam_id": [ 180 ], "team_invites": [ - 3998, + 3746, { "distinct_on": [ - 4019, + 3767, "[team_invites_select_column!]" ], "limit": [ @@ -86527,19 +82874,19 @@ export default { 38 ], "order_by": [ - 4017, + 3765, "[team_invites_order_by!]" ], "where": [ - 4007 + 3755 ] } ], "team_invites_aggregate": [ - 3999, + 3747, { "distinct_on": [ - 4019, + 3767, "[team_invites_select_column!]" ], "limit": [ @@ -86549,19 +82896,19 @@ export default { 38 ], "order_by": [ - 4017, + 3765, "[team_invites_order_by!]" ], "where": [ - 4007 + 3755 ] } ], "team_members": [ - 4039, + 3787, { "distinct_on": [ - 4062, + 3810, "[team_roster_select_column!]" ], "limit": [ @@ -86571,19 +82918,19 @@ export default { 38 ], "order_by": [ - 4060, + 3808, "[team_roster_order_by!]" ], "where": [ - 4050 + 3798 ] } ], "team_members_aggregate": [ - 4040, + 3788, { "distinct_on": [ - 4062, + 3810, "[team_roster_select_column!]" ], "limit": [ @@ -86593,19 +82940,19 @@ export default { 38 ], "order_by": [ - 4060, + 3808, "[team_roster_order_by!]" ], "where": [ - 4050 + 3798 ] } ], "teams": [ - 4281, + 4029, { "distinct_on": [ - 4303, + 4053, "[teams_select_column!]" ], "limit": [ @@ -86615,11 +82962,11 @@ export default { 38 ], "order_by": [ - 4301, + 4051, "[teams_order_by!]" ], "where": [ - 4290 + 4040 ] } ], @@ -86627,10 +82974,10 @@ export default { 38 ], "tournament_organizers": [ - 4372, + 4172, { "distinct_on": [ - 4393, + 4193, "[tournament_organizers_select_column!]" ], "limit": [ @@ -86640,19 +82987,19 @@ export default { 38 ], "order_by": [ - 4391, + 4191, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4181 ] } ], "tournament_organizers_aggregate": [ - 4373, + 4173, { "distinct_on": [ - 4393, + 4193, "[tournament_organizers_select_column!]" ], "limit": [ @@ -86662,19 +83009,19 @@ export default { 38 ], "order_by": [ - 4391, + 4191, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4181 ] } ], "tournament_rosters": [ - 4546, + 4387, { "distinct_on": [ - 4567, + 4408, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -86684,19 +83031,19 @@ export default { 38 ], "order_by": [ - 4565, + 4406, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4396 ] } ], "tournament_rosters_aggregate": [ - 4547, + 4388, { "distinct_on": [ - 4567, + 4408, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -86706,19 +83053,19 @@ export default { 38 ], "order_by": [ - 4565, + 4406, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4396 ] } ], "tournament_trophies": [ - 4629, + 4470, { "distinct_on": [ - 4652, + 4493, "[tournament_trophies_select_column!]" ], "limit": [ @@ -86728,19 +83075,19 @@ export default { 38 ], "order_by": [ - 4650, + 4491, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4481 ] } ], "tournament_trophies_aggregate": [ - 4630, + 4471, { "distinct_on": [ - 4652, + 4493, "[tournament_trophies_select_column!]" ], "limit": [ @@ -86750,19 +83097,19 @@ export default { 38 ], "order_by": [ - 4650, + 4491, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4481 ] } ], "tournaments": [ - 4716, + 4557, { "distinct_on": [ - 4740, + 4591, "[tournaments_select_column!]" ], "limit": [ @@ -86772,19 +83119,19 @@ export default { 38 ], "order_by": [ - 4738, + 4589, "[tournaments_order_by!]" ], "where": [ - 4727 + 4578 ] } ], "tournaments_aggregate": [ - 4717, + 4558, { "distinct_on": [ - 4740, + 4591, "[tournaments_select_column!]" ], "limit": [ @@ -86794,19 +83141,19 @@ export default { 38 ], "order_by": [ - 4738, + 4589, "[tournaments_order_by!]" ], "where": [ - 4727 + 4578 ] } ], "utility_thrown": [ - 3665, + 3413, { "distinct_on": [ - 3686, + 3434, "[player_utility_select_column!]" ], "limit": [ @@ -86816,19 +83163,19 @@ export default { 38 ], "order_by": [ - 3684, + 3432, "[player_utility_order_by!]" ], "where": [ - 3674 + 3422 ] } ], "utility_thrown_aggregate": [ - 3666, + 3414, { "distinct_on": [ - 3686, + 3434, "[player_utility_select_column!]" ], "limit": [ @@ -86838,11 +83185,11 @@ export default { 38 ], "order_by": [ - 3684, + 3432, "[player_utility_order_by!]" ], "where": [ - 3674 + 3422 ] } ], @@ -86853,10 +83200,10 @@ export default { 3 ], "weapon_stats": [ - 3706, + 3454, { "distinct_on": [ - 3722, + 3470, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -86866,19 +83213,19 @@ export default { 38 ], "order_by": [ - 3721, + 3469, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3715 + 3463 ] } ], "weapon_stats_aggregate": [ - 3707, + 3455, { "distinct_on": [ - 3722, + 3470, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -86888,11 +83235,11 @@ export default { 38 ], "order_by": [ - 3721, + 3469, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3715 + 3463 ] } ], @@ -86914,10 +83261,10 @@ export default { }, "players_aggregate": { "aggregate": [ - 3741 + 3489 ], "nodes": [ - 3739 + 3487 ], "__typename": [ 78 @@ -86925,13 +83272,13 @@ export default { }, "players_aggregate_fields": { "avg": [ - 3742 + 3490 ], "count": [ 38, { "columns": [ - 3754, + 3502, "[players_select_column!]" ], "distinct": [ @@ -86940,31 +83287,31 @@ export default { } ], "max": [ - 3747 + 3495 ], "min": [ - 3748 + 3496 ], "stddev": [ - 3756 + 3504 ], "stddev_pop": [ - 3757 + 3505 ], "stddev_samp": [ - 3758 + 3506 ], "sum": [ - 3761 + 3509 ], "var_pop": [ - 3764 + 3512 ], "var_samp": [ - 3765 + 3513 ], "variance": [ - 3766 + 3514 ], "__typename": [ 78 @@ -87025,13 +83372,13 @@ export default { }, "players_bool_exp": { "_and": [ - 3743 + 3491 ], "_not": [ - 3743 + 3491 ], "_or": [ - 3743 + 3491 ], "abandoned_matches": [ 120 @@ -87040,82 +83387,82 @@ export default { 113 ], "aim_weapon_stats": [ - 2887 + 2635 ], "aim_weapon_stats_aggregate": [ - 2880 + 2628 ], "assists": [ - 2930 + 2678 ], "assists_aggregate": [ - 2921 + 2669 ], "assited_by_players": [ - 2930 + 2678 ], "assited_by_players_aggregate": [ - 2921 + 2669 ], "avatar_url": [ 80 ], "coach_lineups": [ - 2285 + 2033 ], "coach_lineups_aggregate": [ - 2278 + 2026 ], "country": [ 80 ], "created_at": [ - 4325 + 4077 ], "current_lobby_id": [ - 4764 + 4623 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 2991 + 2739 ], "damage_dealt_aggregate": [ - 2984 + 2732 ], "damage_taken": [ - 2991 + 2739 ], "damage_taken_aggregate": [ - 2984 + 2732 ], "days_since_last_ban": [ 39 ], "deaths": [ - 3147 + 2895 ], "deaths_aggregate": [ - 3138 + 2886 ], "discord_id": [ 80 ], "draft_game_players": [ - 320 + 347 ], "draft_game_players_aggregate": [ - 311 + 338 ], "elo": [ - 1654 + 1402 ], "elo_history": [ - 5158 + 4966 ], "elo_history_aggregate": [ - 5141 + 4949 ], "faceit_elo": [ 39 @@ -87127,46 +83474,46 @@ export default { 80 ], "faceit_rank_history": [ - 3059 + 2807 ], "faceit_rank_history_aggregate": [ - 3052 + 2800 ], "faceit_skill_level": [ 39 ], "faceit_updated_at": [ - 4325 + 4077 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 3102 + 2850 ], "flashed_by_players_aggregate": [ - 3093 + 2841 ], "flashed_players": [ - 3102 + 2850 ], "flashed_players_aggregate": [ - 3093 + 2841 ], "friends": [ - 2668 + 2416 ], "friends_aggregate": [ - 2658 + 2406 ], "game_ban_count": [ 39 ], "invited_players": [ - 4007 + 3755 ], "invited_players_aggregate": [ - 4000 + 3748 ], "is_banned": [ 4 @@ -87187,31 +83534,31 @@ export default { 4 ], "kills": [ - 3147 + 2895 ], "kills_aggregate": [ - 3138 + 2886 ], "kills_by_weapons": [ - 3157 + 2905 ], "kills_by_weapons_aggregate": [ - 3150 + 2898 ], "language": [ 80 ], "last_read_news_at": [ - 4325 + 4077 ], "last_sign_in_at": [ - 4325 + 4077 ], "lobby_players": [ - 2061 + 1809 ], "lobby_players_aggregate": [ - 2052 + 1800 ], "losses": [ 39 @@ -87226,34 +83573,34 @@ export default { 39 ], "match_map_hltv": [ - 5253 + 5061 ], "match_map_hltv_aggregate": [ - 5246 + 5054 ], "match_map_stats": [ - 3254 + 3002 ], "match_map_stats_aggregate": [ - 3247 + 2995 ], "match_stats": [ - 3313 + 3061 ], "match_stats_aggregate": [ - 3306 + 3054 ], "matches": [ - 2605 + 2353 ], "matchmaking_cooldown": [ - 4325 + 4077 ], "multi_kills": [ - 5344 + 5152 ], "multi_kills_aggregate": [ - 5337 + 5145 ], "name": [ 80 @@ -87262,136 +83609,136 @@ export default { 4 ], "notifications": [ - 2741 + 2489 ], "notifications_aggregate": [ - 2731 + 2479 ], "objectives": [ - 3346 + 3094 ], "objectives_aggregate": [ - 3339 + 3087 ], "owned_teams": [ - 4290 + 4040 ], "owned_teams_aggregate": [ - 4283 + 4031 ], "peak_elo": [ - 1654 + 1402 ], "pending_match_imports": [ - 2791 + 2539 ], "pending_match_imports_aggregate": [ - 2784 + 2532 ], "player_lineup": [ - 2242 + 1990 ], "player_lineup_aggregate": [ - 2233 + 1981 ], "player_unused_utilities": [ - 3633 + 3381 ], "player_unused_utilities_aggregate": [ - 3626 + 3374 ], "premier_rank": [ 39 ], "premier_rank_history": [ - 3405 + 3153 ], "premier_rank_history_aggregate": [ - 3398 + 3146 ], "premier_rank_updated_at": [ - 4325 + 4077 ], "profile_url": [ 80 ], "role": [ - 922 + 909 ], "roster_image_url": [ 80 ], "sanctions": [ - 3446 + 3194 ], "sanctions_aggregate": [ - 3439 + 3187 ], "season_stats": [ - 3497 + 3245 ], "season_stats_aggregate": [ - 3480 + 3228 ], "show_match_ready_modal": [ 4 ], "stats": [ - 3541 + 3289 ], "steam_bans_checked_at": [ - 4325 + 4077 ], "steam_id": [ 182 ], "team_invites": [ - 4007 + 3755 ], "team_invites_aggregate": [ - 4000 + 3748 ], "team_members": [ - 4050 + 3798 ], "team_members_aggregate": [ - 4041 + 3789 ], "teams": [ - 4290 + 4040 ], "total_matches": [ 39 ], "tournament_organizers": [ - 4381 + 4181 ], "tournament_organizers_aggregate": [ - 4374 + 4174 ], "tournament_rosters": [ - 4555 + 4396 ], "tournament_rosters_aggregate": [ - 4548 + 4389 ], "tournament_trophies": [ - 4640 + 4481 ], "tournament_trophies_aggregate": [ - 4631 + 4472 ], "tournaments": [ - 4727 + 4578 ], "tournaments_aggregate": [ - 4718 + 4559 ], "utility_thrown": [ - 3674 + 3422 ], "utility_thrown_aggregate": [ - 3667 + 3415 ], "vac_ban_count": [ 39 @@ -87400,10 +83747,10 @@ export default { 4 ], "weapon_stats": [ - 3715 + 3463 ], "weapon_stats_aggregate": [ - 3708 + 3456 ], "wins": [ 39 @@ -87453,49 +83800,49 @@ export default { 117 ], "aim_weapon_stats": [ - 2884 + 2632 ], "assists": [ - 2927 + 2675 ], "assited_by_players": [ - 2927 + 2675 ], "avatar_url": [ 78 ], "coach_lineups": [ - 2282 + 2030 ], "country": [ 78 ], "created_at": [ - 4324 + 4076 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2988 + 2736 ], "damage_taken": [ - 2988 + 2736 ], "days_since_last_ban": [ 38 ], "deaths": [ - 3144 + 2892 ], "discord_id": [ 78 ], "draft_game_players": [ - 317 + 344 ], "elo_history": [ - 5155 + 4963 ], "faceit_elo": [ 38 @@ -87507,61 +83854,61 @@ export default { 78 ], "faceit_rank_history": [ - 3056 + 2804 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 4324 + 4076 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 3099 + 2847 ], "flashed_players": [ - 3099 + 2847 ], "friends": [ - 2665 + 2413 ], "game_ban_count": [ 38 ], "invited_players": [ - 4004 + 3752 ], "kills": [ - 3144 + 2892 ], "kills_by_weapons": [ - 3154 + 2902 ], "language": [ 78 ], "last_read_news_at": [ - 4324 + 4076 ], "last_sign_in_at": [ - 4324 + 4076 ], "lobby_players": [ - 2058 + 1806 ], "match_map_hltv": [ - 5250 + 5058 ], "match_map_stats": [ - 3251 + 2999 ], "match_stats": [ - 3310 + 3058 ], "multi_kills": [ - 5341 + 5149 ], "name": [ 78 @@ -87570,79 +83917,79 @@ export default { 3 ], "notifications": [ - 2738 + 2486 ], "objectives": [ - 3343 + 3091 ], "owned_teams": [ - 4287 + 4037 ], "pending_match_imports": [ - 2788 + 2536 ], "player_lineup": [ - 2239 + 1987 ], "player_unused_utilities": [ - 3630 + 3378 ], "premier_rank": [ 38 ], "premier_rank_history": [ - 3402 + 3150 ], "premier_rank_updated_at": [ - 4324 + 4076 ], "profile_url": [ 78 ], "role": [ - 921 + 908 ], "roster_image_url": [ 78 ], "sanctions": [ - 3443 + 3191 ], "season_stats": [ - 3494 + 3242 ], "show_match_ready_modal": [ 3 ], "stats": [ - 3548 + 3296 ], "steam_bans_checked_at": [ - 4324 + 4076 ], "steam_id": [ 180 ], "team_invites": [ - 4004 + 3752 ], "team_members": [ - 4047 + 3795 ], "tournament_organizers": [ - 4378 + 4178 ], "tournament_rosters": [ - 4552 + 4393 ], "tournament_trophies": [ - 4637 + 4478 ], "tournaments": [ - 4724 + 4575 ], "utility_thrown": [ - 3671 + 3419 ], "vac_ban_count": [ 38 @@ -87651,7 +83998,7 @@ export default { 3 ], "weapon_stats": [ - 3712 + 3460 ], "__typename": [ 78 @@ -87665,10 +84012,10 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "current_lobby_id": [ - 4762 + 4621 ], "custom_avatar_url": [ 78 @@ -87692,7 +84039,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4076 ], "faceit_url": [ 78 @@ -87704,10 +84051,10 @@ export default { 78 ], "last_read_news_at": [ - 4324 + 4076 ], "last_sign_in_at": [ - 4324 + 4076 ], "losses": [ 38 @@ -87722,7 +84069,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4324 + 4076 ], "name": [ 78 @@ -87731,7 +84078,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4076 ], "profile_url": [ 78 @@ -87740,7 +84087,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -87775,10 +84122,10 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "current_lobby_id": [ - 4762 + 4621 ], "custom_avatar_url": [ 78 @@ -87802,7 +84149,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4076 ], "faceit_url": [ 78 @@ -87814,10 +84161,10 @@ export default { 78 ], "last_read_news_at": [ - 4324 + 4076 ], "last_sign_in_at": [ - 4324 + 4076 ], "losses": [ 38 @@ -87832,7 +84179,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4324 + 4076 ], "name": [ 78 @@ -87841,7 +84188,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4076 ], "profile_url": [ 78 @@ -87850,7 +84197,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -87882,7 +84229,7 @@ export default { 38 ], "returning": [ - 3739 + 3487 ], "__typename": [ 78 @@ -87890,10 +84237,10 @@ export default { }, "players_obj_rel_insert_input": { "data": [ - 3746 + 3494 ], "on_conflict": [ - 3751 + 3499 ], "__typename": [ 78 @@ -87901,13 +84248,13 @@ export default { }, "players_on_conflict": { "constraint": [ - 3744 + 3492 ], "update_columns": [ - 3762 + 3510 ], "where": [ - 3743 + 3491 ], "__typename": [ 78 @@ -87918,268 +84265,268 @@ export default { 116 ], "aim_weapon_stats_aggregate": [ - 2883 + 2631 ], "assists_aggregate": [ - 2926 + 2674 ], "assited_by_players_aggregate": [ - 2926 + 2674 ], "avatar_url": [ - 2781 + 2529 ], "coach_lineups_aggregate": [ - 2281 + 2029 ], "country": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "current_lobby_id": [ - 2781 + 2529 ], "custom_avatar_url": [ - 2781 + 2529 ], "damage_dealt_aggregate": [ - 2987 + 2735 ], "damage_taken_aggregate": [ - 2987 + 2735 ], "days_since_last_ban": [ - 2781 + 2529 ], "deaths_aggregate": [ - 3143 + 2891 ], "discord_id": [ - 2781 + 2529 ], "draft_game_players_aggregate": [ - 316 + 343 ], "elo": [ - 2781 + 2529 ], "elo_history_aggregate": [ - 5154 + 4962 ], "faceit_elo": [ - 2781 + 2529 ], "faceit_nickname": [ - 2781 + 2529 ], "faceit_player_id": [ - 2781 + 2529 ], "faceit_rank_history_aggregate": [ - 3055 + 2803 ], "faceit_skill_level": [ - 2781 + 2529 ], "faceit_updated_at": [ - 2781 + 2529 ], "faceit_url": [ - 2781 + 2529 ], "flashed_by_players_aggregate": [ - 3098 + 2846 ], "flashed_players_aggregate": [ - 3098 + 2846 ], "friends_aggregate": [ - 2663 + 2411 ], "game_ban_count": [ - 2781 + 2529 ], "invited_players_aggregate": [ - 4003 + 3751 ], "is_banned": [ - 2781 + 2529 ], "is_gagged": [ - 2781 + 2529 ], "is_in_another_match": [ - 2781 + 2529 ], "is_in_draft": [ - 2781 + 2529 ], "is_in_lobby": [ - 2781 + 2529 ], "is_muted": [ - 2781 + 2529 ], "kills_aggregate": [ - 3143 + 2891 ], "kills_by_weapons_aggregate": [ - 3153 + 2901 ], "language": [ - 2781 + 2529 ], "last_read_news_at": [ - 2781 + 2529 ], "last_sign_in_at": [ - 2781 + 2529 ], "lobby_players_aggregate": [ - 2057 + 1805 ], "losses": [ - 2781 + 2529 ], "losses_competitive": [ - 2781 + 2529 ], "losses_duel": [ - 2781 + 2529 ], "losses_wingman": [ - 2781 + 2529 ], "match_map_hltv_aggregate": [ - 5249 + 5057 ], "match_map_stats_aggregate": [ - 3250 + 2998 ], "match_stats_aggregate": [ - 3309 + 3057 ], "matches_aggregate": [ - 2601 + 2349 ], "matchmaking_cooldown": [ - 2781 + 2529 ], "multi_kills_aggregate": [ - 5340 + 5148 ], "name": [ - 2781 + 2529 ], "name_registered": [ - 2781 + 2529 ], "notifications_aggregate": [ - 2736 + 2484 ], "objectives_aggregate": [ - 3342 + 3090 ], "owned_teams_aggregate": [ - 4286 + 4036 ], "peak_elo": [ - 2781 + 2529 ], "pending_match_imports_aggregate": [ - 2787 + 2535 ], "player_lineup_aggregate": [ - 2238 + 1986 ], "player_unused_utilities_aggregate": [ - 3629 + 3377 ], "premier_rank": [ - 2781 + 2529 ], "premier_rank_history_aggregate": [ - 3401 + 3149 ], "premier_rank_updated_at": [ - 2781 + 2529 ], "profile_url": [ - 2781 + 2529 ], "role": [ - 2781 + 2529 ], "roster_image_url": [ - 2781 + 2529 ], "sanctions_aggregate": [ - 3442 + 3190 ], "season_stats_aggregate": [ - 3493 + 3241 ], "show_match_ready_modal": [ - 2781 + 2529 ], "stats": [ - 3550 + 3298 ], "steam_bans_checked_at": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_invites_aggregate": [ - 4003 + 3751 ], "team_members_aggregate": [ - 4046 + 3794 ], "teams_aggregate": [ - 4286 + 4036 ], "total_matches": [ - 2781 + 2529 ], "tournament_organizers_aggregate": [ - 4377 + 4177 ], "tournament_rosters_aggregate": [ - 4551 + 4392 ], "tournament_trophies_aggregate": [ - 4636 + 4477 ], "tournaments_aggregate": [ - 4723 + 4574 ], "utility_thrown_aggregate": [ - 3670 + 3418 ], "vac_ban_count": [ - 2781 + 2529 ], "vac_banned": [ - 2781 + 2529 ], "weapon_stats_aggregate": [ - 3711 + 3459 ], "wins": [ - 2781 + 2529 ], "wins_competitive": [ - 2781 + 2529 ], "wins_duel": [ - 2781 + 2529 ], "wins_wingman": [ - 2781 + 2529 ], "__typename": [ 78 @@ -88202,7 +84549,7 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "custom_avatar_url": [ 78 @@ -88226,7 +84573,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4076 ], "faceit_url": [ 78 @@ -88238,10 +84585,10 @@ export default { 78 ], "last_read_news_at": [ - 4324 + 4076 ], "last_sign_in_at": [ - 4324 + 4076 ], "name": [ 78 @@ -88253,13 +84600,13 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4076 ], "profile_url": [ 78 ], "role": [ - 921 + 908 ], "roster_image_url": [ 78 @@ -88268,7 +84615,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -88444,7 +84791,7 @@ export default { }, "players_stream_cursor_input": { "initial_value": [ - 3760 + 3508 ], "ordering": [ 236 @@ -88461,7 +84808,7 @@ export default { 78 ], "created_at": [ - 4324 + 4076 ], "custom_avatar_url": [ 78 @@ -88485,7 +84832,7 @@ export default { 38 ], "faceit_updated_at": [ - 4324 + 4076 ], "faceit_url": [ 78 @@ -88497,10 +84844,10 @@ export default { 78 ], "last_read_news_at": [ - 4324 + 4076 ], "last_sign_in_at": [ - 4324 + 4076 ], "name": [ 78 @@ -88512,13 +84859,13 @@ export default { 38 ], "premier_rank_updated_at": [ - 4324 + 4076 ], "profile_url": [ 78 ], "role": [ - 921 + 908 ], "roster_image_url": [ 78 @@ -88527,7 +84874,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -88598,13 +84945,13 @@ export default { "players_update_column": {}, "players_updates": { "_inc": [ - 3745 + 3493 ], "_set": [ - 3755 + 3503 ], "where": [ - 3743 + 3491 ], "__typename": [ 78 @@ -88774,10 +85121,10 @@ export default { 38 ], "published_at": [ - 4324 + 4076 ], "runtime": [ - 941 + 928 ], "version": [ 78 @@ -88788,10 +85135,10 @@ export default { }, "plugin_versions_aggregate": { "aggregate": [ - 3769 + 3517 ], "nodes": [ - 3767 + 3515 ], "__typename": [ 78 @@ -88799,13 +85146,13 @@ export default { }, "plugin_versions_aggregate_fields": { "avg": [ - 3770 + 3518 ], "count": [ 38, { "columns": [ - 3781, + 3529, "[plugin_versions_select_column!]" ], "distinct": [ @@ -88814,31 +85161,31 @@ export default { } ], "max": [ - 3775 + 3523 ], "min": [ - 3776 + 3524 ], "stddev": [ - 3783 + 3531 ], "stddev_pop": [ - 3784 + 3532 ], "stddev_samp": [ - 3785 + 3533 ], "sum": [ - 3788 + 3536 ], "var_pop": [ - 3791 + 3539 ], "var_samp": [ - 3792 + 3540 ], "variance": [ - 3793 + 3541 ], "__typename": [ 78 @@ -88854,22 +85201,22 @@ export default { }, "plugin_versions_bool_exp": { "_and": [ - 3771 + 3519 ], "_not": [ - 3771 + 3519 ], "_or": [ - 3771 + 3519 ], "min_game_build_id": [ 39 ], "published_at": [ - 4325 + 4077 ], "runtime": [ - 942 + 929 ], "version": [ 80 @@ -88892,10 +85239,10 @@ export default { 38 ], "published_at": [ - 4324 + 4076 ], "runtime": [ - 941 + 928 ], "version": [ 78 @@ -88909,7 +85256,7 @@ export default { 38 ], "published_at": [ - 4324 + 4076 ], "version": [ 78 @@ -88923,7 +85270,7 @@ export default { 38 ], "published_at": [ - 4324 + 4076 ], "version": [ 78 @@ -88937,7 +85284,7 @@ export default { 38 ], "returning": [ - 3767 + 3515 ], "__typename": [ 78 @@ -88945,13 +85292,13 @@ export default { }, "plugin_versions_on_conflict": { "constraint": [ - 3772 + 3520 ], "update_columns": [ - 3789 + 3537 ], "where": [ - 3771 + 3519 ], "__typename": [ 78 @@ -88959,16 +85306,16 @@ export default { }, "plugin_versions_order_by": { "min_game_build_id": [ - 2781 + 2529 ], "published_at": [ - 2781 + 2529 ], "runtime": [ - 2781 + 2529 ], "version": [ - 2781 + 2529 ], "__typename": [ 78 @@ -88976,7 +85323,7 @@ export default { }, "plugin_versions_pk_columns_input": { "runtime": [ - 941 + 928 ], "version": [ 78 @@ -88991,10 +85338,10 @@ export default { 38 ], "published_at": [ - 4324 + 4076 ], "runtime": [ - 941 + 928 ], "version": [ 78 @@ -89029,7 +85376,7 @@ export default { }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 3787 + 3535 ], "ordering": [ 236 @@ -89043,10 +85390,10 @@ export default { 38 ], "published_at": [ - 4324 + 4076 ], "runtime": [ - 941 + 928 ], "version": [ 78 @@ -89066,13 +85413,13 @@ export default { "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 3773 + 3521 ], "_set": [ - 3782 + 3530 ], "where": [ - 3771 + 3519 ], "__typename": [ 78 @@ -89104,7 +85451,7 @@ export default { }, "recalculate_tournament_trophies_args": { "_tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -89112,7 +85459,7 @@ export default { }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -89128,7 +85475,7 @@ export default { }, "restart_league_season_args": { "_league_season_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -89136,16 +85483,16 @@ export default { }, "seasons": { "created_at": [ - 4324 + 4076 ], "description": [ 78 ], "ends_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "needs_rebuild": [ 3 @@ -89154,10 +85501,10 @@ export default { 38 ], "player_season_stats": [ - 3478, + 3226, { "distinct_on": [ - 3509, + 3257, "[player_season_stats_select_column!]" ], "limit": [ @@ -89167,19 +85514,19 @@ export default { 38 ], "order_by": [ - 3507, + 3255, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3245 ] } ], "player_season_stats_aggregate": [ - 3479, + 3227, { "distinct_on": [ - 3509, + 3257, "[player_season_stats_select_column!]" ], "limit": [ @@ -89189,16 +85536,16 @@ export default { 38 ], "order_by": [ - 3507, + 3255, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3245 ] } ], "starts_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -89206,10 +85553,10 @@ export default { }, "seasons_aggregate": { "aggregate": [ - 3800 + 3548 ], "nodes": [ - 3798 + 3546 ], "__typename": [ 78 @@ -89217,13 +85564,13 @@ export default { }, "seasons_aggregate_fields": { "avg": [ - 3801 + 3549 ], "count": [ 38, { "columns": [ - 3813, + 3561, "[seasons_select_column!]" ], "distinct": [ @@ -89232,31 +85579,31 @@ export default { } ], "max": [ - 3806 + 3554 ], "min": [ - 3807 + 3555 ], "stddev": [ - 3815 + 3563 ], "stddev_pop": [ - 3816 + 3564 ], "stddev_samp": [ - 3817 + 3565 ], "sum": [ - 3820 + 3568 ], "var_pop": [ - 3823 + 3571 ], "var_samp": [ - 3824 + 3572 ], "variance": [ - 3825 + 3573 ], "__typename": [ 78 @@ -89272,25 +85619,25 @@ export default { }, "seasons_bool_exp": { "_and": [ - 3802 + 3550 ], "_not": [ - 3802 + 3550 ], "_or": [ - 3802 + 3550 ], "created_at": [ - 4325 + 4077 ], "description": [ 80 ], "ends_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "needs_rebuild": [ 4 @@ -89299,13 +85646,13 @@ export default { 39 ], "player_season_stats": [ - 3497 + 3245 ], "player_season_stats_aggregate": [ - 3480 + 3228 ], "starts_at": [ - 4325 + 4077 ], "__typename": [ 78 @@ -89322,16 +85669,16 @@ export default { }, "seasons_insert_input": { "created_at": [ - 4324 + 4076 ], "description": [ 78 ], "ends_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "needs_rebuild": [ 3 @@ -89340,10 +85687,10 @@ export default { 38 ], "player_season_stats": [ - 3494 + 3242 ], "starts_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -89351,22 +85698,22 @@ export default { }, "seasons_max_fields": { "created_at": [ - 4324 + 4076 ], "description": [ 78 ], "ends_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "number": [ 38 ], "starts_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -89374,22 +85721,22 @@ export default { }, "seasons_min_fields": { "created_at": [ - 4324 + 4076 ], "description": [ 78 ], "ends_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "number": [ 38 ], "starts_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -89400,7 +85747,7 @@ export default { 38 ], "returning": [ - 3798 + 3546 ], "__typename": [ 78 @@ -89408,10 +85755,10 @@ export default { }, "seasons_obj_rel_insert_input": { "data": [ - 3805 + 3553 ], "on_conflict": [ - 3810 + 3558 ], "__typename": [ 78 @@ -89419,13 +85766,13 @@ export default { }, "seasons_on_conflict": { "constraint": [ - 3803 + 3551 ], "update_columns": [ - 3821 + 3569 ], "where": [ - 3802 + 3550 ], "__typename": [ 78 @@ -89433,28 +85780,28 @@ export default { }, "seasons_order_by": { "created_at": [ - 2781 + 2529 ], "description": [ - 2781 + 2529 ], "ends_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "needs_rebuild": [ - 2781 + 2529 ], "number": [ - 2781 + 2529 ], "player_season_stats_aggregate": [ - 3493 + 3241 ], "starts_at": [ - 2781 + 2529 ], "__typename": [ 78 @@ -89462,7 +85809,7 @@ export default { }, "seasons_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -89471,16 +85818,16 @@ export default { "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4324 + 4076 ], "description": [ 78 ], "ends_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "needs_rebuild": [ 3 @@ -89489,7 +85836,7 @@ export default { 38 ], "starts_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -89521,7 +85868,7 @@ export default { }, "seasons_stream_cursor_input": { "initial_value": [ - 3819 + 3567 ], "ordering": [ 236 @@ -89532,16 +85879,16 @@ export default { }, "seasons_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "description": [ 78 ], "ends_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "needs_rebuild": [ 3 @@ -89550,7 +85897,7 @@ export default { 38 ], "starts_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -89567,13 +85914,13 @@ export default { "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 3804 + 3552 ], "_set": [ - 3814 + 3562 ], "where": [ - 3802 + 3550 ], "__typename": [ 78 @@ -89611,10 +85958,10 @@ export default { 78 ], "game_server_nodes": [ - 1528, + 1277, { "distinct_on": [ - 1557, + 1306, "[game_server_nodes_select_column!]" ], "limit": [ @@ -89624,19 +85971,19 @@ export default { 38 ], "order_by": [ - 1554, + 1303, "[game_server_nodes_order_by!]" ], "where": [ - 1540 + 1289 ] } ], "game_server_nodes_aggregate": [ - 1529, + 1278, { "distinct_on": [ - 1557, + 1306, "[game_server_nodes_select_column!]" ], "limit": [ @@ -89646,11 +85993,11 @@ export default { 38 ], "order_by": [ - 1554, + 1303, "[game_server_nodes_order_by!]" ], "where": [ - 1540 + 1289 ] } ], @@ -89678,10 +86025,10 @@ export default { }, "server_regions_aggregate": { "aggregate": [ - 3828 + 3576 ], "nodes": [ - 3826 + 3574 ], "__typename": [ 78 @@ -89689,13 +86036,13 @@ export default { }, "server_regions_aggregate_fields": { "avg": [ - 3829 + 3577 ], "count": [ 38, { "columns": [ - 3840, + 3588, "[server_regions_select_column!]" ], "distinct": [ @@ -89704,31 +86051,31 @@ export default { } ], "max": [ - 3833 + 3581 ], "min": [ - 3834 + 3582 ], "stddev": [ - 3842 + 3590 ], "stddev_pop": [ - 3843 + 3591 ], "stddev_samp": [ - 3844 + 3592 ], "sum": [ - 3847 + 3595 ], "var_pop": [ - 3850 + 3598 ], "var_samp": [ - 3851 + 3599 ], "variance": [ - 3852 + 3600 ], "__typename": [ 78 @@ -89747,13 +86094,13 @@ export default { }, "server_regions_bool_exp": { "_and": [ - 3830 + 3578 ], "_not": [ - 3830 + 3578 ], "_or": [ - 3830 + 3578 ], "available_server_count": [ 39 @@ -89762,10 +86109,10 @@ export default { 80 ], "game_server_nodes": [ - 1540 + 1289 ], "game_server_nodes_aggregate": [ - 1530 + 1279 ], "has_node": [ 4 @@ -89795,7 +86142,7 @@ export default { 78 ], "game_server_nodes": [ - 1537 + 1286 ], "is_lan": [ 3 @@ -89855,7 +86202,7 @@ export default { 38 ], "returning": [ - 3826 + 3574 ], "__typename": [ 78 @@ -89863,10 +86210,10 @@ export default { }, "server_regions_obj_rel_insert_input": { "data": [ - 3832 + 3580 ], "on_conflict": [ - 3837 + 3585 ], "__typename": [ 78 @@ -89874,13 +86221,13 @@ export default { }, "server_regions_on_conflict": { "constraint": [ - 3831 + 3579 ], "update_columns": [ - 3848 + 3596 ], "where": [ - 3830 + 3578 ], "__typename": [ 78 @@ -89888,31 +86235,31 @@ export default { }, "server_regions_order_by": { "available_server_count": [ - 2781 + 2529 ], "description": [ - 2781 + 2529 ], "game_server_nodes_aggregate": [ - 1535 + 1284 ], "has_node": [ - 2781 + 2529 ], "is_lan": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "steam_relay": [ - 2781 + 2529 ], "total_server_count": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -89979,7 +86326,7 @@ export default { }, "server_regions_stream_cursor_input": { "initial_value": [ - 3846 + 3594 ], "ordering": [ 236 @@ -90019,10 +86366,10 @@ export default { "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 3841 + 3589 ], "where": [ - 3830 + 3578 ], "__typename": [ 78 @@ -90063,7 +86410,7 @@ export default { }, "servers": { "api_password": [ - 4762 + 4621 ], "boot_status": [ 78 @@ -90084,7 +86431,7 @@ export default { 78 ], "current_match": [ - 2596 + 2344 ], "enabled": [ 3 @@ -90093,7 +86440,7 @@ export default { 78 ], "game_server_node": [ - 1528 + 1277 ], "game_server_node_id": [ 78 @@ -90102,7 +86449,7 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "is_dedicated": [ 3 @@ -90111,10 +86458,10 @@ export default { 78 ], "matches": [ - 2596, + 2344, { "distinct_on": [ - 2618, + 2366, "[matches_select_column!]" ], "limit": [ @@ -90124,19 +86471,19 @@ export default { 38 ], "order_by": [ - 2616, + 2364, "[matches_order_by!]" ], "where": [ - 2605 + 2353 ] } ], "matches_aggregate": [ - 2597, + 2345, { "distinct_on": [ - 2618, + 2366, "[matches_select_column!]" ], "limit": [ @@ -90146,11 +86493,11 @@ export default { 38 ], "order_by": [ - 2616, + 2364, "[matches_order_by!]" ], "where": [ - 2605 + 2353 ] } ], @@ -90158,10 +86505,10 @@ export default { 38 ], "offline_at": [ - 4324 + 4076 ], "plugin_runtime": [ - 941 + 928 ], "plugin_version": [ 78 @@ -90179,10 +86526,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4762 + 4621 ], "server_region": [ - 3826 + 3574 ], "steam_relay": [ 78 @@ -90191,10 +86538,10 @@ export default { 38 ], "type": [ - 1022 + 1009 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -90202,10 +86549,10 @@ export default { }, "servers_aggregate": { "aggregate": [ - 3859 + 3607 ], "nodes": [ - 3853 + 3601 ], "__typename": [ 78 @@ -90213,13 +86560,13 @@ export default { }, "servers_aggregate_bool_exp": { "bool_and": [ - 3856 + 3604 ], "bool_or": [ - 3857 + 3605 ], "count": [ - 3858 + 3606 ], "__typename": [ 78 @@ -90227,13 +86574,13 @@ export default { }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 3878 + 3626 ], "distinct": [ 3 ], "filter": [ - 3864 + 3612 ], "predicate": [ 4 @@ -90244,13 +86591,13 @@ export default { }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 3879 + 3627 ], "distinct": [ 3 ], "filter": [ - 3864 + 3612 ], "predicate": [ 4 @@ -90261,13 +86608,13 @@ export default { }, "servers_aggregate_bool_exp_count": { "arguments": [ - 3877 + 3625 ], "distinct": [ 3 ], "filter": [ - 3864 + 3612 ], "predicate": [ 39 @@ -90278,13 +86625,13 @@ export default { }, "servers_aggregate_fields": { "avg": [ - 3862 + 3610 ], "count": [ 38, { "columns": [ - 3877, + 3625, "[servers_select_column!]" ], "distinct": [ @@ -90293,31 +86640,31 @@ export default { } ], "max": [ - 3868 + 3616 ], "min": [ - 3870 + 3618 ], "stddev": [ - 3881 + 3629 ], "stddev_pop": [ - 3883 + 3631 ], "stddev_samp": [ - 3885 + 3633 ], "sum": [ - 3889 + 3637 ], "var_pop": [ - 3893 + 3641 ], "var_samp": [ - 3895 + 3643 ], "variance": [ - 3897 + 3645 ], "__typename": [ 78 @@ -90325,37 +86672,37 @@ export default { }, "servers_aggregate_order_by": { "avg": [ - 3863 + 3611 ], "count": [ - 2781 + 2529 ], "max": [ - 3869 + 3617 ], "min": [ - 3871 + 3619 ], "stddev": [ - 3882 + 3630 ], "stddev_pop": [ - 3884 + 3632 ], "stddev_samp": [ - 3886 + 3634 ], "sum": [ - 3890 + 3638 ], "var_pop": [ - 3894 + 3642 ], "var_samp": [ - 3896 + 3644 ], "variance": [ - 3898 + 3646 ], "__typename": [ 78 @@ -90363,10 +86710,10 @@ export default { }, "servers_arr_rel_insert_input": { "data": [ - 3867 + 3615 ], "on_conflict": [ - 3874 + 3622 ], "__typename": [ 78 @@ -90388,13 +86735,13 @@ export default { }, "servers_avg_order_by": { "max_players": [ - 2781 + 2529 ], "port": [ - 2781 + 2529 ], "tv_port": [ - 2781 + 2529 ], "__typename": [ 78 @@ -90402,16 +86749,16 @@ export default { }, "servers_bool_exp": { "_and": [ - 3864 + 3612 ], "_not": [ - 3864 + 3612 ], "_or": [ - 3864 + 3612 ], "api_password": [ - 4764 + 4623 ], "boot_status": [ 80 @@ -90432,7 +86779,7 @@ export default { 80 ], "current_match": [ - 2605 + 2353 ], "enabled": [ 4 @@ -90441,7 +86788,7 @@ export default { 80 ], "game_server_node": [ - 1540 + 1289 ], "game_server_node_id": [ 80 @@ -90450,7 +86797,7 @@ export default { 80 ], "id": [ - 4764 + 4623 ], "is_dedicated": [ 4 @@ -90459,19 +86806,19 @@ export default { 80 ], "matches": [ - 2605 + 2353 ], "matches_aggregate": [ - 2598 + 2346 ], "max_players": [ 39 ], "offline_at": [ - 4325 + 4077 ], "plugin_runtime": [ - 942 + 929 ], "plugin_version": [ 80 @@ -90489,10 +86836,10 @@ export default { 80 ], "reserved_by_match_id": [ - 4764 + 4623 ], "server_region": [ - 3830 + 3578 ], "steam_relay": [ 80 @@ -90501,10 +86848,10 @@ export default { 39 ], "type": [ - 1023 + 1010 ], "updated_at": [ - 4325 + 4077 ], "__typename": [ 78 @@ -90527,7 +86874,7 @@ export default { }, "servers_insert_input": { "api_password": [ - 4762 + 4621 ], "boot_status": [ 78 @@ -90542,7 +86889,7 @@ export default { 3 ], "current_match": [ - 2614 + 2362 ], "enabled": [ 3 @@ -90551,7 +86898,7 @@ export default { 78 ], "game_server_node": [ - 1552 + 1301 ], "game_server_node_id": [ 78 @@ -90560,7 +86907,7 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "is_dedicated": [ 3 @@ -90569,16 +86916,16 @@ export default { 78 ], "matches": [ - 2602 + 2350 ], "max_players": [ 38 ], "offline_at": [ - 4324 + 4076 ], "plugin_runtime": [ - 941 + 928 ], "plugin_version": [ 78 @@ -90596,10 +86943,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4762 + 4621 ], "server_region": [ - 3836 + 3584 ], "steam_relay": [ 78 @@ -90608,10 +86955,10 @@ export default { 38 ], "type": [ - 1022 + 1009 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -90619,7 +86966,7 @@ export default { }, "servers_max_fields": { "api_password": [ - 4762 + 4621 ], "boot_status": [ 78 @@ -90646,7 +86993,7 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "label": [ 78 @@ -90655,7 +87002,7 @@ export default { 38 ], "offline_at": [ - 4324 + 4076 ], "plugin_version": [ 78 @@ -90667,7 +87014,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4762 + 4621 ], "steam_relay": [ 78 @@ -90676,7 +87023,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -90684,58 +87031,58 @@ export default { }, "servers_max_order_by": { "api_password": [ - 2781 + 2529 ], "boot_status": [ - 2781 + 2529 ], "boot_status_detail": [ - 2781 + 2529 ], "connect_password": [ - 2781 + 2529 ], "game": [ - 2781 + 2529 ], "game_server_node_id": [ - 2781 + 2529 ], "host": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "max_players": [ - 2781 + 2529 ], "offline_at": [ - 2781 + 2529 ], "plugin_version": [ - 2781 + 2529 ], "port": [ - 2781 + 2529 ], "region": [ - 2781 + 2529 ], "reserved_by_match_id": [ - 2781 + 2529 ], "steam_relay": [ - 2781 + 2529 ], "tv_port": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "__typename": [ 78 @@ -90743,7 +87090,7 @@ export default { }, "servers_min_fields": { "api_password": [ - 4762 + 4621 ], "boot_status": [ 78 @@ -90770,7 +87117,7 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "label": [ 78 @@ -90779,7 +87126,7 @@ export default { 38 ], "offline_at": [ - 4324 + 4076 ], "plugin_version": [ 78 @@ -90791,7 +87138,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4762 + 4621 ], "steam_relay": [ 78 @@ -90800,7 +87147,7 @@ export default { 38 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -90808,58 +87155,58 @@ export default { }, "servers_min_order_by": { "api_password": [ - 2781 + 2529 ], "boot_status": [ - 2781 + 2529 ], "boot_status_detail": [ - 2781 + 2529 ], "connect_password": [ - 2781 + 2529 ], "game": [ - 2781 + 2529 ], "game_server_node_id": [ - 2781 + 2529 ], "host": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "max_players": [ - 2781 + 2529 ], "offline_at": [ - 2781 + 2529 ], "plugin_version": [ - 2781 + 2529 ], "port": [ - 2781 + 2529 ], "region": [ - 2781 + 2529 ], "reserved_by_match_id": [ - 2781 + 2529 ], "steam_relay": [ - 2781 + 2529 ], "tv_port": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "__typename": [ 78 @@ -90870,7 +87217,7 @@ export default { 38 ], "returning": [ - 3853 + 3601 ], "__typename": [ 78 @@ -90878,10 +87225,10 @@ export default { }, "servers_obj_rel_insert_input": { "data": [ - 3867 + 3615 ], "on_conflict": [ - 3874 + 3622 ], "__typename": [ 78 @@ -90889,13 +87236,13 @@ export default { }, "servers_on_conflict": { "constraint": [ - 3865 + 3613 ], "update_columns": [ - 3891 + 3639 ], "where": [ - 3864 + 3612 ], "__typename": [ 78 @@ -90903,97 +87250,97 @@ export default { }, "servers_order_by": { "api_password": [ - 2781 + 2529 ], "boot_status": [ - 2781 + 2529 ], "boot_status_detail": [ - 2781 + 2529 ], "connect_password": [ - 2781 + 2529 ], "connected": [ - 2781 + 2529 ], "connection_link": [ - 2781 + 2529 ], "connection_string": [ - 2781 + 2529 ], "current_match": [ - 2616 + 2364 ], "enabled": [ - 2781 + 2529 ], "game": [ - 2781 + 2529 ], "game_server_node": [ - 1554 + 1303 ], "game_server_node_id": [ - 2781 + 2529 ], "host": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "is_dedicated": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "matches_aggregate": [ - 2601 + 2349 ], "max_players": [ - 2781 + 2529 ], "offline_at": [ - 2781 + 2529 ], "plugin_runtime": [ - 2781 + 2529 ], "plugin_version": [ - 2781 + 2529 ], "port": [ - 2781 + 2529 ], "rcon_password": [ - 2781 + 2529 ], "rcon_status": [ - 2781 + 2529 ], "region": [ - 2781 + 2529 ], "reserved_by_match_id": [ - 2781 + 2529 ], "server_region": [ - 3838 + 3586 ], "steam_relay": [ - 2781 + 2529 ], "tv_port": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "__typename": [ 78 @@ -91001,7 +87348,7 @@ export default { }, "servers_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -91012,7 +87359,7 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 4762 + 4621 ], "boot_status": [ 78 @@ -91039,7 +87386,7 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "is_dedicated": [ 3 @@ -91051,10 +87398,10 @@ export default { 38 ], "offline_at": [ - 4324 + 4076 ], "plugin_runtime": [ - 941 + 928 ], "plugin_version": [ 78 @@ -91072,7 +87419,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4762 + 4621 ], "steam_relay": [ 78 @@ -91081,10 +87428,10 @@ export default { 38 ], "type": [ - 1022 + 1009 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -91106,13 +87453,13 @@ export default { }, "servers_stddev_order_by": { "max_players": [ - 2781 + 2529 ], "port": [ - 2781 + 2529 ], "tv_port": [ - 2781 + 2529 ], "__typename": [ 78 @@ -91134,13 +87481,13 @@ export default { }, "servers_stddev_pop_order_by": { "max_players": [ - 2781 + 2529 ], "port": [ - 2781 + 2529 ], "tv_port": [ - 2781 + 2529 ], "__typename": [ 78 @@ -91162,13 +87509,13 @@ export default { }, "servers_stddev_samp_order_by": { "max_players": [ - 2781 + 2529 ], "port": [ - 2781 + 2529 ], "tv_port": [ - 2781 + 2529 ], "__typename": [ 78 @@ -91176,7 +87523,7 @@ export default { }, "servers_stream_cursor_input": { "initial_value": [ - 3888 + 3636 ], "ordering": [ 236 @@ -91187,7 +87534,7 @@ export default { }, "servers_stream_cursor_value_input": { "api_password": [ - 4762 + 4621 ], "boot_status": [ 78 @@ -91214,7 +87561,7 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "is_dedicated": [ 3 @@ -91226,10 +87573,10 @@ export default { 38 ], "offline_at": [ - 4324 + 4076 ], "plugin_runtime": [ - 941 + 928 ], "plugin_version": [ 78 @@ -91247,7 +87594,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4762 + 4621 ], "steam_relay": [ 78 @@ -91256,10 +87603,10 @@ export default { 38 ], "type": [ - 1022 + 1009 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -91281,13 +87628,13 @@ export default { }, "servers_sum_order_by": { "max_players": [ - 2781 + 2529 ], "port": [ - 2781 + 2529 ], "tv_port": [ - 2781 + 2529 ], "__typename": [ 78 @@ -91296,13 +87643,13 @@ export default { "servers_update_column": {}, "servers_updates": { "_inc": [ - 3866 + 3614 ], "_set": [ - 3880 + 3628 ], "where": [ - 3864 + 3612 ], "__typename": [ 78 @@ -91324,13 +87671,13 @@ export default { }, "servers_var_pop_order_by": { "max_players": [ - 2781 + 2529 ], "port": [ - 2781 + 2529 ], "tv_port": [ - 2781 + 2529 ], "__typename": [ 78 @@ -91352,13 +87699,13 @@ export default { }, "servers_var_samp_order_by": { "max_players": [ - 2781 + 2529 ], "port": [ - 2781 + 2529 ], "tv_port": [ - 2781 + 2529 ], "__typename": [ 78 @@ -91380,13 +87727,13 @@ export default { }, "servers_variance_order_by": { "max_players": [ - 2781 + 2529 ], "port": [ - 2781 + 2529 ], "tv_port": [ - 2781 + 2529 ], "__typename": [ 78 @@ -91405,10 +87752,10 @@ export default { }, "settings_aggregate": { "aggregate": [ - 3901 + 3649 ], "nodes": [ - 3899 + 3647 ], "__typename": [ 78 @@ -91419,7 +87766,7 @@ export default { 38, { "columns": [ - 3911, + 3659, "[settings_select_column!]" ], "distinct": [ @@ -91428,10 +87775,10 @@ export default { } ], "max": [ - 3905 + 3653 ], "min": [ - 3906 + 3654 ], "__typename": [ 78 @@ -91439,13 +87786,13 @@ export default { }, "settings_bool_exp": { "_and": [ - 3902 + 3650 ], "_not": [ - 3902 + 3650 ], "_or": [ - 3902 + 3650 ], "name": [ 80 @@ -91496,7 +87843,7 @@ export default { 38 ], "returning": [ - 3899 + 3647 ], "__typename": [ 78 @@ -91504,13 +87851,13 @@ export default { }, "settings_on_conflict": { "constraint": [ - 3903 + 3651 ], "update_columns": [ - 3915 + 3663 ], "where": [ - 3902 + 3650 ], "__typename": [ 78 @@ -91518,10 +87865,10 @@ export default { }, "settings_order_by": { "name": [ - 2781 + 2529 ], "value": [ - 2781 + 2529 ], "__typename": [ 78 @@ -91549,7 +87896,7 @@ export default { }, "settings_stream_cursor_input": { "initial_value": [ - 3914 + 3662 ], "ordering": [ 236 @@ -91572,10 +87919,10 @@ export default { "settings_update_column": {}, "settings_updates": { "_set": [ - 3912 + 3660 ], "where": [ - 3902 + 3650 ], "__typename": [ 78 @@ -91584,31 +87931,31 @@ export default { "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 3917 + 3665 ], "_gt": [ - 3917 + 3665 ], "_gte": [ - 3917 + 3665 ], "_in": [ - 3917 + 3665 ], "_is_null": [ 3 ], "_lt": [ - 3917 + 3665 ], "_lte": [ - 3917 + 3665 ], "_neq": [ - 3917 + 3665 ], "_nin": [ - 3917 + 3665 ], "__typename": [ 78 @@ -91616,16 +87963,16 @@ export default { }, "steam_account_claims": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 ], "node": [ - 1528 + 1277 ], "node_id": [ 78 @@ -91634,10 +87981,10 @@ export default { 78 ], "steam_account": [ - 3943 + 3691 ], "steam_account_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -91645,10 +87992,10 @@ export default { }, "steam_account_claims_aggregate": { "aggregate": [ - 3923 + 3671 ], "nodes": [ - 3919 + 3667 ], "__typename": [ 78 @@ -91656,7 +88003,7 @@ export default { }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 3922 + 3670 ], "__typename": [ 78 @@ -91664,13 +88011,13 @@ export default { }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 3937 + 3685 ], "distinct": [ 3 ], "filter": [ - 3926 + 3674 ], "predicate": [ 39 @@ -91684,7 +88031,7 @@ export default { 38, { "columns": [ - 3937, + 3685, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -91693,10 +88040,10 @@ export default { } ], "max": [ - 3929 + 3677 ], "min": [ - 3931 + 3679 ], "__typename": [ 78 @@ -91704,13 +88051,13 @@ export default { }, "steam_account_claims_aggregate_order_by": { "count": [ - 2781 + 2529 ], "max": [ - 3930 + 3678 ], "min": [ - 3932 + 3680 ], "__typename": [ 78 @@ -91718,10 +88065,10 @@ export default { }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 3928 + 3676 ], "on_conflict": [ - 3934 + 3682 ], "__typename": [ 78 @@ -91729,25 +88076,25 @@ export default { }, "steam_account_claims_bool_exp": { "_and": [ - 3926 + 3674 ], "_not": [ - 3926 + 3674 ], "_or": [ - 3926 + 3674 ], "created_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "k8s_job_name": [ 80 ], "node": [ - 1540 + 1289 ], "node_id": [ 80 @@ -91756,10 +88103,10 @@ export default { 80 ], "steam_account": [ - 3947 + 3695 ], "steam_account_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -91768,16 +88115,16 @@ export default { "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 ], "node": [ - 1552 + 1301 ], "node_id": [ 78 @@ -91786,10 +88133,10 @@ export default { 78 ], "steam_account": [ - 3954 + 3702 ], "steam_account_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -91797,10 +88144,10 @@ export default { }, "steam_account_claims_max_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 @@ -91812,7 +88159,7 @@ export default { 78 ], "steam_account_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -91820,22 +88167,22 @@ export default { }, "steam_account_claims_max_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "k8s_job_name": [ - 2781 + 2529 ], "node_id": [ - 2781 + 2529 ], "purpose": [ - 2781 + 2529 ], "steam_account_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -91843,10 +88190,10 @@ export default { }, "steam_account_claims_min_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 @@ -91858,7 +88205,7 @@ export default { 78 ], "steam_account_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -91866,22 +88213,22 @@ export default { }, "steam_account_claims_min_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "k8s_job_name": [ - 2781 + 2529 ], "node_id": [ - 2781 + 2529 ], "purpose": [ - 2781 + 2529 ], "steam_account_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -91892,7 +88239,7 @@ export default { 38 ], "returning": [ - 3919 + 3667 ], "__typename": [ 78 @@ -91900,13 +88247,13 @@ export default { }, "steam_account_claims_on_conflict": { "constraint": [ - 3927 + 3675 ], "update_columns": [ - 3941 + 3689 ], "where": [ - 3926 + 3674 ], "__typename": [ 78 @@ -91914,28 +88261,28 @@ export default { }, "steam_account_claims_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "k8s_job_name": [ - 2781 + 2529 ], "node": [ - 1554 + 1303 ], "node_id": [ - 2781 + 2529 ], "purpose": [ - 2781 + 2529 ], "steam_account": [ - 3956 + 3704 ], "steam_account_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -91943,7 +88290,7 @@ export default { }, "steam_account_claims_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -91952,10 +88299,10 @@ export default { "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 @@ -91967,7 +88314,7 @@ export default { 78 ], "steam_account_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -91975,7 +88322,7 @@ export default { }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 3940 + 3688 ], "ordering": [ 236 @@ -91986,10 +88333,10 @@ export default { }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "k8s_job_name": [ 78 @@ -92001,7 +88348,7 @@ export default { 78 ], "steam_account_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -92010,10 +88357,10 @@ export default { "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 3938 + 3686 ], "where": [ - 3926 + 3674 ], "__typename": [ 78 @@ -92021,10 +88368,10 @@ export default { }, "steam_accounts": { "claims": [ - 3919, + 3667, { "distinct_on": [ - 3937, + 3685, "[steam_account_claims_select_column!]" ], "limit": [ @@ -92034,19 +88381,19 @@ export default { 38 ], "order_by": [ - 3935, + 3683, "[steam_account_claims_order_by!]" ], "where": [ - 3926 + 3674 ] } ], "claims_aggregate": [ - 3920, + 3668, { "distinct_on": [ - 3937, + 3685, "[steam_account_claims_select_column!]" ], "limit": [ @@ -92056,25 +88403,25 @@ export default { 38 ], "order_by": [ - 3935, + 3683, "[steam_account_claims_order_by!]" ], "where": [ - 3926 + 3674 ] } ], "created_at": [ - 4324 + 4076 ], "friend_capacity": [ 38 ], "id": [ - 4762 + 4621 ], "last_node": [ - 1528 + 1277 ], "last_node_id": [ 78 @@ -92092,7 +88439,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4076 ], "username": [ 78 @@ -92103,10 +88450,10 @@ export default { }, "steam_accounts_aggregate": { "aggregate": [ - 3945 + 3693 ], "nodes": [ - 3943 + 3691 ], "__typename": [ 78 @@ -92114,13 +88461,13 @@ export default { }, "steam_accounts_aggregate_fields": { "avg": [ - 3946 + 3694 ], "count": [ 38, { "columns": [ - 3958, + 3706, "[steam_accounts_select_column!]" ], "distinct": [ @@ -92129,31 +88476,31 @@ export default { } ], "max": [ - 3951 + 3699 ], "min": [ - 3952 + 3700 ], "stddev": [ - 3960 + 3708 ], "stddev_pop": [ - 3961 + 3709 ], "stddev_samp": [ - 3962 + 3710 ], "sum": [ - 3965 + 3713 ], "var_pop": [ - 3968 + 3716 ], "var_samp": [ - 3969 + 3717 ], "variance": [ - 3970 + 3718 ], "__typename": [ 78 @@ -92175,31 +88522,31 @@ export default { }, "steam_accounts_bool_exp": { "_and": [ - 3947 + 3695 ], "_not": [ - 3947 + 3695 ], "_or": [ - 3947 + 3695 ], "claims": [ - 3926 + 3674 ], "claims_aggregate": [ - 3921 + 3669 ], "created_at": [ - 4325 + 4077 ], "friend_capacity": [ 39 ], "id": [ - 4764 + 4623 ], "last_node": [ - 1540 + 1289 ], "last_node_id": [ 80 @@ -92217,7 +88564,7 @@ export default { 182 ], "updated_at": [ - 4325 + 4077 ], "username": [ 80 @@ -92243,19 +88590,19 @@ export default { }, "steam_accounts_insert_input": { "claims": [ - 3925 + 3673 ], "created_at": [ - 4324 + 4076 ], "friend_capacity": [ 38 ], "id": [ - 4762 + 4621 ], "last_node": [ - 1552 + 1301 ], "last_node_id": [ 78 @@ -92273,7 +88620,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4076 ], "username": [ 78 @@ -92284,13 +88631,13 @@ export default { }, "steam_accounts_max_fields": { "created_at": [ - 4324 + 4076 ], "friend_capacity": [ 38 ], "id": [ - 4762 + 4621 ], "last_node_id": [ 78 @@ -92308,7 +88655,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4076 ], "username": [ 78 @@ -92319,13 +88666,13 @@ export default { }, "steam_accounts_min_fields": { "created_at": [ - 4324 + 4076 ], "friend_capacity": [ 38 ], "id": [ - 4762 + 4621 ], "last_node_id": [ 78 @@ -92343,7 +88690,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4076 ], "username": [ 78 @@ -92357,7 +88704,7 @@ export default { 38 ], "returning": [ - 3943 + 3691 ], "__typename": [ 78 @@ -92365,10 +88712,10 @@ export default { }, "steam_accounts_obj_rel_insert_input": { "data": [ - 3950 + 3698 ], "on_conflict": [ - 3955 + 3703 ], "__typename": [ 78 @@ -92376,13 +88723,13 @@ export default { }, "steam_accounts_on_conflict": { "constraint": [ - 3948 + 3696 ], "update_columns": [ - 3966 + 3714 ], "where": [ - 3947 + 3695 ], "__typename": [ 78 @@ -92390,40 +88737,40 @@ export default { }, "steam_accounts_order_by": { "claims_aggregate": [ - 3924 + 3672 ], "created_at": [ - 2781 + 2529 ], "friend_capacity": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "last_node": [ - 1554 + 1303 ], "last_node_id": [ - 2781 + 2529 ], "password": [ - 2781 + 2529 ], "role": [ - 2781 + 2529 ], "steam_level": [ - 2781 + 2529 ], "steamid64": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "username": [ - 2781 + 2529 ], "__typename": [ 78 @@ -92431,7 +88778,7 @@ export default { }, "steam_accounts_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -92440,13 +88787,13 @@ export default { "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4324 + 4076 ], "friend_capacity": [ 38 ], "id": [ - 4762 + 4621 ], "last_node_id": [ 78 @@ -92464,7 +88811,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4076 ], "username": [ 78 @@ -92517,7 +88864,7 @@ export default { }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 3964 + 3712 ], "ordering": [ 236 @@ -92528,13 +88875,13 @@ export default { }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "friend_capacity": [ 38 ], "id": [ - 4762 + 4621 ], "last_node_id": [ 78 @@ -92552,7 +88899,7 @@ export default { 180 ], "updated_at": [ - 4324 + 4076 ], "username": [ 78 @@ -92578,13 +88925,13 @@ export default { "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 3949 + 3697 ], "_set": [ - 3959 + 3707 ], "where": [ - 3947 + 3695 ], "__typename": [ 78 @@ -92634,7 +88981,7 @@ export default { }, "system_alerts": { "created_at": [ - 4324 + 4076 ], "created_by": [ 180 @@ -92643,10 +88990,10 @@ export default { 3 ], "expires_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "is_active": [ 3 @@ -92658,10 +89005,10 @@ export default { 78 ], "type": [ - 1062 + 1049 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -92669,10 +89016,10 @@ export default { }, "system_alerts_aggregate": { "aggregate": [ - 3973 + 3721 ], "nodes": [ - 3971 + 3719 ], "__typename": [ 78 @@ -92680,13 +89027,13 @@ export default { }, "system_alerts_aggregate_fields": { "avg": [ - 3974 + 3722 ], "count": [ 38, { "columns": [ - 3985, + 3733, "[system_alerts_select_column!]" ], "distinct": [ @@ -92695,31 +89042,31 @@ export default { } ], "max": [ - 3979 + 3727 ], "min": [ - 3980 + 3728 ], "stddev": [ - 3987 + 3735 ], "stddev_pop": [ - 3988 + 3736 ], "stddev_samp": [ - 3989 + 3737 ], "sum": [ - 3992 + 3740 ], "var_pop": [ - 3995 + 3743 ], "var_samp": [ - 3996 + 3744 ], "variance": [ - 3997 + 3745 ], "__typename": [ 78 @@ -92735,16 +89082,16 @@ export default { }, "system_alerts_bool_exp": { "_and": [ - 3975 + 3723 ], "_not": [ - 3975 + 3723 ], "_or": [ - 3975 + 3723 ], "created_at": [ - 4325 + 4077 ], "created_by": [ 182 @@ -92753,10 +89100,10 @@ export default { 4 ], "expires_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "is_active": [ 4 @@ -92768,10 +89115,10 @@ export default { 80 ], "type": [ - 1063 + 1050 ], "updated_at": [ - 4325 + 4077 ], "__typename": [ 78 @@ -92788,7 +89135,7 @@ export default { }, "system_alerts_insert_input": { "created_at": [ - 4324 + 4076 ], "created_by": [ 180 @@ -92797,10 +89144,10 @@ export default { 3 ], "expires_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "is_active": [ 3 @@ -92812,10 +89159,10 @@ export default { 78 ], "type": [ - 1062 + 1049 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -92823,16 +89170,16 @@ export default { }, "system_alerts_max_fields": { "created_at": [ - 4324 + 4076 ], "created_by": [ 180 ], "expires_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "message": [ 78 @@ -92841,7 +89188,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -92849,16 +89196,16 @@ export default { }, "system_alerts_min_fields": { "created_at": [ - 4324 + 4076 ], "created_by": [ 180 ], "expires_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "message": [ 78 @@ -92867,7 +89214,7 @@ export default { 78 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -92878,7 +89225,7 @@ export default { 38 ], "returning": [ - 3971 + 3719 ], "__typename": [ 78 @@ -92886,13 +89233,13 @@ export default { }, "system_alerts_on_conflict": { "constraint": [ - 3976 + 3724 ], "update_columns": [ - 3993 + 3741 ], "where": [ - 3975 + 3723 ], "__typename": [ 78 @@ -92900,34 +89247,34 @@ export default { }, "system_alerts_order_by": { "created_at": [ - 2781 + 2529 ], "created_by": [ - 2781 + 2529 ], "dismissible": [ - 2781 + 2529 ], "expires_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "is_active": [ - 2781 + 2529 ], "message": [ - 2781 + 2529 ], "title": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "__typename": [ 78 @@ -92935,7 +89282,7 @@ export default { }, "system_alerts_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -92944,7 +89291,7 @@ export default { "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4324 + 4076 ], "created_by": [ 180 @@ -92953,10 +89300,10 @@ export default { 3 ], "expires_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "is_active": [ 3 @@ -92968,10 +89315,10 @@ export default { 78 ], "type": [ - 1062 + 1049 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -93003,7 +89350,7 @@ export default { }, "system_alerts_stream_cursor_input": { "initial_value": [ - 3991 + 3739 ], "ordering": [ 236 @@ -93014,7 +89361,7 @@ export default { }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "created_by": [ 180 @@ -93023,10 +89370,10 @@ export default { 3 ], "expires_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "is_active": [ 3 @@ -93038,10 +89385,10 @@ export default { 78 ], "type": [ - 1062 + 1049 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -93058,13 +89405,13 @@ export default { "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 3977 + 3725 ], "_set": [ - 3986 + 3734 ], "where": [ - 3975 + 3723 ], "__typename": [ 78 @@ -93096,28 +89443,28 @@ export default { }, "team_invites": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "invited_by": [ - 3739 + 3487 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3739 + 3487 ], "steam_id": [ 180 ], "team": [ - 4281 + 4029 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -93125,10 +89472,10 @@ export default { }, "team_invites_aggregate": { "aggregate": [ - 4002 + 3750 ], "nodes": [ - 3998 + 3746 ], "__typename": [ 78 @@ -93136,7 +89483,7 @@ export default { }, "team_invites_aggregate_bool_exp": { "count": [ - 4001 + 3749 ], "__typename": [ 78 @@ -93144,13 +89491,13 @@ export default { }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 4019 + 3767 ], "distinct": [ 3 ], "filter": [ - 4007 + 3755 ], "predicate": [ 39 @@ -93161,13 +89508,13 @@ export default { }, "team_invites_aggregate_fields": { "avg": [ - 4005 + 3753 ], "count": [ 38, { "columns": [ - 4019, + 3767, "[team_invites_select_column!]" ], "distinct": [ @@ -93176,31 +89523,31 @@ export default { } ], "max": [ - 4011 + 3759 ], "min": [ - 4013 + 3761 ], "stddev": [ - 4021 + 3769 ], "stddev_pop": [ - 4023 + 3771 ], "stddev_samp": [ - 4025 + 3773 ], "sum": [ - 4029 + 3777 ], "var_pop": [ - 4033 + 3781 ], "var_samp": [ - 4035 + 3783 ], "variance": [ - 4037 + 3785 ], "__typename": [ 78 @@ -93208,37 +89555,37 @@ export default { }, "team_invites_aggregate_order_by": { "avg": [ - 4006 + 3754 ], "count": [ - 2781 + 2529 ], "max": [ - 4012 + 3760 ], "min": [ - 4014 + 3762 ], "stddev": [ - 4022 + 3770 ], "stddev_pop": [ - 4024 + 3772 ], "stddev_samp": [ - 4026 + 3774 ], "sum": [ - 4030 + 3778 ], "var_pop": [ - 4034 + 3782 ], "var_samp": [ - 4036 + 3784 ], "variance": [ - 4038 + 3786 ], "__typename": [ 78 @@ -93246,10 +89593,10 @@ export default { }, "team_invites_arr_rel_insert_input": { "data": [ - 4010 + 3758 ], "on_conflict": [ - 4016 + 3764 ], "__typename": [ 78 @@ -93268,10 +89615,10 @@ export default { }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -93279,37 +89626,37 @@ export default { }, "team_invites_bool_exp": { "_and": [ - 4007 + 3755 ], "_not": [ - 4007 + 3755 ], "_or": [ - 4007 + 3755 ], "created_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "invited_by": [ - 3743 + 3491 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3743 + 3491 ], "steam_id": [ 182 ], "team": [ - 4290 + 4040 ], "team_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -93329,28 +89676,28 @@ export default { }, "team_invites_insert_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "invited_by": [ - 3750 + 3498 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3750 + 3498 ], "steam_id": [ 180 ], "team": [ - 4299 + 4049 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -93358,10 +89705,10 @@ export default { }, "team_invites_max_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "invited_by_player_steam_id": [ 180 @@ -93370,7 +89717,7 @@ export default { 180 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -93378,19 +89725,19 @@ export default { }, "team_invites_max_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -93398,10 +89745,10 @@ export default { }, "team_invites_min_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "invited_by_player_steam_id": [ 180 @@ -93410,7 +89757,7 @@ export default { 180 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -93418,19 +89765,19 @@ export default { }, "team_invites_min_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -93441,7 +89788,7 @@ export default { 38 ], "returning": [ - 3998 + 3746 ], "__typename": [ 78 @@ -93449,13 +89796,13 @@ export default { }, "team_invites_on_conflict": { "constraint": [ - 4008 + 3756 ], "update_columns": [ - 4031 + 3779 ], "where": [ - 4007 + 3755 ], "__typename": [ 78 @@ -93463,28 +89810,28 @@ export default { }, "team_invites_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "invited_by": [ - 3752 + 3500 ], "invited_by_player_steam_id": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "steam_id": [ - 2781 + 2529 ], "team": [ - 4301 + 4051 ], "team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -93492,7 +89839,7 @@ export default { }, "team_invites_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -93501,10 +89848,10 @@ export default { "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "invited_by_player_steam_id": [ 180 @@ -93513,7 +89860,7 @@ export default { 180 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -93532,10 +89879,10 @@ export default { }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -93554,10 +89901,10 @@ export default { }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -93576,10 +89923,10 @@ export default { }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -93587,7 +89934,7 @@ export default { }, "team_invites_stream_cursor_input": { "initial_value": [ - 4028 + 3776 ], "ordering": [ 236 @@ -93598,10 +89945,10 @@ export default { }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "invited_by_player_steam_id": [ 180 @@ -93610,7 +89957,7 @@ export default { 180 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -93629,10 +89976,10 @@ export default { }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -93641,13 +89988,13 @@ export default { "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 4009 + 3757 ], "_set": [ - 4020 + 3768 ], "where": [ - 4007 + 3755 ], "__typename": [ 78 @@ -93666,10 +90013,10 @@ export default { }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -93688,10 +90035,10 @@ export default { }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -93710,10 +90057,10 @@ export default { }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -93724,25 +90071,25 @@ export default { 3 ], "player": [ - 3739 + 3487 ], "player_steam_id": [ 180 ], "role": [ - 1082 + 1069 ], "roster_image_url": [ 78 ], "status": [ - 1103 + 1090 ], "team": [ - 4281 + 4029 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -93750,10 +90097,10 @@ export default { }, "team_roster_aggregate": { "aggregate": [ - 4045 + 3793 ], "nodes": [ - 4039 + 3787 ], "__typename": [ 78 @@ -93761,13 +90108,13 @@ export default { }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 4042 + 3790 ], "bool_or": [ - 4043 + 3791 ], "count": [ - 4044 + 3792 ], "__typename": [ 78 @@ -93775,13 +90122,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 4063 + 3811 ], "distinct": [ 3 ], "filter": [ - 4050 + 3798 ], "predicate": [ 4 @@ -93792,13 +90139,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 4064 + 3812 ], "distinct": [ 3 ], "filter": [ - 4050 + 3798 ], "predicate": [ 4 @@ -93809,13 +90156,13 @@ export default { }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 4062 + 3810 ], "distinct": [ 3 ], "filter": [ - 4050 + 3798 ], "predicate": [ 39 @@ -93826,13 +90173,13 @@ export default { }, "team_roster_aggregate_fields": { "avg": [ - 4048 + 3796 ], "count": [ 38, { "columns": [ - 4062, + 3810, "[team_roster_select_column!]" ], "distinct": [ @@ -93841,31 +90188,31 @@ export default { } ], "max": [ - 4054 + 3802 ], "min": [ - 4056 + 3804 ], "stddev": [ - 4066 + 3814 ], "stddev_pop": [ - 4068 + 3816 ], "stddev_samp": [ - 4070 + 3818 ], "sum": [ - 4074 + 3822 ], "var_pop": [ - 4078 + 3826 ], "var_samp": [ - 4080 + 3828 ], "variance": [ - 4082 + 3830 ], "__typename": [ 78 @@ -93873,37 +90220,37 @@ export default { }, "team_roster_aggregate_order_by": { "avg": [ - 4049 + 3797 ], "count": [ - 2781 + 2529 ], "max": [ - 4055 + 3803 ], "min": [ - 4057 + 3805 ], "stddev": [ - 4067 + 3815 ], "stddev_pop": [ - 4069 + 3817 ], "stddev_samp": [ - 4071 + 3819 ], "sum": [ - 4075 + 3823 ], "var_pop": [ - 4079 + 3827 ], "var_samp": [ - 4081 + 3829 ], "variance": [ - 4083 + 3831 ], "__typename": [ 78 @@ -93911,10 +90258,10 @@ export default { }, "team_roster_arr_rel_insert_input": { "data": [ - 4053 + 3801 ], "on_conflict": [ - 4059 + 3807 ], "__typename": [ 78 @@ -93930,7 +90277,7 @@ export default { }, "team_roster_avg_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -93938,37 +90285,37 @@ export default { }, "team_roster_bool_exp": { "_and": [ - 4050 + 3798 ], "_not": [ - 4050 + 3798 ], "_or": [ - 4050 + 3798 ], "coach": [ 4 ], "player": [ - 3743 + 3491 ], "player_steam_id": [ 182 ], "role": [ - 1083 + 1070 ], "roster_image_url": [ 80 ], "status": [ - 1104 + 1091 ], "team": [ - 4290 + 4040 ], "team_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -93988,25 +90335,25 @@ export default { 3 ], "player": [ - 3750 + 3498 ], "player_steam_id": [ 180 ], "role": [ - 1082 + 1069 ], "roster_image_url": [ 78 ], "status": [ - 1103 + 1090 ], "team": [ - 4299 + 4049 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -94020,7 +90367,7 @@ export default { 78 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -94028,13 +90375,13 @@ export default { }, "team_roster_max_order_by": { "player_steam_id": [ - 2781 + 2529 ], "roster_image_url": [ - 2781 + 2529 ], "team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -94048,7 +90395,7 @@ export default { 78 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -94056,13 +90403,13 @@ export default { }, "team_roster_min_order_by": { "player_steam_id": [ - 2781 + 2529 ], "roster_image_url": [ - 2781 + 2529 ], "team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -94073,7 +90420,7 @@ export default { 38 ], "returning": [ - 4039 + 3787 ], "__typename": [ 78 @@ -94081,13 +90428,13 @@ export default { }, "team_roster_on_conflict": { "constraint": [ - 4051 + 3799 ], "update_columns": [ - 4076 + 3824 ], "where": [ - 4050 + 3798 ], "__typename": [ 78 @@ -94095,28 +90442,28 @@ export default { }, "team_roster_order_by": { "coach": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "player_steam_id": [ - 2781 + 2529 ], "role": [ - 2781 + 2529 ], "roster_image_url": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "team": [ - 4301 + 4051 ], "team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -94127,7 +90474,7 @@ export default { 180 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -94144,16 +90491,16 @@ export default { 180 ], "role": [ - 1082 + 1069 ], "roster_image_url": [ 78 ], "status": [ - 1103 + 1090 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -94169,7 +90516,7 @@ export default { }, "team_roster_stddev_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -94185,7 +90532,7 @@ export default { }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -94201,7 +90548,7 @@ export default { }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -94209,7 +90556,7 @@ export default { }, "team_roster_stream_cursor_input": { "initial_value": [ - 4073 + 3821 ], "ordering": [ 236 @@ -94226,16 +90573,16 @@ export default { 180 ], "role": [ - 1082 + 1069 ], "roster_image_url": [ 78 ], "status": [ - 1103 + 1090 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -94251,7 +90598,7 @@ export default { }, "team_roster_sum_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -94260,13 +90607,13 @@ export default { "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 4052 + 3800 ], "_set": [ - 4065 + 3813 ], "where": [ - 4050 + 3798 ], "__typename": [ 78 @@ -94282,7 +90629,7 @@ export default { }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -94298,7 +90645,7 @@ export default { }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -94314,7 +90661,7 @@ export default { }, "team_roster_variance_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -94322,7 +90669,7 @@ export default { }, "team_scrim_alerts": { "created_at": [ - 4324 + 4076 ], "elo_max": [ 38 @@ -94334,19 +90681,19 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "last_notified_at": [ - 4324 + 4076 ], "regions": [ 78 ], "team": [ - 4281 + 4029 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -94354,10 +90701,10 @@ export default { }, "team_scrim_alerts_aggregate": { "aggregate": [ - 4086 + 3834 ], "nodes": [ - 4084 + 3832 ], "__typename": [ 78 @@ -94365,13 +90712,13 @@ export default { }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 4087 + 3835 ], "count": [ 38, { "columns": [ - 4098, + 3846, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -94380,31 +90727,31 @@ export default { } ], "max": [ - 4092 + 3840 ], "min": [ - 4093 + 3841 ], "stddev": [ - 4100 + 3848 ], "stddev_pop": [ - 4101 + 3849 ], "stddev_samp": [ - 4102 + 3850 ], "sum": [ - 4105 + 3853 ], "var_pop": [ - 4108 + 3856 ], "var_samp": [ - 4109 + 3857 ], "variance": [ - 4110 + 3858 ], "__typename": [ 78 @@ -94423,16 +90770,16 @@ export default { }, "team_scrim_alerts_bool_exp": { "_and": [ - 4088 + 3836 ], "_not": [ - 4088 + 3836 ], "_or": [ - 4088 + 3836 ], "created_at": [ - 4325 + 4077 ], "elo_max": [ 39 @@ -94444,19 +90791,19 @@ export default { 4 ], "id": [ - 4764 + 4623 ], "last_notified_at": [ - 4325 + 4077 ], "regions": [ 79 ], "team": [ - 4290 + 4040 ], "team_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -94476,7 +90823,7 @@ export default { }, "team_scrim_alerts_insert_input": { "created_at": [ - 4324 + 4076 ], "elo_max": [ 38 @@ -94488,19 +90835,19 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "last_notified_at": [ - 4324 + 4076 ], "regions": [ 78 ], "team": [ - 4299 + 4049 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -94508,7 +90855,7 @@ export default { }, "team_scrim_alerts_max_fields": { "created_at": [ - 4324 + 4076 ], "elo_max": [ 38 @@ -94517,16 +90864,16 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "last_notified_at": [ - 4324 + 4076 ], "regions": [ 78 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -94534,7 +90881,7 @@ export default { }, "team_scrim_alerts_min_fields": { "created_at": [ - 4324 + 4076 ], "elo_max": [ 38 @@ -94543,16 +90890,16 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "last_notified_at": [ - 4324 + 4076 ], "regions": [ 78 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -94563,7 +90910,7 @@ export default { 38 ], "returning": [ - 4084 + 3832 ], "__typename": [ 78 @@ -94571,13 +90918,13 @@ export default { }, "team_scrim_alerts_on_conflict": { "constraint": [ - 4089 + 3837 ], "update_columns": [ - 4106 + 3854 ], "where": [ - 4088 + 3836 ], "__typename": [ 78 @@ -94585,31 +90932,31 @@ export default { }, "team_scrim_alerts_order_by": { "created_at": [ - 2781 + 2529 ], "elo_max": [ - 2781 + 2529 ], "elo_min": [ - 2781 + 2529 ], "enabled": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "last_notified_at": [ - 2781 + 2529 ], "regions": [ - 2781 + 2529 ], "team": [ - 4301 + 4051 ], "team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -94617,7 +90964,7 @@ export default { }, "team_scrim_alerts_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -94626,7 +90973,7 @@ export default { "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4324 + 4076 ], "elo_max": [ 38 @@ -94638,16 +90985,16 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "last_notified_at": [ - 4324 + 4076 ], "regions": [ 78 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -94688,7 +91035,7 @@ export default { }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 4104 + 3852 ], "ordering": [ 236 @@ -94699,7 +91046,7 @@ export default { }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "elo_max": [ 38 @@ -94711,16 +91058,16 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "last_notified_at": [ - 4324 + 4076 ], "regions": [ 78 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -94740,13 +91087,13 @@ export default { "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 4090 + 3838 ], "_set": [ - 4099 + 3847 ], "where": [ - 4088 + 3836 ], "__typename": [ 78 @@ -94787,25 +91134,25 @@ export default { }, "team_scrim_availability": { "created_at": [ - 4324 + 4076 ], "ends_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4324 + 4076 ], "team": [ - 4281 + 4029 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -94813,10 +91160,10 @@ export default { }, "team_scrim_availability_aggregate": { "aggregate": [ - 4117 + 3865 ], "nodes": [ - 4111 + 3859 ], "__typename": [ 78 @@ -94824,13 +91171,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 4114 + 3862 ], "bool_or": [ - 4115 + 3863 ], "count": [ - 4116 + 3864 ], "__typename": [ 78 @@ -94838,13 +91185,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 4132 + 3880 ], "distinct": [ 3 ], "filter": [ - 4120 + 3868 ], "predicate": [ 4 @@ -94855,13 +91202,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 4133 + 3881 ], "distinct": [ 3 ], "filter": [ - 4120 + 3868 ], "predicate": [ 4 @@ -94872,13 +91219,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 4131 + 3879 ], "distinct": [ 3 ], "filter": [ - 4120 + 3868 ], "predicate": [ 39 @@ -94892,7 +91239,7 @@ export default { 38, { "columns": [ - 4131, + 3879, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -94901,10 +91248,10 @@ export default { } ], "max": [ - 4123 + 3871 ], "min": [ - 4125 + 3873 ], "__typename": [ 78 @@ -94912,13 +91259,13 @@ export default { }, "team_scrim_availability_aggregate_order_by": { "count": [ - 2781 + 2529 ], "max": [ - 4124 + 3872 ], "min": [ - 4126 + 3874 ], "__typename": [ 78 @@ -94926,10 +91273,10 @@ export default { }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 4122 + 3870 ], "on_conflict": [ - 4128 + 3876 ], "__typename": [ 78 @@ -94937,34 +91284,34 @@ export default { }, "team_scrim_availability_bool_exp": { "_and": [ - 4120 + 3868 ], "_not": [ - 4120 + 3868 ], "_or": [ - 4120 + 3868 ], "created_at": [ - 4325 + 4077 ], "ends_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "recurring_weekly": [ 4 ], "starts_at": [ - 4325 + 4077 ], "team": [ - 4290 + 4040 ], "team_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -94973,25 +91320,25 @@ export default { "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4324 + 4076 ], "ends_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4324 + 4076 ], "team": [ - 4299 + 4049 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -94999,19 +91346,19 @@ export default { }, "team_scrim_availability_max_fields": { "created_at": [ - 4324 + 4076 ], "ends_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "starts_at": [ - 4324 + 4076 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -95019,19 +91366,19 @@ export default { }, "team_scrim_availability_max_order_by": { "created_at": [ - 2781 + 2529 ], "ends_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "starts_at": [ - 2781 + 2529 ], "team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -95039,19 +91386,19 @@ export default { }, "team_scrim_availability_min_fields": { "created_at": [ - 4324 + 4076 ], "ends_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "starts_at": [ - 4324 + 4076 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -95059,19 +91406,19 @@ export default { }, "team_scrim_availability_min_order_by": { "created_at": [ - 2781 + 2529 ], "ends_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "starts_at": [ - 2781 + 2529 ], "team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -95082,7 +91429,7 @@ export default { 38 ], "returning": [ - 4111 + 3859 ], "__typename": [ 78 @@ -95090,13 +91437,13 @@ export default { }, "team_scrim_availability_on_conflict": { "constraint": [ - 4121 + 3869 ], "update_columns": [ - 4137 + 3885 ], "where": [ - 4120 + 3868 ], "__typename": [ 78 @@ -95104,25 +91451,25 @@ export default { }, "team_scrim_availability_order_by": { "created_at": [ - 2781 + 2529 ], "ends_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "recurring_weekly": [ - 2781 + 2529 ], "starts_at": [ - 2781 + 2529 ], "team": [ - 4301 + 4051 ], "team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -95130,7 +91477,7 @@ export default { }, "team_scrim_availability_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -95141,22 +91488,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 + 4076 ], "ends_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4324 + 4076 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -95164,7 +91511,7 @@ export default { }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 4136 + 3884 ], "ordering": [ 236 @@ -95175,22 +91522,22 @@ export default { }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "ends_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4324 + 4076 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -95199,10 +91546,10 @@ export default { "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 4134 + 3882 ], "where": [ - 4120 + 3868 ], "__typename": [ 78 @@ -95210,31 +91557,31 @@ export default { }, "team_scrim_request_proposals": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "proposed_by": [ - 3739 + 3487 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 4281 + 4029 ], "proposed_by_team_id": [ - 4762 + 4621 ], "proposed_scheduled_at": [ - 4324 + 4076 ], "request": [ - 4180 + 3928 ], "request_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -95242,10 +91589,10 @@ export default { }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 4143 + 3891 ], "nodes": [ - 4139 + 3887 ], "__typename": [ 78 @@ -95253,7 +91600,7 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 4142 + 3890 ], "__typename": [ 78 @@ -95261,13 +91608,13 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 4160 + 3908 ], "distinct": [ 3 ], "filter": [ - 4148 + 3896 ], "predicate": [ 39 @@ -95278,13 +91625,13 @@ export default { }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 4146 + 3894 ], "count": [ 38, { "columns": [ - 4160, + 3908, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -95293,31 +91640,31 @@ export default { } ], "max": [ - 4152 + 3900 ], "min": [ - 4154 + 3902 ], "stddev": [ - 4162 + 3910 ], "stddev_pop": [ - 4164 + 3912 ], "stddev_samp": [ - 4166 + 3914 ], "sum": [ - 4170 + 3918 ], "var_pop": [ - 4174 + 3922 ], "var_samp": [ - 4176 + 3924 ], "variance": [ - 4178 + 3926 ], "__typename": [ 78 @@ -95325,37 +91672,37 @@ export default { }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 4147 + 3895 ], "count": [ - 2781 + 2529 ], "max": [ - 4153 + 3901 ], "min": [ - 4155 + 3903 ], "stddev": [ - 4163 + 3911 ], "stddev_pop": [ - 4165 + 3913 ], "stddev_samp": [ - 4167 + 3915 ], "sum": [ - 4171 + 3919 ], "var_pop": [ - 4175 + 3923 ], "var_samp": [ - 4177 + 3925 ], "variance": [ - 4179 + 3927 ], "__typename": [ 78 @@ -95363,10 +91710,10 @@ export default { }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 4151 + 3899 ], "on_conflict": [ - 4157 + 3905 ], "__typename": [ 78 @@ -95382,7 +91729,7 @@ export default { }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -95390,40 +91737,40 @@ export default { }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 4148 + 3896 ], "_not": [ - 4148 + 3896 ], "_or": [ - 4148 + 3896 ], "created_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "proposed_by": [ - 3743 + 3491 ], "proposed_by_steam_id": [ 182 ], "proposed_by_team": [ - 4290 + 4040 ], "proposed_by_team_id": [ - 4764 + 4623 ], "proposed_scheduled_at": [ - 4325 + 4077 ], "request": [ - 4191 + 3939 ], "request_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -95440,31 +91787,31 @@ export default { }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "proposed_by": [ - 3750 + 3498 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 4299 + 4049 ], "proposed_by_team_id": [ - 4762 + 4621 ], "proposed_scheduled_at": [ - 4324 + 4076 ], "request": [ - 4200 + 3948 ], "request_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -95472,22 +91819,22 @@ export default { }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4762 + 4621 ], "proposed_scheduled_at": [ - 4324 + 4076 ], "request_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -95495,22 +91842,22 @@ export default { }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "proposed_by_steam_id": [ - 2781 + 2529 ], "proposed_by_team_id": [ - 2781 + 2529 ], "proposed_scheduled_at": [ - 2781 + 2529 ], "request_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -95518,22 +91865,22 @@ export default { }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4762 + 4621 ], "proposed_scheduled_at": [ - 4324 + 4076 ], "request_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -95541,22 +91888,22 @@ export default { }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "proposed_by_steam_id": [ - 2781 + 2529 ], "proposed_by_team_id": [ - 2781 + 2529 ], "proposed_scheduled_at": [ - 2781 + 2529 ], "request_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -95567,7 +91914,7 @@ export default { 38 ], "returning": [ - 4139 + 3887 ], "__typename": [ 78 @@ -95575,13 +91922,13 @@ export default { }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 4149 + 3897 ], "update_columns": [ - 4172 + 3920 ], "where": [ - 4148 + 3896 ], "__typename": [ 78 @@ -95589,31 +91936,31 @@ export default { }, "team_scrim_request_proposals_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "proposed_by": [ - 3752 + 3500 ], "proposed_by_steam_id": [ - 2781 + 2529 ], "proposed_by_team": [ - 4301 + 4051 ], "proposed_by_team_id": [ - 2781 + 2529 ], "proposed_scheduled_at": [ - 2781 + 2529 ], "request": [ - 4202 + 3950 ], "request_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -95621,7 +91968,7 @@ export default { }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -95630,22 +91977,22 @@ export default { "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4762 + 4621 ], "proposed_scheduled_at": [ - 4324 + 4076 ], "request_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -95661,7 +92008,7 @@ export default { }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -95677,7 +92024,7 @@ export default { }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -95693,7 +92040,7 @@ export default { }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -95701,7 +92048,7 @@ export default { }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 4169 + 3917 ], "ordering": [ 236 @@ -95712,22 +92059,22 @@ export default { }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4762 + 4621 ], "proposed_scheduled_at": [ - 4324 + 4076 ], "request_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -95743,7 +92090,7 @@ export default { }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -95752,13 +92099,13 @@ export default { "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 4150 + 3898 ], "_set": [ - 4161 + 3909 ], "where": [ - 4148 + 3896 ], "__typename": [ 78 @@ -95774,7 +92121,7 @@ export default { }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -95790,7 +92137,7 @@ export default { }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -95806,7 +92153,7 @@ export default { }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -95817,55 +92164,55 @@ export default { 3 ], "awaiting_team": [ - 4281 + 4029 ], "awaiting_team_id": [ - 4762 + 4621 ], "canceled_by_team_id": [ - 4762 + 4621 ], "canceled_late": [ 3 ], "created_at": [ - 4324 + 4076 ], "expires_at": [ - 4324 + 4076 ], "from_team": [ - 4281 + 4029 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_options": [ - 2476 + 2224 ], "match_options_id": [ - 4762 + 4621 ], "match_outcome": [ 78 ], "proposals": [ - 4139, + 3887, { "distinct_on": [ - 4160, + 3908, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -95875,19 +92222,19 @@ export default { 38 ], "order_by": [ - 4158, + 3906, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4148 + 3896 ] } ], "proposals_aggregate": [ - 4140, + 3888, { "distinct_on": [ - 4160, + 3908, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -95897,40 +92244,40 @@ export default { 38 ], "order_by": [ - 4158, + 3906, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4148 + 3896 ] } ], "proposed_scheduled_at": [ - 4324 + 4076 ], "region": [ 78 ], "requested_by": [ - 3739 + 3487 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4324 + 4076 ], "status": [ - 1002 + 989 ], "to_team": [ - 4281 + 4029 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -95938,10 +92285,10 @@ export default { }, "team_scrim_requests_aggregate": { "aggregate": [ - 4186 + 3934 ], "nodes": [ - 4180 + 3928 ], "__typename": [ 78 @@ -95949,13 +92296,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 4183 + 3931 ], "bool_or": [ - 4184 + 3932 ], "count": [ - 4185 + 3933 ], "__typename": [ 78 @@ -95963,13 +92310,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 4205 + 3953 ], "distinct": [ 3 ], "filter": [ - 4191 + 3939 ], "predicate": [ 4 @@ -95980,13 +92327,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 4206 + 3954 ], "distinct": [ 3 ], "filter": [ - 4191 + 3939 ], "predicate": [ 4 @@ -95997,13 +92344,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 4204 + 3952 ], "distinct": [ 3 ], "filter": [ - 4191 + 3939 ], "predicate": [ 39 @@ -96014,13 +92361,13 @@ export default { }, "team_scrim_requests_aggregate_fields": { "avg": [ - 4189 + 3937 ], "count": [ 38, { "columns": [ - 4204, + 3952, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -96029,31 +92376,31 @@ export default { } ], "max": [ - 4195 + 3943 ], "min": [ - 4197 + 3945 ], "stddev": [ - 4208 + 3956 ], "stddev_pop": [ - 4210 + 3958 ], "stddev_samp": [ - 4212 + 3960 ], "sum": [ - 4216 + 3964 ], "var_pop": [ - 4220 + 3968 ], "var_samp": [ - 4222 + 3970 ], "variance": [ - 4224 + 3972 ], "__typename": [ 78 @@ -96061,37 +92408,37 @@ export default { }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 4190 + 3938 ], "count": [ - 2781 + 2529 ], "max": [ - 4196 + 3944 ], "min": [ - 4198 + 3946 ], "stddev": [ - 4209 + 3957 ], "stddev_pop": [ - 4211 + 3959 ], "stddev_samp": [ - 4213 + 3961 ], "sum": [ - 4217 + 3965 ], "var_pop": [ - 4221 + 3969 ], "var_samp": [ - 4223 + 3971 ], "variance": [ - 4225 + 3973 ], "__typename": [ 78 @@ -96099,10 +92446,10 @@ export default { }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 4194 + 3942 ], "on_conflict": [ - 4201 + 3949 ], "__typename": [ 78 @@ -96118,7 +92465,7 @@ export default { }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -96126,94 +92473,94 @@ export default { }, "team_scrim_requests_bool_exp": { "_and": [ - 4191 + 3939 ], "_not": [ - 4191 + 3939 ], "_or": [ - 4191 + 3939 ], "auto_generated": [ 4 ], "awaiting_team": [ - 4290 + 4040 ], "awaiting_team_id": [ - 4764 + 4623 ], "canceled_by_team_id": [ - 4764 + 4623 ], "canceled_late": [ 4 ], "created_at": [ - 4325 + 4077 ], "expires_at": [ - 4325 + 4077 ], "from_team": [ - 4290 + 4040 ], "from_team_checked_in": [ 4 ], "from_team_id": [ - 4764 + 4623 ], "id": [ - 4764 + 4623 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_options": [ - 2480 + 2228 ], "match_options_id": [ - 4764 + 4623 ], "match_outcome": [ 80 ], "proposals": [ - 4148 + 3896 ], "proposals_aggregate": [ - 4141 + 3889 ], "proposed_scheduled_at": [ - 4325 + 4077 ], "region": [ 80 ], "requested_by": [ - 3743 + 3491 ], "requested_by_steam_id": [ 182 ], "responded_at": [ - 4325 + 4077 ], "status": [ - 1003 + 990 ], "to_team": [ - 4290 + 4040 ], "to_team_checked_in": [ 4 ], "to_team_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -96233,79 +92580,79 @@ export default { 3 ], "awaiting_team": [ - 4299 + 4049 ], "awaiting_team_id": [ - 4762 + 4621 ], "canceled_by_team_id": [ - 4762 + 4621 ], "canceled_late": [ 3 ], "created_at": [ - 4324 + 4076 ], "expires_at": [ - 4324 + 4076 ], "from_team": [ - 4299 + 4049 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_options": [ - 2487 + 2235 ], "match_options_id": [ - 4762 + 4621 ], "match_outcome": [ 78 ], "proposals": [ - 4145 + 3893 ], "proposed_scheduled_at": [ - 4324 + 4076 ], "region": [ 78 ], "requested_by": [ - 3750 + 3498 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4324 + 4076 ], "status": [ - 1002 + 989 ], "to_team": [ - 4299 + 4049 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -96313,34 +92660,34 @@ export default { }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 4762 + 4621 ], "canceled_by_team_id": [ - 4762 + 4621 ], "created_at": [ - 4324 + 4076 ], "expires_at": [ - 4324 + 4076 ], "from_team_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4324 + 4076 ], "region": [ 78 @@ -96349,10 +92696,10 @@ export default { 180 ], "responded_at": [ - 4324 + 4076 ], "to_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -96360,46 +92707,46 @@ export default { }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 2781 + 2529 ], "canceled_by_team_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "expires_at": [ - 2781 + 2529 ], "from_team_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_options_id": [ - 2781 + 2529 ], "match_outcome": [ - 2781 + 2529 ], "proposed_scheduled_at": [ - 2781 + 2529 ], "region": [ - 2781 + 2529 ], "requested_by_steam_id": [ - 2781 + 2529 ], "responded_at": [ - 2781 + 2529 ], "to_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -96407,34 +92754,34 @@ export default { }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 4762 + 4621 ], "canceled_by_team_id": [ - 4762 + 4621 ], "created_at": [ - 4324 + 4076 ], "expires_at": [ - 4324 + 4076 ], "from_team_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4324 + 4076 ], "region": [ 78 @@ -96443,10 +92790,10 @@ export default { 180 ], "responded_at": [ - 4324 + 4076 ], "to_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -96454,46 +92801,46 @@ export default { }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 2781 + 2529 ], "canceled_by_team_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "expires_at": [ - 2781 + 2529 ], "from_team_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_options_id": [ - 2781 + 2529 ], "match_outcome": [ - 2781 + 2529 ], "proposed_scheduled_at": [ - 2781 + 2529 ], "region": [ - 2781 + 2529 ], "requested_by_steam_id": [ - 2781 + 2529 ], "responded_at": [ - 2781 + 2529 ], "to_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -96504,7 +92851,7 @@ export default { 38 ], "returning": [ - 4180 + 3928 ], "__typename": [ 78 @@ -96512,10 +92859,10 @@ export default { }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 4194 + 3942 ], "on_conflict": [ - 4201 + 3949 ], "__typename": [ 78 @@ -96523,13 +92870,13 @@ export default { }, "team_scrim_requests_on_conflict": { "constraint": [ - 4192 + 3940 ], "update_columns": [ - 4218 + 3966 ], "where": [ - 4191 + 3939 ], "__typename": [ 78 @@ -96537,82 +92884,82 @@ export default { }, "team_scrim_requests_order_by": { "auto_generated": [ - 2781 + 2529 ], "awaiting_team": [ - 4301 + 4051 ], "awaiting_team_id": [ - 2781 + 2529 ], "canceled_by_team_id": [ - 2781 + 2529 ], "canceled_late": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "expires_at": [ - 2781 + 2529 ], "from_team": [ - 4301 + 4051 ], "from_team_checked_in": [ - 2781 + 2529 ], "from_team_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_options": [ - 2489 + 2237 ], "match_options_id": [ - 2781 + 2529 ], "match_outcome": [ - 2781 + 2529 ], "proposals_aggregate": [ - 4144 + 3892 ], "proposed_scheduled_at": [ - 2781 + 2529 ], "region": [ - 2781 + 2529 ], "requested_by": [ - 3752 + 3500 ], "requested_by_steam_id": [ - 2781 + 2529 ], "responded_at": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "to_team": [ - 4301 + 4051 ], "to_team_checked_in": [ - 2781 + 2529 ], "to_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -96620,7 +92967,7 @@ export default { }, "team_scrim_requests_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -96634,40 +92981,40 @@ export default { 3 ], "awaiting_team_id": [ - 4762 + 4621 ], "canceled_by_team_id": [ - 4762 + 4621 ], "canceled_late": [ 3 ], "created_at": [ - 4324 + 4076 ], "expires_at": [ - 4324 + 4076 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4324 + 4076 ], "region": [ 78 @@ -96676,16 +93023,16 @@ export default { 180 ], "responded_at": [ - 4324 + 4076 ], "status": [ - 1002 + 989 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -96701,7 +93048,7 @@ export default { }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -96717,7 +93064,7 @@ export default { }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -96733,7 +93080,7 @@ export default { }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -96741,7 +93088,7 @@ export default { }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 4215 + 3963 ], "ordering": [ 236 @@ -96755,40 +93102,40 @@ export default { 3 ], "awaiting_team_id": [ - 4762 + 4621 ], "canceled_by_team_id": [ - 4762 + 4621 ], "canceled_late": [ 3 ], "created_at": [ - 4324 + 4076 ], "expires_at": [ - 4324 + 4076 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4762 + 4621 ], "id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4324 + 4076 ], "region": [ 78 @@ -96797,16 +93144,16 @@ export default { 180 ], "responded_at": [ - 4324 + 4076 ], "status": [ - 1002 + 989 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -96822,7 +93169,7 @@ export default { }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -96831,13 +93178,13 @@ export default { "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 4193 + 3941 ], "_set": [ - 4207 + 3955 ], "where": [ - 4191 + 3939 ], "__typename": [ 78 @@ -96853,7 +93200,7 @@ export default { }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -96869,7 +93216,7 @@ export default { }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -96885,7 +93232,7 @@ export default { }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -96896,7 +93243,7 @@ export default { 3 ], "created_at": [ - 4324 + 4076 ], "elo_max": [ 38 @@ -96908,10 +93255,10 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "map_ids": [ - 4762 + 4621 ], "notes": [ 78 @@ -96920,13 +93267,13 @@ export default { 78 ], "team": [ - 4281 + 4029 ], "team_id": [ - 4762 + 4621 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -96934,10 +93281,10 @@ export default { }, "team_scrim_settings_aggregate": { "aggregate": [ - 4228 + 3976 ], "nodes": [ - 4226 + 3974 ], "__typename": [ 78 @@ -96945,13 +93292,13 @@ export default { }, "team_scrim_settings_aggregate_fields": { "avg": [ - 4229 + 3977 ], "count": [ 38, { "columns": [ - 4241, + 3989, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -96960,31 +93307,31 @@ export default { } ], "max": [ - 4234 + 3982 ], "min": [ - 4235 + 3983 ], "stddev": [ - 4243 + 3991 ], "stddev_pop": [ - 4244 + 3992 ], "stddev_samp": [ - 4245 + 3993 ], "sum": [ - 4248 + 3996 ], "var_pop": [ - 4251 + 3999 ], "var_samp": [ - 4252 + 4000 ], "variance": [ - 4253 + 4001 ], "__typename": [ 78 @@ -97003,19 +93350,19 @@ export default { }, "team_scrim_settings_bool_exp": { "_and": [ - 4230 + 3978 ], "_not": [ - 4230 + 3978 ], "_or": [ - 4230 + 3978 ], "allow_outside_availability": [ 4 ], "created_at": [ - 4325 + 4077 ], "elo_max": [ 39 @@ -97027,10 +93374,10 @@ export default { 4 ], "id": [ - 4764 + 4623 ], "map_ids": [ - 4763 + 4622 ], "notes": [ 80 @@ -97039,13 +93386,13 @@ export default { 79 ], "team": [ - 4290 + 4040 ], "team_id": [ - 4764 + 4623 ], "updated_at": [ - 4325 + 4077 ], "__typename": [ 78 @@ -97068,7 +93415,7 @@ export default { 3 ], "created_at": [ - 4324 + 4076 ], "elo_max": [ 38 @@ -97080,10 +93427,10 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "map_ids": [ - 4762 + 4621 ], "notes": [ 78 @@ -97092,13 +93439,13 @@ export default { 78 ], "team": [ - 4299 + 4049 ], "team_id": [ - 4762 + 4621 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -97106,7 +93453,7 @@ export default { }, "team_scrim_settings_max_fields": { "created_at": [ - 4324 + 4076 ], "elo_max": [ 38 @@ -97115,10 +93462,10 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "map_ids": [ - 4762 + 4621 ], "notes": [ 78 @@ -97127,10 +93474,10 @@ export default { 78 ], "team_id": [ - 4762 + 4621 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -97138,7 +93485,7 @@ export default { }, "team_scrim_settings_min_fields": { "created_at": [ - 4324 + 4076 ], "elo_max": [ 38 @@ -97147,10 +93494,10 @@ export default { 38 ], "id": [ - 4762 + 4621 ], "map_ids": [ - 4762 + 4621 ], "notes": [ 78 @@ -97159,10 +93506,10 @@ export default { 78 ], "team_id": [ - 4762 + 4621 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -97173,7 +93520,7 @@ export default { 38 ], "returning": [ - 4226 + 3974 ], "__typename": [ 78 @@ -97181,10 +93528,10 @@ export default { }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 4233 + 3981 ], "on_conflict": [ - 4238 + 3986 ], "__typename": [ 78 @@ -97192,13 +93539,13 @@ export default { }, "team_scrim_settings_on_conflict": { "constraint": [ - 4231 + 3979 ], "update_columns": [ - 4249 + 3997 ], "where": [ - 4230 + 3978 ], "__typename": [ 78 @@ -97206,40 +93553,40 @@ export default { }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "elo_max": [ - 2781 + 2529 ], "elo_min": [ - 2781 + 2529 ], "enabled": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "map_ids": [ - 2781 + 2529 ], "notes": [ - 2781 + 2529 ], "regions": [ - 2781 + 2529 ], "team": [ - 4301 + 4051 ], "team_id": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "__typename": [ 78 @@ -97247,7 +93594,7 @@ export default { }, "team_scrim_settings_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -97259,7 +93606,7 @@ export default { 3 ], "created_at": [ - 4324 + 4076 ], "elo_max": [ 38 @@ -97271,10 +93618,10 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "map_ids": [ - 4762 + 4621 ], "notes": [ 78 @@ -97283,10 +93630,10 @@ export default { 78 ], "team_id": [ - 4762 + 4621 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -97327,7 +93674,7 @@ export default { }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 4247 + 3995 ], "ordering": [ 236 @@ -97341,7 +93688,7 @@ export default { 3 ], "created_at": [ - 4324 + 4076 ], "elo_max": [ 38 @@ -97353,10 +93700,10 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "map_ids": [ - 4762 + 4621 ], "notes": [ 78 @@ -97365,10 +93712,10 @@ export default { 78 ], "team_id": [ - 4762 + 4621 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -97388,13 +93735,13 @@ export default { "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 4232 + 3980 ], "_set": [ - 4242 + 3990 ], "where": [ - 4230 + 3978 ], "__typename": [ 78 @@ -97435,16 +93782,16 @@ export default { }, "team_suggestions": { "created_at": [ - 4324 + 4076 ], "group_hash": [ 78 ], "id": [ - 4762 + 4621 ], "last_notified_at": [ - 4324 + 4076 ], "member_steam_ids": [ 180 @@ -97461,10 +93808,10 @@ export default { }, "team_suggestions_aggregate": { "aggregate": [ - 4256 + 4004 ], "nodes": [ - 4254 + 4002 ], "__typename": [ 78 @@ -97472,13 +93819,13 @@ export default { }, "team_suggestions_aggregate_fields": { "avg": [ - 4257 + 4005 ], "count": [ 38, { "columns": [ - 4268, + 4016, "[team_suggestions_select_column!]" ], "distinct": [ @@ -97487,31 +93834,31 @@ export default { } ], "max": [ - 4262 + 4010 ], "min": [ - 4263 + 4011 ], "stddev": [ - 4270 + 4018 ], "stddev_pop": [ - 4271 + 4019 ], "stddev_samp": [ - 4272 + 4020 ], "sum": [ - 4275 + 4023 ], "var_pop": [ - 4278 + 4026 ], "var_samp": [ - 4279 + 4027 ], "variance": [ - 4280 + 4028 ], "__typename": [ 78 @@ -97527,25 +93874,25 @@ export default { }, "team_suggestions_bool_exp": { "_and": [ - 4258 + 4006 ], "_not": [ - 4258 + 4006 ], "_or": [ - 4258 + 4006 ], "created_at": [ - 4325 + 4077 ], "group_hash": [ 80 ], "id": [ - 4764 + 4623 ], "last_notified_at": [ - 4325 + 4077 ], "member_steam_ids": [ 181 @@ -97571,16 +93918,16 @@ export default { }, "team_suggestions_insert_input": { "created_at": [ - 4324 + 4076 ], "group_hash": [ 78 ], "id": [ - 4762 + 4621 ], "last_notified_at": [ - 4324 + 4076 ], "member_steam_ids": [ 180 @@ -97597,16 +93944,16 @@ export default { }, "team_suggestions_max_fields": { "created_at": [ - 4324 + 4076 ], "group_hash": [ 78 ], "id": [ - 4762 + 4621 ], "last_notified_at": [ - 4324 + 4076 ], "member_steam_ids": [ 180 @@ -97623,16 +93970,16 @@ export default { }, "team_suggestions_min_fields": { "created_at": [ - 4324 + 4076 ], "group_hash": [ 78 ], "id": [ - 4762 + 4621 ], "last_notified_at": [ - 4324 + 4076 ], "member_steam_ids": [ 180 @@ -97652,7 +93999,7 @@ export default { 38 ], "returning": [ - 4254 + 4002 ], "__typename": [ 78 @@ -97660,13 +94007,13 @@ export default { }, "team_suggestions_on_conflict": { "constraint": [ - 4259 + 4007 ], "update_columns": [ - 4276 + 4024 ], "where": [ - 4258 + 4006 ], "__typename": [ 78 @@ -97674,25 +94021,25 @@ export default { }, "team_suggestions_order_by": { "created_at": [ - 2781 + 2529 ], "group_hash": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "last_notified_at": [ - 2781 + 2529 ], "member_steam_ids": [ - 2781 + 2529 ], "status": [ - 2781 + 2529 ], "together_count": [ - 2781 + 2529 ], "__typename": [ 78 @@ -97700,7 +94047,7 @@ export default { }, "team_suggestions_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -97709,16 +94056,16 @@ export default { "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4324 + 4076 ], "group_hash": [ 78 ], "id": [ - 4762 + 4621 ], "last_notified_at": [ - 4324 + 4076 ], "member_steam_ids": [ 180 @@ -97759,7 +94106,7 @@ export default { }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 4274 + 4022 ], "ordering": [ 236 @@ -97770,16 +94117,16 @@ export default { }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "group_hash": [ 78 ], "id": [ - 4762 + 4621 ], "last_notified_at": [ - 4324 + 4076 ], "member_steam_ids": [ 180 @@ -97805,13 +94152,13 @@ export default { "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 4260 + 4008 ], "_set": [ - 4269 + 4017 ], "where": [ - 4258 + 4006 ], "__typename": [ 78 @@ -97858,19 +94205,19 @@ export default { 3 ], "captain": [ - 3739 + 3487 ], "captain_steam_id": [ 180 ], "id": [ - 4762 + 4621 ], "invites": [ - 3998, + 3746, { "distinct_on": [ - 4019, + 3767, "[team_invites_select_column!]" ], "limit": [ @@ -97880,19 +94227,19 @@ export default { 38 ], "order_by": [ - 4017, + 3765, "[team_invites_order_by!]" ], "where": [ - 4007 + 3755 ] } ], "invites_aggregate": [ - 3999, + 3747, { "distinct_on": [ - 4019, + 3767, "[team_invites_select_column!]" ], "limit": [ @@ -97902,19 +94249,22 @@ export default { 38 ], "order_by": [ - 4017, + 3765, "[team_invites_order_by!]" ], "where": [ - 4007 + 3755 ] } ], + "is_organization": [ + 3 + ], "match_lineups": [ - 2276, + 2024, { "distinct_on": [ - 2298, + 2046, "[match_lineups_select_column!]" ], "limit": [ @@ -97924,19 +94274,19 @@ export default { 38 ], "order_by": [ - 2296, + 2044, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2033 ] } ], "match_lineups_aggregate": [ - 2277, + 2025, { "distinct_on": [ - 2298, + 2046, "[match_lineups_select_column!]" ], "limit": [ @@ -97946,19 +94296,19 @@ export default { 38 ], "order_by": [ - 2296, + 2044, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2033 ] } ], "matches": [ - 2596, + 2344, { "distinct_on": [ - 2618, + 2366, "[matches_select_column!]" ], "limit": [ @@ -97968,11 +94318,11 @@ export default { 38 ], "order_by": [ - 2616, + 2364, "[matches_order_by!]" ], "where": [ - 2605 + 2353 ] } ], @@ -97980,25 +94330,25 @@ export default { 78 ], "owner": [ - 3739 + 3487 ], "owner_steam_id": [ 180 ], "ranks": [ - 5446 + 5254 ], "reputation": [ - 5466 + 5274 ], "role": [ 78 ], "roster": [ - 4039, + 3787, { "distinct_on": [ - 4062, + 3810, "[team_roster_select_column!]" ], "limit": [ @@ -98008,19 +94358,19 @@ export default { 38 ], "order_by": [ - 4060, + 3808, "[team_roster_order_by!]" ], "where": [ - 4050 + 3798 ] } ], "roster_aggregate": [ - 4040, + 3788, { "distinct_on": [ - 4062, + 3810, "[team_roster_select_column!]" ], "limit": [ @@ -98030,42 +94380,970 @@ export default { 38 ], "order_by": [ - 4060, + 3808, "[team_roster_order_by!]" ], "where": [ - 4050 + 3798 + ] + } + ], + "scrim_availability": [ + 3859, + { + "distinct_on": [ + 3879, + "[team_scrim_availability_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 3877, + "[team_scrim_availability_order_by!]" + ], + "where": [ + 3868 + ] + } + ], + "scrim_availability_aggregate": [ + 3860, + { + "distinct_on": [ + 3879, + "[team_scrim_availability_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 3877, + "[team_scrim_availability_order_by!]" + ], + "where": [ + 3868 + ] + } + ], + "scrim_settings": [ + 3974 + ], + "short_name": [ + 78 + ], + "tournament_teams": [ + 4428, + { + "distinct_on": [ + 4450, + "[tournament_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4448, + "[tournament_teams_order_by!]" + ], + "where": [ + 4437 + ] + } + ], + "tournament_teams_aggregate": [ + 4429, + { + "distinct_on": [ + 4450, + "[tournament_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4448, + "[tournament_teams_order_by!]" + ], + "where": [ + 4437 + ] + } + ], + "__typename": [ + 78 + ] + }, + "teams_aggregate": { + "aggregate": [ + 4035 + ], + "nodes": [ + 4029 + ], + "__typename": [ + 78 + ] + }, + "teams_aggregate_bool_exp": { + "bool_and": [ + 4032 + ], + "bool_or": [ + 4033 + ], + "count": [ + 4034 + ], + "__typename": [ + 78 + ] + }, + "teams_aggregate_bool_exp_bool_and": { + "arguments": [ + 4054 + ], + "distinct": [ + 3 + ], + "filter": [ + 4040 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "teams_aggregate_bool_exp_bool_or": { + "arguments": [ + 4055 + ], + "distinct": [ + 3 + ], + "filter": [ + 4040 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "teams_aggregate_bool_exp_count": { + "arguments": [ + 4053 + ], + "distinct": [ + 3 + ], + "filter": [ + 4040 + ], + "predicate": [ + 39 + ], + "__typename": [ + 78 + ] + }, + "teams_aggregate_fields": { + "avg": [ + 4038 + ], + "count": [ + 38, + { + "columns": [ + 4053, + "[teams_select_column!]" + ], + "distinct": [ + 3 ] } ], - "scrim_availability": [ - 4111, - { - "distinct_on": [ - 4131, - "[team_scrim_availability_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4129, - "[team_scrim_availability_order_by!]" - ], - "where": [ - 4120 - ] - } + "max": [ + 4044 + ], + "min": [ + 4046 + ], + "stddev": [ + 4057 + ], + "stddev_pop": [ + 4059 + ], + "stddev_samp": [ + 4061 + ], + "sum": [ + 4065 + ], + "var_pop": [ + 4069 + ], + "var_samp": [ + 4071 + ], + "variance": [ + 4073 + ], + "__typename": [ + 78 + ] + }, + "teams_aggregate_order_by": { + "avg": [ + 4039 + ], + "count": [ + 2529 + ], + "max": [ + 4045 + ], + "min": [ + 4047 + ], + "stddev": [ + 4058 + ], + "stddev_pop": [ + 4060 + ], + "stddev_samp": [ + 4062 + ], + "sum": [ + 4066 + ], + "var_pop": [ + 4070 + ], + "var_samp": [ + 4072 + ], + "variance": [ + 4074 + ], + "__typename": [ + 78 + ] + }, + "teams_arr_rel_insert_input": { + "data": [ + 4043 + ], + "on_conflict": [ + 4050 + ], + "__typename": [ + 78 + ] + }, + "teams_avg_fields": { + "captain_steam_id": [ + 29 + ], + "owner_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "teams_avg_order_by": { + "captain_steam_id": [ + 2529 + ], + "owner_steam_id": [ + 2529 + ], + "__typename": [ + 78 + ] + }, + "teams_bool_exp": { + "_and": [ + 4040 + ], + "_not": [ + 4040 + ], + "_or": [ + 4040 + ], + "avatar_url": [ + 80 + ], + "can_change_role": [ + 4 + ], + "can_invite": [ + 4 + ], + "can_manage_scrims": [ + 4 + ], + "can_remove": [ + 4 + ], + "captain": [ + 3491 + ], + "captain_steam_id": [ + 182 + ], + "id": [ + 4623 + ], + "invites": [ + 3755 + ], + "invites_aggregate": [ + 3748 + ], + "is_organization": [ + 4 + ], + "match_lineups": [ + 2033 + ], + "match_lineups_aggregate": [ + 2026 + ], + "matches": [ + 2353 + ], + "name": [ + 80 + ], + "owner": [ + 3491 + ], + "owner_steam_id": [ + 182 + ], + "ranks": [ + 5258 + ], + "reputation": [ + 5278 + ], + "role": [ + 80 + ], + "roster": [ + 3798 + ], + "roster_aggregate": [ + 3789 + ], + "scrim_availability": [ + 3868 + ], + "scrim_availability_aggregate": [ + 3861 + ], + "scrim_settings": [ + 3978 + ], + "short_name": [ + 80 + ], + "tournament_teams": [ + 4437 + ], + "tournament_teams_aggregate": [ + 4430 + ], + "__typename": [ + 78 + ] + }, + "teams_constraint": {}, + "teams_inc_input": { + "captain_steam_id": [ + 180 + ], + "owner_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "teams_insert_input": { + "avatar_url": [ + 78 + ], + "captain": [ + 3498 + ], + "captain_steam_id": [ + 180 + ], + "id": [ + 4621 + ], + "invites": [ + 3752 + ], + "is_organization": [ + 3 + ], + "match_lineups": [ + 2030 + ], + "name": [ + 78 + ], + "owner": [ + 3498 + ], + "owner_steam_id": [ + 180 + ], + "ranks": [ + 5262 + ], + "reputation": [ + 5282 + ], + "roster": [ + 3795 + ], + "scrim_availability": [ + 3867 + ], + "scrim_settings": [ + 3985 + ], + "short_name": [ + 78 + ], + "tournament_teams": [ + 4434 + ], + "__typename": [ + 78 + ] + }, + "teams_max_fields": { + "avatar_url": [ + 78 + ], + "captain_steam_id": [ + 180 + ], + "id": [ + 4621 + ], + "name": [ + 78 + ], + "owner_steam_id": [ + 180 + ], + "role": [ + 78 + ], + "short_name": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "teams_max_order_by": { + "avatar_url": [ + 2529 + ], + "captain_steam_id": [ + 2529 + ], + "id": [ + 2529 + ], + "name": [ + 2529 + ], + "owner_steam_id": [ + 2529 + ], + "short_name": [ + 2529 + ], + "__typename": [ + 78 + ] + }, + "teams_min_fields": { + "avatar_url": [ + 78 + ], + "captain_steam_id": [ + 180 + ], + "id": [ + 4621 + ], + "name": [ + 78 + ], + "owner_steam_id": [ + 180 + ], + "role": [ + 78 + ], + "short_name": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "teams_min_order_by": { + "avatar_url": [ + 2529 + ], + "captain_steam_id": [ + 2529 + ], + "id": [ + 2529 + ], + "name": [ + 2529 + ], + "owner_steam_id": [ + 2529 + ], + "short_name": [ + 2529 + ], + "__typename": [ + 78 + ] + }, + "teams_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 4029 + ], + "__typename": [ + 78 + ] + }, + "teams_obj_rel_insert_input": { + "data": [ + 4043 + ], + "on_conflict": [ + 4050 + ], + "__typename": [ + 78 + ] + }, + "teams_on_conflict": { + "constraint": [ + 4041 + ], + "update_columns": [ + 4067 + ], + "where": [ + 4040 + ], + "__typename": [ + 78 + ] + }, + "teams_order_by": { + "avatar_url": [ + 2529 + ], + "can_change_role": [ + 2529 + ], + "can_invite": [ + 2529 + ], + "can_manage_scrims": [ + 2529 + ], + "can_remove": [ + 2529 + ], + "captain": [ + 3500 + ], + "captain_steam_id": [ + 2529 + ], + "id": [ + 2529 + ], + "invites_aggregate": [ + 3751 + ], + "is_organization": [ + 2529 + ], + "match_lineups_aggregate": [ + 2029 + ], + "matches_aggregate": [ + 2349 + ], + "name": [ + 2529 + ], + "owner": [ + 3500 + ], + "owner_steam_id": [ + 2529 + ], + "ranks": [ + 5263 + ], + "reputation": [ + 5283 + ], + "role": [ + 2529 + ], + "roster_aggregate": [ + 3794 + ], + "scrim_availability_aggregate": [ + 3866 + ], + "scrim_settings": [ + 3987 + ], + "short_name": [ + 2529 + ], + "tournament_teams_aggregate": [ + 4433 + ], + "__typename": [ + 78 + ] + }, + "teams_pk_columns_input": { + "id": [ + 4621 + ], + "__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 + ], + "captain_steam_id": [ + 180 + ], + "id": [ + 4621 + ], + "is_organization": [ + 3 + ], + "name": [ + 78 + ], + "owner_steam_id": [ + 180 + ], + "short_name": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "teams_stddev_fields": { + "captain_steam_id": [ + 29 + ], + "owner_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "teams_stddev_order_by": { + "captain_steam_id": [ + 2529 + ], + "owner_steam_id": [ + 2529 + ], + "__typename": [ + 78 + ] + }, + "teams_stddev_pop_fields": { + "captain_steam_id": [ + 29 + ], + "owner_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "teams_stddev_pop_order_by": { + "captain_steam_id": [ + 2529 + ], + "owner_steam_id": [ + 2529 + ], + "__typename": [ + 78 + ] + }, + "teams_stddev_samp_fields": { + "captain_steam_id": [ + 29 + ], + "owner_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "teams_stddev_samp_order_by": { + "captain_steam_id": [ + 2529 + ], + "owner_steam_id": [ + 2529 + ], + "__typename": [ + 78 + ] + }, + "teams_stream_cursor_input": { + "initial_value": [ + 4064 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "teams_stream_cursor_value_input": { + "avatar_url": [ + 78 + ], + "captain_steam_id": [ + 180 + ], + "id": [ + 4621 + ], + "is_organization": [ + 3 + ], + "name": [ + 78 + ], + "owner_steam_id": [ + 180 + ], + "short_name": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "teams_sum_fields": { + "captain_steam_id": [ + 180 + ], + "owner_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "teams_sum_order_by": { + "captain_steam_id": [ + 2529 + ], + "owner_steam_id": [ + 2529 + ], + "__typename": [ + 78 + ] + }, + "teams_update_column": {}, + "teams_updates": { + "_inc": [ + 4042 + ], + "_set": [ + 4056 + ], + "where": [ + 4040 + ], + "__typename": [ + 78 + ] + }, + "teams_var_pop_fields": { + "captain_steam_id": [ + 29 + ], + "owner_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "teams_var_pop_order_by": { + "captain_steam_id": [ + 2529 + ], + "owner_steam_id": [ + 2529 + ], + "__typename": [ + 78 + ] + }, + "teams_var_samp_fields": { + "captain_steam_id": [ + 29 + ], + "owner_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "teams_var_samp_order_by": { + "captain_steam_id": [ + 2529 + ], + "owner_steam_id": [ + 2529 + ], + "__typename": [ + 78 + ] + }, + "teams_variance_fields": { + "captain_steam_id": [ + 29 + ], + "owner_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "teams_variance_order_by": { + "captain_steam_id": [ + 2529 + ], + "owner_steam_id": [ + 2529 + ], + "__typename": [ + 78 + ] + }, + "timestamp": {}, + "timestamptz": {}, + "timestamptz_comparison_exp": { + "_eq": [ + 4076 + ], + "_gt": [ + 4076 + ], + "_gte": [ + 4076 + ], + "_in": [ + 4076 + ], + "_is_null": [ + 3 + ], + "_lt": [ + 4076 + ], + "_lte": [ + 4076 + ], + "_neq": [ + 4076 + ], + "_nin": [ + 4076 + ], + "__typename": [ + 78 + ] + }, + "tournament_brackets": { + "bye": [ + 3 ], - "scrim_availability_aggregate": [ - 4112, + "created_at": [ + 4076 + ], + "feeding_brackets": [ + 4078, { "distinct_on": [ - 4131, - "[team_scrim_availability_select_column!]" + 4102, + "[tournament_brackets_select_column!]" ], "limit": [ 38 @@ -98074,26 +95352,68 @@ export default { 38 ], "order_by": [ - 4129, - "[team_scrim_availability_order_by!]" + 4100, + "[tournament_brackets_order_by!]" ], "where": [ - 4120 + 4089 ] } ], - "scrim_settings": [ - 4226 + "finished": [ + 3 ], - "short_name": [ + "group": [ + 2527 + ], + "id": [ + 4621 + ], + "loser_bracket": [ + 4078 + ], + "loser_parent_bracket_id": [ + 4621 + ], + "match": [ + 2344 + ], + "match_id": [ + 4621 + ], + "match_number": [ + 38 + ], + "match_options_id": [ + 4621 + ], + "options": [ + 2224 + ], + "parent_bracket": [ + 4078 + ], + "parent_bracket_id": [ + 4621 + ], + "path": [ 78 ], - "tournament_teams": [ - 4587, + "round": [ + 38 + ], + "scheduled_at": [ + 4076 + ], + "scheduled_eta": [ + 4076 + ], + "scheduling_proposals": [ + 1537, { "distinct_on": [ - 4609, - "[tournament_teams_select_column!]" + 1558, + "[league_scheduling_proposals_select_column!]" ], "limit": [ 38 @@ -98102,20 +95422,20 @@ export default { 38 ], "order_by": [ - 4607, - "[tournament_teams_order_by!]" + 1556, + "[league_scheduling_proposals_order_by!]" ], "where": [ - 4596 + 1546 ] } ], - "tournament_teams_aggregate": [ - 4588, + "scheduling_proposals_aggregate": [ + 1538, { "distinct_on": [ - 4609, - "[tournament_teams_select_column!]" + 1558, + "[league_scheduling_proposals_select_column!]" ], "limit": [ 38 @@ -98124,46 +95444,110 @@ export default { 38 ], "order_by": [ - 4607, - "[tournament_teams_order_by!]" + 1556, + "[league_scheduling_proposals_order_by!]" ], "where": [ - 4596 + 1546 ] } ], + "stage": [ + 4295 + ], + "team_1": [ + 4428 + ], + "team_1_seed": [ + 38 + ], + "team_2": [ + 4428 + ], + "team_2_seed": [ + 38 + ], + "tournament_stage_id": [ + 4621 + ], + "tournament_team_id_1": [ + 4621 + ], + "tournament_team_id_2": [ + 4621 + ], "__typename": [ 78 ] }, - "teams_aggregate": { + "tournament_brackets_aggregate": { "aggregate": [ - 4285 + 4084 ], "nodes": [ - 4281 + 4078 ], "__typename": [ 78 ] }, - "teams_aggregate_bool_exp": { + "tournament_brackets_aggregate_bool_exp": { + "bool_and": [ + 4081 + ], + "bool_or": [ + 4082 + ], "count": [ - 4284 + 4083 ], "__typename": [ 78 ] }, - "teams_aggregate_bool_exp_count": { + "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4303 + 4103 ], "distinct": [ 3 ], "filter": [ - 4290 + 4089 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "tournament_brackets_aggregate_bool_exp_bool_or": { + "arguments": [ + 4104 + ], + "distinct": [ + 3 + ], + "filter": [ + 4089 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "tournament_brackets_aggregate_bool_exp_count": { + "arguments": [ + 4102 + ], + "distinct": [ + 3 + ], + "filter": [ + 4089 ], "predicate": [ 39 @@ -98172,16 +95556,16 @@ export default { 78 ] }, - "teams_aggregate_fields": { + "tournament_brackets_aggregate_fields": { "avg": [ - 4288 + 4087 ], "count": [ 38, { "columns": [ - 4303, - "[teams_select_column!]" + 4102, + "[tournament_brackets_select_column!]" ], "distinct": [ 3 @@ -98189,805 +95573,916 @@ export default { } ], "max": [ - 4294 + 4093 ], "min": [ - 4296 + 4095 ], "stddev": [ - 4305 + 4106 ], "stddev_pop": [ - 4307 + 4108 ], "stddev_samp": [ - 4309 + 4110 ], "sum": [ - 4313 + 4114 ], "var_pop": [ - 4317 + 4118 ], "var_samp": [ - 4319 + 4120 ], "variance": [ - 4321 + 4122 ], "__typename": [ 78 ] }, - "teams_aggregate_order_by": { + "tournament_brackets_aggregate_order_by": { "avg": [ - 4289 + 4088 ], "count": [ - 2781 + 2529 ], "max": [ - 4295 + 4094 ], "min": [ - 4297 + 4096 ], "stddev": [ - 4306 + 4107 ], "stddev_pop": [ - 4308 + 4109 ], "stddev_samp": [ - 4310 + 4111 ], "sum": [ - 4314 + 4115 ], "var_pop": [ - 4318 + 4119 ], "var_samp": [ - 4320 + 4121 ], "variance": [ - 4322 + 4123 ], "__typename": [ 78 ] }, - "teams_arr_rel_insert_input": { + "tournament_brackets_arr_rel_insert_input": { "data": [ - 4293 + 4092 ], "on_conflict": [ - 4300 + 4099 ], "__typename": [ 78 ] }, - "teams_avg_fields": { - "captain_steam_id": [ + "tournament_brackets_avg_fields": { + "group": [ 29 ], - "owner_steam_id": [ + "match_number": [ + 29 + ], + "round": [ + 29 + ], + "team_1_seed": [ + 29 + ], + "team_2_seed": [ 29 ], "__typename": [ 78 ] }, - "teams_avg_order_by": { - "captain_steam_id": [ - 2781 + "tournament_brackets_avg_order_by": { + "group": [ + 2529 ], - "owner_steam_id": [ - 2781 + "match_number": [ + 2529 + ], + "round": [ + 2529 + ], + "team_1_seed": [ + 2529 + ], + "team_2_seed": [ + 2529 ], "__typename": [ 78 ] }, - "teams_bool_exp": { + "tournament_brackets_bool_exp": { "_and": [ - 4290 + 4089 ], "_not": [ - 4290 + 4089 ], "_or": [ - 4290 - ], - "avatar_url": [ - 80 + 4089 ], - "can_change_role": [ + "bye": [ 4 ], - "can_invite": [ - 4 + "created_at": [ + 4077 ], - "can_manage_scrims": [ - 4 + "feeding_brackets": [ + 4089 ], - "can_remove": [ + "finished": [ 4 ], - "captain": [ - 3743 - ], - "captain_steam_id": [ - 182 + "group": [ + 2528 ], "id": [ - 4764 + 4623 ], - "invites": [ - 4007 + "loser_bracket": [ + 4089 ], - "invites_aggregate": [ - 4000 + "loser_parent_bracket_id": [ + 4623 ], - "match_lineups": [ - 2285 + "match": [ + 2353 ], - "match_lineups_aggregate": [ - 2278 + "match_id": [ + 4623 ], - "matches": [ - 2605 + "match_number": [ + 39 ], - "name": [ + "match_options_id": [ + 4623 + ], + "options": [ + 2228 + ], + "parent_bracket": [ + 4089 + ], + "parent_bracket_id": [ + 4623 + ], + "path": [ 80 ], - "owner": [ - 3743 + "round": [ + 39 ], - "owner_steam_id": [ - 182 + "scheduled_at": [ + 4077 ], - "ranks": [ - 5450 + "scheduled_eta": [ + 4077 ], - "reputation": [ - 5470 + "scheduling_proposals": [ + 1546 ], - "role": [ - 80 + "scheduling_proposals_aggregate": [ + 1539 ], - "roster": [ - 4050 + "stage": [ + 4307 ], - "roster_aggregate": [ - 4041 + "team_1": [ + 4437 ], - "scrim_availability": [ - 4120 + "team_1_seed": [ + 39 ], - "scrim_availability_aggregate": [ - 4113 + "team_2": [ + 4437 ], - "scrim_settings": [ - 4230 + "team_2_seed": [ + 39 ], - "short_name": [ - 80 + "tournament_stage_id": [ + 4623 ], - "tournament_teams": [ - 4596 + "tournament_team_id_1": [ + 4623 ], - "tournament_teams_aggregate": [ - 4589 + "tournament_team_id_2": [ + 4623 ], "__typename": [ 78 ] }, - "teams_constraint": {}, - "teams_inc_input": { - "captain_steam_id": [ - 180 + "tournament_brackets_constraint": {}, + "tournament_brackets_inc_input": { + "group": [ + 2527 ], - "owner_steam_id": [ - 180 + "match_number": [ + 38 + ], + "round": [ + 38 + ], + "team_1_seed": [ + 38 + ], + "team_2_seed": [ + 38 ], "__typename": [ 78 ] }, - "teams_insert_input": { - "avatar_url": [ - 78 + "tournament_brackets_insert_input": { + "bye": [ + 3 ], - "captain": [ - 3750 + "created_at": [ + 4076 ], - "captain_steam_id": [ - 180 + "finished": [ + 3 + ], + "group": [ + 2527 ], "id": [ - 4762 + 4621 ], - "invites": [ - 4004 + "loser_bracket": [ + 4098 ], - "match_lineups": [ - 2282 + "loser_parent_bracket_id": [ + 4621 ], - "name": [ + "match": [ + 2362 + ], + "match_id": [ + 4621 + ], + "match_number": [ + 38 + ], + "match_options_id": [ + 4621 + ], + "options": [ + 2235 + ], + "parent_bracket": [ + 4098 + ], + "parent_bracket_id": [ + 4621 + ], + "path": [ 78 ], - "owner": [ - 3750 + "round": [ + 38 ], - "owner_steam_id": [ - 180 + "scheduled_at": [ + 4076 ], - "ranks": [ - 5454 + "scheduled_eta": [ + 4076 ], - "reputation": [ - 5474 + "scheduling_proposals": [ + 1543 ], - "roster": [ - 4047 + "stage": [ + 4319 ], - "scrim_availability": [ - 4119 + "team_1": [ + 4446 ], - "scrim_settings": [ - 4237 + "team_1_seed": [ + 38 ], - "short_name": [ - 78 + "team_2": [ + 4446 ], - "tournament_teams": [ - 4593 + "team_2_seed": [ + 38 + ], + "tournament_stage_id": [ + 4621 + ], + "tournament_team_id_1": [ + 4621 + ], + "tournament_team_id_2": [ + 4621 ], "__typename": [ 78 ] }, - "teams_max_fields": { - "avatar_url": [ - 78 + "tournament_brackets_max_fields": { + "created_at": [ + 4076 ], - "captain_steam_id": [ - 180 + "group": [ + 2527 ], "id": [ - 4762 + 4621 ], - "name": [ - 78 + "loser_parent_bracket_id": [ + 4621 ], - "owner_steam_id": [ - 180 + "match_id": [ + 4621 ], - "role": [ - 78 + "match_number": [ + 38 ], - "short_name": [ + "match_options_id": [ + 4621 + ], + "parent_bracket_id": [ + 4621 + ], + "path": [ 78 ], + "round": [ + 38 + ], + "scheduled_at": [ + 4076 + ], + "scheduled_eta": [ + 4076 + ], + "team_1_seed": [ + 38 + ], + "team_2_seed": [ + 38 + ], + "tournament_stage_id": [ + 4621 + ], + "tournament_team_id_1": [ + 4621 + ], + "tournament_team_id_2": [ + 4621 + ], "__typename": [ 78 ] }, - "teams_max_order_by": { - "avatar_url": [ - 2781 + "tournament_brackets_max_order_by": { + "created_at": [ + 2529 ], - "captain_steam_id": [ - 2781 + "group": [ + 2529 ], "id": [ - 2781 + 2529 ], - "name": [ - 2781 + "loser_parent_bracket_id": [ + 2529 ], - "owner_steam_id": [ - 2781 + "match_id": [ + 2529 ], - "short_name": [ - 2781 + "match_number": [ + 2529 + ], + "match_options_id": [ + 2529 + ], + "parent_bracket_id": [ + 2529 + ], + "path": [ + 2529 + ], + "round": [ + 2529 + ], + "scheduled_at": [ + 2529 + ], + "scheduled_eta": [ + 2529 + ], + "team_1_seed": [ + 2529 + ], + "team_2_seed": [ + 2529 + ], + "tournament_stage_id": [ + 2529 + ], + "tournament_team_id_1": [ + 2529 + ], + "tournament_team_id_2": [ + 2529 ], "__typename": [ 78 ] }, - "teams_min_fields": { - "avatar_url": [ - 78 + "tournament_brackets_min_fields": { + "created_at": [ + 4076 ], - "captain_steam_id": [ - 180 + "group": [ + 2527 ], "id": [ - 4762 + 4621 ], - "name": [ - 78 + "loser_parent_bracket_id": [ + 4621 ], - "owner_steam_id": [ - 180 + "match_id": [ + 4621 ], - "role": [ - 78 + "match_number": [ + 38 ], - "short_name": [ + "match_options_id": [ + 4621 + ], + "parent_bracket_id": [ + 4621 + ], + "path": [ 78 ], + "round": [ + 38 + ], + "scheduled_at": [ + 4076 + ], + "scheduled_eta": [ + 4076 + ], + "team_1_seed": [ + 38 + ], + "team_2_seed": [ + 38 + ], + "tournament_stage_id": [ + 4621 + ], + "tournament_team_id_1": [ + 4621 + ], + "tournament_team_id_2": [ + 4621 + ], "__typename": [ 78 ] }, - "teams_min_order_by": { - "avatar_url": [ - 2781 + "tournament_brackets_min_order_by": { + "created_at": [ + 2529 ], - "captain_steam_id": [ - 2781 + "group": [ + 2529 ], "id": [ - 2781 + 2529 ], - "name": [ - 2781 + "loser_parent_bracket_id": [ + 2529 ], - "owner_steam_id": [ - 2781 + "match_id": [ + 2529 ], - "short_name": [ - 2781 + "match_number": [ + 2529 + ], + "match_options_id": [ + 2529 + ], + "parent_bracket_id": [ + 2529 + ], + "path": [ + 2529 + ], + "round": [ + 2529 + ], + "scheduled_at": [ + 2529 + ], + "scheduled_eta": [ + 2529 + ], + "team_1_seed": [ + 2529 + ], + "team_2_seed": [ + 2529 + ], + "tournament_stage_id": [ + 2529 + ], + "tournament_team_id_1": [ + 2529 + ], + "tournament_team_id_2": [ + 2529 ], "__typename": [ 78 ] }, - "teams_mutation_response": { + "tournament_brackets_mutation_response": { "affected_rows": [ 38 ], "returning": [ - 4281 + 4078 ], "__typename": [ 78 ] }, - "teams_obj_rel_insert_input": { + "tournament_brackets_obj_rel_insert_input": { "data": [ - 4293 + 4092 ], "on_conflict": [ - 4300 + 4099 ], "__typename": [ 78 ] }, - "teams_on_conflict": { + "tournament_brackets_on_conflict": { "constraint": [ - 4291 + 4090 ], "update_columns": [ - 4315 + 4116 ], "where": [ - 4290 + 4089 ], "__typename": [ 78 ] }, - "teams_order_by": { - "avatar_url": [ - 2781 - ], - "can_change_role": [ - 2781 - ], - "can_invite": [ - 2781 + "tournament_brackets_order_by": { + "bye": [ + 2529 ], - "can_manage_scrims": [ - 2781 + "created_at": [ + 2529 ], - "can_remove": [ - 2781 + "feeding_brackets_aggregate": [ + 4085 ], - "captain": [ - 3752 + "finished": [ + 2529 ], - "captain_steam_id": [ - 2781 + "group": [ + 2529 ], "id": [ - 2781 + 2529 ], - "invites_aggregate": [ - 4003 + "loser_bracket": [ + 4100 ], - "match_lineups_aggregate": [ - 2281 + "loser_parent_bracket_id": [ + 2529 ], - "matches_aggregate": [ - 2601 + "match": [ + 2364 ], - "name": [ - 2781 + "match_id": [ + 2529 ], - "owner": [ - 3752 + "match_number": [ + 2529 ], - "owner_steam_id": [ - 2781 + "match_options_id": [ + 2529 ], - "ranks": [ - 5455 + "options": [ + 2237 ], - "reputation": [ - 5475 + "parent_bracket": [ + 4100 ], - "role": [ - 2781 + "parent_bracket_id": [ + 2529 ], - "roster_aggregate": [ - 4046 + "path": [ + 2529 ], - "scrim_availability_aggregate": [ - 4118 + "round": [ + 2529 ], - "scrim_settings": [ - 4239 + "scheduled_at": [ + 2529 ], - "short_name": [ - 2781 + "scheduled_eta": [ + 2529 ], - "tournament_teams_aggregate": [ - 4592 + "scheduling_proposals_aggregate": [ + 1542 ], - "__typename": [ - 78 - ] - }, - "teams_pk_columns_input": { - "id": [ - 4762 + "stage": [ + 4321 ], - "__typename": [ - 78 - ] - }, - "teams_select_column": {}, - "teams_set_input": { - "avatar_url": [ - 78 + "team_1": [ + 4448 ], - "captain_steam_id": [ - 180 + "team_1_seed": [ + 2529 ], - "id": [ - 4762 + "team_2": [ + 4448 ], - "name": [ - 78 + "team_2_seed": [ + 2529 ], - "owner_steam_id": [ - 180 + "tournament_stage_id": [ + 2529 ], - "short_name": [ - 78 + "tournament_team_id_1": [ + 2529 + ], + "tournament_team_id_2": [ + 2529 ], "__typename": [ 78 ] }, - "teams_stddev_fields": { - "captain_steam_id": [ - 29 - ], - "owner_steam_id": [ - 29 + "tournament_brackets_pk_columns_input": { + "id": [ + 4621 ], "__typename": [ 78 ] }, - "teams_stddev_order_by": { - "captain_steam_id": [ - 2781 + "tournament_brackets_select_column": {}, + "tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns": {}, + "tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns": {}, + "tournament_brackets_set_input": { + "bye": [ + 3 ], - "owner_steam_id": [ - 2781 + "created_at": [ + 4076 ], - "__typename": [ - 78 - ] - }, - "teams_stddev_pop_fields": { - "captain_steam_id": [ - 29 + "finished": [ + 3 ], - "owner_steam_id": [ - 29 + "group": [ + 2527 ], - "__typename": [ - 78 - ] - }, - "teams_stddev_pop_order_by": { - "captain_steam_id": [ - 2781 + "id": [ + 4621 ], - "owner_steam_id": [ - 2781 + "loser_parent_bracket_id": [ + 4621 ], - "__typename": [ - 78 - ] - }, - "teams_stddev_samp_fields": { - "captain_steam_id": [ - 29 + "match_id": [ + 4621 ], - "owner_steam_id": [ - 29 + "match_number": [ + 38 ], - "__typename": [ - 78 - ] - }, - "teams_stddev_samp_order_by": { - "captain_steam_id": [ - 2781 + "match_options_id": [ + 4621 ], - "owner_steam_id": [ - 2781 + "parent_bracket_id": [ + 4621 ], - "__typename": [ + "path": [ 78 - ] - }, - "teams_stream_cursor_input": { - "initial_value": [ - 4312 ], - "ordering": [ - 236 + "round": [ + 38 ], - "__typename": [ - 78 - ] - }, - "teams_stream_cursor_value_input": { - "avatar_url": [ - 78 + "scheduled_at": [ + 4076 ], - "captain_steam_id": [ - 180 + "scheduled_eta": [ + 4076 ], - "id": [ - 4762 + "team_1_seed": [ + 38 ], - "name": [ - 78 + "team_2_seed": [ + 38 ], - "owner_steam_id": [ - 180 + "tournament_stage_id": [ + 4621 ], - "short_name": [ - 78 + "tournament_team_id_1": [ + 4621 + ], + "tournament_team_id_2": [ + 4621 ], "__typename": [ 78 ] }, - "teams_sum_fields": { - "captain_steam_id": [ - 180 + "tournament_brackets_stddev_fields": { + "group": [ + 29 ], - "owner_steam_id": [ - 180 + "match_number": [ + 29 ], - "__typename": [ - 78 - ] - }, - "teams_sum_order_by": { - "captain_steam_id": [ - 2781 + "round": [ + 29 ], - "owner_steam_id": [ - 2781 + "team_1_seed": [ + 29 + ], + "team_2_seed": [ + 29 ], "__typename": [ 78 ] }, - "teams_update_column": {}, - "teams_updates": { - "_inc": [ - 4292 + "tournament_brackets_stddev_order_by": { + "group": [ + 2529 ], - "_set": [ - 4304 + "match_number": [ + 2529 ], - "where": [ - 4290 + "round": [ + 2529 + ], + "team_1_seed": [ + 2529 + ], + "team_2_seed": [ + 2529 ], "__typename": [ 78 ] }, - "teams_var_pop_fields": { - "captain_steam_id": [ + "tournament_brackets_stddev_pop_fields": { + "group": [ 29 ], - "owner_steam_id": [ + "match_number": [ 29 ], - "__typename": [ - 78 - ] - }, - "teams_var_pop_order_by": { - "captain_steam_id": [ - 2781 - ], - "owner_steam_id": [ - 2781 + "round": [ + 29 ], - "__typename": [ - 78 - ] - }, - "teams_var_samp_fields": { - "captain_steam_id": [ + "team_1_seed": [ 29 ], - "owner_steam_id": [ + "team_2_seed": [ 29 ], "__typename": [ 78 ] }, - "teams_var_samp_order_by": { - "captain_steam_id": [ - 2781 + "tournament_brackets_stddev_pop_order_by": { + "group": [ + 2529 ], - "owner_steam_id": [ - 2781 + "match_number": [ + 2529 + ], + "round": [ + 2529 + ], + "team_1_seed": [ + 2529 + ], + "team_2_seed": [ + 2529 ], "__typename": [ 78 ] }, - "teams_variance_fields": { - "captain_steam_id": [ + "tournament_brackets_stddev_samp_fields": { + "group": [ 29 ], - "owner_steam_id": [ + "match_number": [ 29 ], - "__typename": [ - 78 - ] - }, - "teams_variance_order_by": { - "captain_steam_id": [ - 2781 + "round": [ + 29 ], - "owner_steam_id": [ - 2781 + "team_1_seed": [ + 29 + ], + "team_2_seed": [ + 29 ], "__typename": [ 78 ] }, - "timestamp": {}, - "timestamptz": {}, - "timestamptz_comparison_exp": { - "_eq": [ - 4324 - ], - "_gt": [ - 4324 - ], - "_gte": [ - 4324 - ], - "_in": [ - 4324 - ], - "_is_null": [ - 3 + "tournament_brackets_stddev_samp_order_by": { + "group": [ + 2529 ], - "_lt": [ - 4324 + "match_number": [ + 2529 ], - "_lte": [ - 4324 + "round": [ + 2529 ], - "_neq": [ - 4324 + "team_1_seed": [ + 2529 ], - "_nin": [ - 4324 + "team_2_seed": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_brackets": { - "bye": [ - 3 - ], - "created_at": [ - 4324 + "tournament_brackets_stream_cursor_input": { + "initial_value": [ + 4113 ], - "feeding_brackets": [ - 4326, - { - "distinct_on": [ - 4350, - "[tournament_brackets_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4348, - "[tournament_brackets_order_by!]" - ], - "where": [ - 4337 - ] - } + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "tournament_brackets_stream_cursor_value_input": { + "bye": [ + 3 + ], + "created_at": [ + 4076 ], "finished": [ 3 ], "group": [ - 2779 + 2527 ], "id": [ - 4762 - ], - "loser_bracket": [ - 4326 + 4621 ], "loser_parent_bracket_id": [ - 4762 - ], - "match": [ - 2596 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_number": [ 38 ], "match_options_id": [ - 4762 - ], - "options": [ - 2476 - ], - "parent_bracket": [ - 4326 + 4621 ], "parent_bracket_id": [ - 4762 + 4621 ], "path": [ 78 @@ -98996,256 +96491,166 @@ export default { 38 ], "scheduled_at": [ - 4324 + 4076 ], "scheduled_eta": [ - 4324 - ], - "scheduling_proposals": [ - 1789, - { - "distinct_on": [ - 1810, - "[league_scheduling_proposals_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1808, - "[league_scheduling_proposals_order_by!]" - ], - "where": [ - 1798 - ] - } - ], - "scheduling_proposals_aggregate": [ - 1790, - { - "distinct_on": [ - 1810, - "[league_scheduling_proposals_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1808, - "[league_scheduling_proposals_order_by!]" - ], - "where": [ - 1798 - ] - } - ], - "stage": [ - 4454 - ], - "team_1": [ - 4587 + 4076 ], "team_1_seed": [ 38 ], - "team_2": [ - 4587 - ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 4762 + 4621 ], "tournament_team_id_1": [ - 4762 + 4621 ], "tournament_team_id_2": [ - 4762 + 4621 ], "__typename": [ 78 ] }, - "tournament_brackets_aggregate": { - "aggregate": [ - 4332 + "tournament_brackets_sum_fields": { + "group": [ + 2527 ], - "nodes": [ - 4326 + "match_number": [ + 38 ], - "__typename": [ - 78 - ] - }, - "tournament_brackets_aggregate_bool_exp": { - "bool_and": [ - 4329 + "round": [ + 38 ], - "bool_or": [ - 4330 + "team_1_seed": [ + 38 ], - "count": [ - 4331 + "team_2_seed": [ + 38 ], "__typename": [ 78 ] }, - "tournament_brackets_aggregate_bool_exp_bool_and": { - "arguments": [ - 4351 + "tournament_brackets_sum_order_by": { + "group": [ + 2529 ], - "distinct": [ - 3 + "match_number": [ + 2529 ], - "filter": [ - 4337 + "round": [ + 2529 ], - "predicate": [ - 4 + "team_1_seed": [ + 2529 + ], + "team_2_seed": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_brackets_aggregate_bool_exp_bool_or": { - "arguments": [ - 4352 - ], - "distinct": [ - 3 + "tournament_brackets_update_column": {}, + "tournament_brackets_updates": { + "_inc": [ + 4091 ], - "filter": [ - 4337 + "_set": [ + 4105 ], - "predicate": [ - 4 + "where": [ + 4089 ], "__typename": [ 78 ] }, - "tournament_brackets_aggregate_bool_exp_count": { - "arguments": [ - 4350 + "tournament_brackets_var_pop_fields": { + "group": [ + 29 ], - "distinct": [ - 3 + "match_number": [ + 29 ], - "filter": [ - 4337 + "round": [ + 29 ], - "predicate": [ - 39 + "team_1_seed": [ + 29 + ], + "team_2_seed": [ + 29 ], "__typename": [ 78 ] }, - "tournament_brackets_aggregate_fields": { - "avg": [ - 4335 - ], - "count": [ - 38, - { - "columns": [ - 4350, - "[tournament_brackets_select_column!]" - ], - "distinct": [ - 3 - ] - } - ], - "max": [ - 4341 - ], - "min": [ - 4343 - ], - "stddev": [ - 4354 - ], - "stddev_pop": [ - 4356 - ], - "stddev_samp": [ - 4358 + "tournament_brackets_var_pop_order_by": { + "group": [ + 2529 ], - "sum": [ - 4362 + "match_number": [ + 2529 ], - "var_pop": [ - 4366 + "round": [ + 2529 ], - "var_samp": [ - 4368 + "team_1_seed": [ + 2529 ], - "variance": [ - 4370 + "team_2_seed": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_brackets_aggregate_order_by": { - "avg": [ - 4336 - ], - "count": [ - 2781 - ], - "max": [ - 4342 - ], - "min": [ - 4344 - ], - "stddev": [ - 4355 - ], - "stddev_pop": [ - 4357 - ], - "stddev_samp": [ - 4359 + "tournament_brackets_var_samp_fields": { + "group": [ + 29 ], - "sum": [ - 4363 + "match_number": [ + 29 ], - "var_pop": [ - 4367 + "round": [ + 29 ], - "var_samp": [ - 4369 + "team_1_seed": [ + 29 ], - "variance": [ - 4371 + "team_2_seed": [ + 29 ], "__typename": [ 78 ] }, - "tournament_brackets_arr_rel_insert_input": { - "data": [ - 4340 + "tournament_brackets_var_samp_order_by": { + "group": [ + 2529 ], - "on_conflict": [ - 4347 + "match_number": [ + 2529 + ], + "round": [ + 2529 + ], + "team_1_seed": [ + 2529 + ], + "team_2_seed": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_brackets_avg_fields": { + "tournament_brackets_variance_fields": { "group": [ 29 ], @@ -99265,779 +96670,1036 @@ export default { 78 ] }, - "tournament_brackets_avg_order_by": { + "tournament_brackets_variance_order_by": { "group": [ - 2781 + 2529 ], "match_number": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "team_1_seed": [ - 2781 + 2529 ], "team_2_seed": [ - 2781 + 2529 ], "__typename": [ 78 ] }, - "tournament_brackets_bool_exp": { - "_and": [ - 4337 - ], - "_not": [ - 4337 + "tournament_categories": { + "category": [ + 1130 ], - "_or": [ - 4337 + "e_tournament_category": [ + 1125 ], - "bye": [ - 4 + "tournament": [ + 4557 ], - "created_at": [ - 4325 + "tournament_id": [ + 4621 ], - "feeding_brackets": [ - 4337 + "__typename": [ + 78 + ] + }, + "tournament_categories_aggregate": { + "aggregate": [ + 4128 ], - "finished": [ - 4 + "nodes": [ + 4124 ], - "group": [ - 2780 + "__typename": [ + 78 + ] + }, + "tournament_categories_aggregate_bool_exp": { + "count": [ + 4127 ], - "id": [ - 4764 + "__typename": [ + 78 + ] + }, + "tournament_categories_aggregate_bool_exp_count": { + "arguments": [ + 4142 ], - "loser_bracket": [ - 4337 + "distinct": [ + 3 ], - "loser_parent_bracket_id": [ - 4764 + "filter": [ + 4131 ], - "match": [ - 2605 + "predicate": [ + 39 ], - "match_id": [ - 4764 + "__typename": [ + 78 + ] + }, + "tournament_categories_aggregate_fields": { + "count": [ + 38, + { + "columns": [ + 4142, + "[tournament_categories_select_column!]" + ], + "distinct": [ + 3 + ] + } ], - "match_number": [ - 39 + "max": [ + 4134 ], - "match_options_id": [ - 4764 + "min": [ + 4136 ], - "options": [ - 2480 + "__typename": [ + 78 + ] + }, + "tournament_categories_aggregate_order_by": { + "count": [ + 2529 ], - "parent_bracket": [ - 4337 + "max": [ + 4135 ], - "parent_bracket_id": [ - 4764 + "min": [ + 4137 ], - "path": [ - 80 + "__typename": [ + 78 + ] + }, + "tournament_categories_arr_rel_insert_input": { + "data": [ + 4133 ], - "round": [ - 39 + "on_conflict": [ + 4139 ], - "scheduled_at": [ - 4325 + "__typename": [ + 78 + ] + }, + "tournament_categories_bool_exp": { + "_and": [ + 4131 ], - "scheduled_eta": [ - 4325 + "_not": [ + 4131 ], - "scheduling_proposals": [ - 1798 + "_or": [ + 4131 ], - "scheduling_proposals_aggregate": [ - 1791 + "category": [ + 1131 ], - "stage": [ - 4466 + "e_tournament_category": [ + 1128 ], - "team_1": [ - 4596 + "tournament": [ + 4578 ], - "team_1_seed": [ - 39 + "tournament_id": [ + 4623 ], - "team_2": [ - 4596 + "__typename": [ + 78 + ] + }, + "tournament_categories_constraint": {}, + "tournament_categories_insert_input": { + "category": [ + 1130 ], - "team_2_seed": [ - 39 + "e_tournament_category": [ + 1136 ], - "tournament_stage_id": [ - 4764 + "tournament": [ + 4587 ], - "tournament_team_id_1": [ - 4764 + "tournament_id": [ + 4621 ], - "tournament_team_id_2": [ - 4764 + "__typename": [ + 78 + ] + }, + "tournament_categories_max_fields": { + "tournament_id": [ + 4621 ], "__typename": [ 78 ] }, - "tournament_brackets_constraint": {}, - "tournament_brackets_inc_input": { - "group": [ - 2779 + "tournament_categories_max_order_by": { + "tournament_id": [ + 2529 ], - "match_number": [ - 38 + "__typename": [ + 78 + ] + }, + "tournament_categories_min_fields": { + "tournament_id": [ + 4621 ], - "round": [ - 38 + "__typename": [ + 78 + ] + }, + "tournament_categories_min_order_by": { + "tournament_id": [ + 2529 ], - "team_1_seed": [ + "__typename": [ + 78 + ] + }, + "tournament_categories_mutation_response": { + "affected_rows": [ 38 ], - "team_2_seed": [ - 38 + "returning": [ + 4124 ], "__typename": [ 78 ] }, - "tournament_brackets_insert_input": { - "bye": [ - 3 + "tournament_categories_on_conflict": { + "constraint": [ + 4132 ], - "created_at": [ - 4324 + "update_columns": [ + 4146 ], - "finished": [ - 3 + "where": [ + 4131 ], - "group": [ - 2779 + "__typename": [ + 78 + ] + }, + "tournament_categories_order_by": { + "category": [ + 2529 ], - "id": [ - 4762 + "e_tournament_category": [ + 1138 ], - "loser_bracket": [ - 4346 + "tournament": [ + 4589 ], - "loser_parent_bracket_id": [ - 4762 + "tournament_id": [ + 2529 ], - "match": [ - 2614 + "__typename": [ + 78 + ] + }, + "tournament_categories_pk_columns_input": { + "category": [ + 1130 ], - "match_id": [ - 4762 + "tournament_id": [ + 4621 ], - "match_number": [ - 38 + "__typename": [ + 78 + ] + }, + "tournament_categories_select_column": {}, + "tournament_categories_set_input": { + "category": [ + 1130 ], - "match_options_id": [ - 4762 + "tournament_id": [ + 4621 ], - "options": [ - 2487 + "__typename": [ + 78 + ] + }, + "tournament_categories_stream_cursor_input": { + "initial_value": [ + 4145 ], - "parent_bracket": [ - 4346 + "ordering": [ + 236 ], - "parent_bracket_id": [ - 4762 + "__typename": [ + 78 + ] + }, + "tournament_categories_stream_cursor_value_input": { + "category": [ + 1130 ], - "path": [ + "tournament_id": [ + 4621 + ], + "__typename": [ 78 + ] + }, + "tournament_categories_update_column": {}, + "tournament_categories_updates": { + "_set": [ + 4143 ], - "round": [ - 38 + "where": [ + 4131 ], - "scheduled_at": [ - 4324 + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams": { + "created_at": [ + 4076 ], - "scheduled_eta": [ - 4324 + "team": [ + 4029 ], - "scheduling_proposals": [ - 1795 + "team_id": [ + 4621 ], - "stage": [ - 4478 + "tournament": [ + 4557 ], - "team_1": [ - 4605 + "tournament_id": [ + 4621 ], - "team_1_seed": [ - 38 + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_aggregate": { + "aggregate": [ + 4152 ], - "team_2": [ - 4605 + "nodes": [ + 4148 ], - "team_2_seed": [ - 38 + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_aggregate_bool_exp": { + "count": [ + 4151 ], - "tournament_stage_id": [ - 4762 + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_aggregate_bool_exp_count": { + "arguments": [ + 4166 ], - "tournament_team_id_1": [ - 4762 + "distinct": [ + 3 ], - "tournament_team_id_2": [ - 4762 + "filter": [ + 4155 + ], + "predicate": [ + 39 ], "__typename": [ 78 ] }, - "tournament_brackets_max_fields": { - "created_at": [ - 4324 + "tournament_organizer_teams_aggregate_fields": { + "count": [ + 38, + { + "columns": [ + 4166, + "[tournament_organizer_teams_select_column!]" + ], + "distinct": [ + 3 + ] + } ], - "group": [ - 2779 + "max": [ + 4158 ], - "id": [ - 4762 + "min": [ + 4160 ], - "loser_parent_bracket_id": [ - 4762 + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_aggregate_order_by": { + "count": [ + 2529 ], - "match_id": [ - 4762 + "max": [ + 4159 ], - "match_number": [ - 38 + "min": [ + 4161 ], - "match_options_id": [ - 4762 + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_arr_rel_insert_input": { + "data": [ + 4157 ], - "parent_bracket_id": [ - 4762 + "on_conflict": [ + 4163 ], - "path": [ + "__typename": [ 78 + ] + }, + "tournament_organizer_teams_bool_exp": { + "_and": [ + 4155 ], - "round": [ - 38 - ], - "scheduled_at": [ - 4324 + "_not": [ + 4155 ], - "scheduled_eta": [ - 4324 + "_or": [ + 4155 ], - "team_1_seed": [ - 38 + "created_at": [ + 4077 ], - "team_2_seed": [ - 38 + "team": [ + 4040 ], - "tournament_stage_id": [ - 4762 + "team_id": [ + 4623 ], - "tournament_team_id_1": [ - 4762 + "tournament": [ + 4578 ], - "tournament_team_id_2": [ - 4762 + "tournament_id": [ + 4623 ], "__typename": [ 78 ] }, - "tournament_brackets_max_order_by": { + "tournament_organizer_teams_constraint": {}, + "tournament_organizer_teams_insert_input": { "created_at": [ - 2781 - ], - "group": [ - 2781 - ], - "id": [ - 2781 - ], - "loser_parent_bracket_id": [ - 2781 + 4076 ], - "match_id": [ - 2781 + "team": [ + 4049 ], - "match_number": [ - 2781 + "team_id": [ + 4621 ], - "match_options_id": [ - 2781 + "tournament": [ + 4587 ], - "parent_bracket_id": [ - 2781 + "tournament_id": [ + 4621 ], - "path": [ - 2781 + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_max_fields": { + "created_at": [ + 4076 ], - "round": [ - 2781 + "team_id": [ + 4621 ], - "scheduled_at": [ - 2781 + "tournament_id": [ + 4621 ], - "scheduled_eta": [ - 2781 + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_max_order_by": { + "created_at": [ + 2529 ], - "team_1_seed": [ - 2781 + "team_id": [ + 2529 ], - "team_2_seed": [ - 2781 + "tournament_id": [ + 2529 ], - "tournament_stage_id": [ - 2781 + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_min_fields": { + "created_at": [ + 4076 ], - "tournament_team_id_1": [ - 2781 + "team_id": [ + 4621 ], - "tournament_team_id_2": [ - 2781 + "tournament_id": [ + 4621 ], "__typename": [ 78 ] }, - "tournament_brackets_min_fields": { + "tournament_organizer_teams_min_order_by": { "created_at": [ - 4324 - ], - "group": [ - 2779 - ], - "id": [ - 4762 + 2529 ], - "loser_parent_bracket_id": [ - 4762 + "team_id": [ + 2529 ], - "match_id": [ - 4762 + "tournament_id": [ + 2529 ], - "match_number": [ + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_mutation_response": { + "affected_rows": [ 38 ], - "match_options_id": [ - 4762 - ], - "parent_bracket_id": [ - 4762 + "returning": [ + 4148 ], - "path": [ + "__typename": [ 78 + ] + }, + "tournament_organizer_teams_on_conflict": { + "constraint": [ + 4156 ], - "round": [ - 38 + "update_columns": [ + 4170 ], - "scheduled_at": [ - 4324 + "where": [ + 4155 ], - "scheduled_eta": [ - 4324 + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_order_by": { + "created_at": [ + 2529 ], - "team_1_seed": [ - 38 + "team": [ + 4051 ], - "team_2_seed": [ - 38 + "team_id": [ + 2529 ], - "tournament_stage_id": [ - 4762 + "tournament": [ + 4589 ], - "tournament_team_id_1": [ - 4762 + "tournament_id": [ + 2529 ], - "tournament_team_id_2": [ - 4762 + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_pk_columns_input": { + "team_id": [ + 4621 + ], + "tournament_id": [ + 4621 ], "__typename": [ 78 ] }, - "tournament_brackets_min_order_by": { + "tournament_organizer_teams_select_column": {}, + "tournament_organizer_teams_set_input": { "created_at": [ - 2781 - ], - "group": [ - 2781 + 4076 ], - "id": [ - 2781 + "team_id": [ + 4621 ], - "loser_parent_bracket_id": [ - 2781 + "tournament_id": [ + 4621 ], - "match_id": [ - 2781 + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_stream_cursor_input": { + "initial_value": [ + 4169 ], - "match_number": [ - 2781 + "ordering": [ + 236 ], - "match_options_id": [ - 2781 + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_stream_cursor_value_input": { + "created_at": [ + 4076 ], - "parent_bracket_id": [ - 2781 + "team_id": [ + 4621 ], - "path": [ - 2781 + "tournament_id": [ + 4621 ], - "round": [ - 2781 + "__typename": [ + 78 + ] + }, + "tournament_organizer_teams_update_column": {}, + "tournament_organizer_teams_updates": { + "_set": [ + 4167 ], - "scheduled_at": [ - 2781 + "where": [ + 4155 ], - "scheduled_eta": [ - 2781 + "__typename": [ + 78 + ] + }, + "tournament_organizers": { + "organization_team": [ + 4029 ], - "team_1_seed": [ - 2781 + "organization_team_id": [ + 4621 ], - "team_2_seed": [ - 2781 + "organizer": [ + 3487 ], - "tournament_stage_id": [ - 2781 + "steam_id": [ + 180 ], - "tournament_team_id_1": [ - 2781 + "tournament": [ + 4557 ], - "tournament_team_id_2": [ - 2781 + "tournament_id": [ + 4621 ], "__typename": [ 78 ] }, - "tournament_brackets_mutation_response": { - "affected_rows": [ - 38 + "tournament_organizers_aggregate": { + "aggregate": [ + 4176 ], - "returning": [ - 4326 + "nodes": [ + 4172 ], "__typename": [ 78 ] }, - "tournament_brackets_obj_rel_insert_input": { - "data": [ - 4340 - ], - "on_conflict": [ - 4347 + "tournament_organizers_aggregate_bool_exp": { + "count": [ + 4175 ], "__typename": [ 78 ] }, - "tournament_brackets_on_conflict": { - "constraint": [ - 4338 + "tournament_organizers_aggregate_bool_exp_count": { + "arguments": [ + 4193 ], - "update_columns": [ - 4364 + "distinct": [ + 3 ], - "where": [ - 4337 + "filter": [ + 4181 + ], + "predicate": [ + 39 ], "__typename": [ 78 ] }, - "tournament_brackets_order_by": { - "bye": [ - 2781 + "tournament_organizers_aggregate_fields": { + "avg": [ + 4179 ], - "created_at": [ - 2781 + "count": [ + 38, + { + "columns": [ + 4193, + "[tournament_organizers_select_column!]" + ], + "distinct": [ + 3 + ] + } ], - "feeding_brackets_aggregate": [ - 4333 + "max": [ + 4185 ], - "finished": [ - 2781 + "min": [ + 4187 ], - "group": [ - 2781 + "stddev": [ + 4195 ], - "id": [ - 2781 + "stddev_pop": [ + 4197 ], - "loser_bracket": [ - 4348 + "stddev_samp": [ + 4199 ], - "loser_parent_bracket_id": [ - 2781 + "sum": [ + 4203 ], - "match": [ - 2616 + "var_pop": [ + 4207 ], - "match_id": [ - 2781 + "var_samp": [ + 4209 ], - "match_number": [ - 2781 + "variance": [ + 4211 ], - "match_options_id": [ - 2781 + "__typename": [ + 78 + ] + }, + "tournament_organizers_aggregate_order_by": { + "avg": [ + 4180 ], - "options": [ - 2489 + "count": [ + 2529 ], - "parent_bracket": [ - 4348 + "max": [ + 4186 ], - "parent_bracket_id": [ - 2781 + "min": [ + 4188 ], - "path": [ - 2781 + "stddev": [ + 4196 ], - "round": [ - 2781 + "stddev_pop": [ + 4198 ], - "scheduled_at": [ - 2781 + "stddev_samp": [ + 4200 ], - "scheduled_eta": [ - 2781 + "sum": [ + 4204 ], - "scheduling_proposals_aggregate": [ - 1794 + "var_pop": [ + 4208 ], - "stage": [ - 4480 + "var_samp": [ + 4210 ], - "team_1": [ - 4607 + "variance": [ + 4212 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizers_arr_rel_insert_input": { + "data": [ + 4184 + ], + "on_conflict": [ + 4190 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizers_avg_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizers_avg_order_by": { + "steam_id": [ + 2529 + ], + "__typename": [ + 78 + ] + }, + "tournament_organizers_bool_exp": { + "_and": [ + 4181 + ], + "_not": [ + 4181 + ], + "_or": [ + 4181 ], - "team_1_seed": [ - 2781 + "organization_team": [ + 4040 ], - "team_2": [ - 4607 + "organization_team_id": [ + 4623 ], - "team_2_seed": [ - 2781 + "organizer": [ + 3491 ], - "tournament_stage_id": [ - 2781 + "steam_id": [ + 182 ], - "tournament_team_id_1": [ - 2781 + "tournament": [ + 4578 ], - "tournament_team_id_2": [ - 2781 + "tournament_id": [ + 4623 ], "__typename": [ 78 ] }, - "tournament_brackets_pk_columns_input": { - "id": [ - 4762 + "tournament_organizers_constraint": {}, + "tournament_organizers_inc_input": { + "steam_id": [ + 180 ], "__typename": [ 78 ] }, - "tournament_brackets_select_column": {}, - "tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_and_arguments_columns": {}, - "tournament_brackets_select_column_tournament_brackets_aggregate_bool_exp_bool_or_arguments_columns": {}, - "tournament_brackets_set_input": { - "bye": [ - 3 - ], - "created_at": [ - 4324 - ], - "finished": [ - 3 - ], - "group": [ - 2779 - ], - "id": [ - 4762 + "tournament_organizers_insert_input": { + "organization_team": [ + 4049 ], - "loser_parent_bracket_id": [ - 4762 + "organization_team_id": [ + 4621 ], - "match_id": [ - 4762 + "organizer": [ + 3498 ], - "match_number": [ - 38 + "steam_id": [ + 180 ], - "match_options_id": [ - 4762 + "tournament": [ + 4587 ], - "parent_bracket_id": [ - 4762 + "tournament_id": [ + 4621 ], - "path": [ + "__typename": [ 78 + ] + }, + "tournament_organizers_max_fields": { + "organization_team_id": [ + 4621 ], - "round": [ - 38 + "steam_id": [ + 180 ], - "scheduled_at": [ - 4324 + "tournament_id": [ + 4621 ], - "scheduled_eta": [ - 4324 + "__typename": [ + 78 + ] + }, + "tournament_organizers_max_order_by": { + "organization_team_id": [ + 2529 ], - "team_1_seed": [ - 38 + "steam_id": [ + 2529 ], - "team_2_seed": [ - 38 + "tournament_id": [ + 2529 ], - "tournament_stage_id": [ - 4762 + "__typename": [ + 78 + ] + }, + "tournament_organizers_min_fields": { + "organization_team_id": [ + 4621 ], - "tournament_team_id_1": [ - 4762 + "steam_id": [ + 180 ], - "tournament_team_id_2": [ - 4762 + "tournament_id": [ + 4621 ], "__typename": [ 78 ] }, - "tournament_brackets_stddev_fields": { - "group": [ - 29 - ], - "match_number": [ - 29 - ], - "round": [ - 29 + "tournament_organizers_min_order_by": { + "organization_team_id": [ + 2529 ], - "team_1_seed": [ - 29 + "steam_id": [ + 2529 ], - "team_2_seed": [ - 29 + "tournament_id": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_brackets_stddev_order_by": { - "group": [ - 2781 + "tournament_organizers_mutation_response": { + "affected_rows": [ + 38 ], - "match_number": [ - 2781 + "returning": [ + 4172 ], - "round": [ - 2781 + "__typename": [ + 78 + ] + }, + "tournament_organizers_on_conflict": { + "constraint": [ + 4182 ], - "team_1_seed": [ - 2781 + "update_columns": [ + 4205 ], - "team_2_seed": [ - 2781 + "where": [ + 4181 ], "__typename": [ 78 ] }, - "tournament_brackets_stddev_pop_fields": { - "group": [ - 29 + "tournament_organizers_order_by": { + "organization_team": [ + 4051 ], - "match_number": [ - 29 + "organization_team_id": [ + 2529 ], - "round": [ - 29 + "organizer": [ + 3500 ], - "team_1_seed": [ - 29 + "steam_id": [ + 2529 ], - "team_2_seed": [ - 29 + "tournament": [ + 4589 + ], + "tournament_id": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_brackets_stddev_pop_order_by": { - "group": [ - 2781 + "tournament_organizers_pk_columns_input": { + "steam_id": [ + 180 ], - "match_number": [ - 2781 + "tournament_id": [ + 4621 ], - "round": [ - 2781 + "__typename": [ + 78 + ] + }, + "tournament_organizers_select_column": {}, + "tournament_organizers_set_input": { + "organization_team_id": [ + 4621 ], - "team_1_seed": [ - 2781 + "steam_id": [ + 180 ], - "team_2_seed": [ - 2781 + "tournament_id": [ + 4621 ], "__typename": [ 78 ] }, - "tournament_brackets_stddev_samp_fields": { - "group": [ + "tournament_organizers_stddev_fields": { + "steam_id": [ 29 ], - "match_number": [ - 29 + "__typename": [ + 78 + ] + }, + "tournament_organizers_stddev_order_by": { + "steam_id": [ + 2529 ], - "round": [ + "__typename": [ + 78 + ] + }, + "tournament_organizers_stddev_pop_fields": { + "steam_id": [ 29 ], - "team_1_seed": [ - 29 + "__typename": [ + 78 + ] + }, + "tournament_organizers_stddev_pop_order_by": { + "steam_id": [ + 2529 ], - "team_2_seed": [ + "__typename": [ + 78 + ] + }, + "tournament_organizers_stddev_samp_fields": { + "steam_id": [ 29 ], "__typename": [ 78 ] }, - "tournament_brackets_stddev_samp_order_by": { - "group": [ - 2781 - ], - "match_number": [ - 2781 - ], - "round": [ - 2781 - ], - "team_1_seed": [ - 2781 - ], - "team_2_seed": [ - 2781 + "tournament_organizers_stddev_samp_order_by": { + "steam_id": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_brackets_stream_cursor_input": { + "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4361 + 4202 ], "ordering": [ 236 @@ -100046,288 +97708,153 @@ export default { 78 ] }, - "tournament_brackets_stream_cursor_value_input": { - "bye": [ - 3 - ], - "created_at": [ - 4324 - ], - "finished": [ - 3 - ], - "group": [ - 2779 - ], - "id": [ - 4762 - ], - "loser_parent_bracket_id": [ - 4762 - ], - "match_id": [ - 4762 - ], - "match_number": [ - 38 - ], - "match_options_id": [ - 4762 - ], - "parent_bracket_id": [ - 4762 - ], - "path": [ - 78 - ], - "round": [ - 38 - ], - "scheduled_at": [ - 4324 - ], - "scheduled_eta": [ - 4324 - ], - "team_1_seed": [ - 38 - ], - "team_2_seed": [ - 38 - ], - "tournament_stage_id": [ - 4762 + "tournament_organizers_stream_cursor_value_input": { + "organization_team_id": [ + 4621 ], - "tournament_team_id_1": [ - 4762 + "steam_id": [ + 180 ], - "tournament_team_id_2": [ - 4762 + "tournament_id": [ + 4621 ], "__typename": [ 78 ] }, - "tournament_brackets_sum_fields": { - "group": [ - 2779 - ], - "match_number": [ - 38 - ], - "round": [ - 38 - ], - "team_1_seed": [ - 38 - ], - "team_2_seed": [ - 38 + "tournament_organizers_sum_fields": { + "steam_id": [ + 180 ], "__typename": [ 78 ] }, - "tournament_brackets_sum_order_by": { - "group": [ - 2781 - ], - "match_number": [ - 2781 - ], - "round": [ - 2781 - ], - "team_1_seed": [ - 2781 - ], - "team_2_seed": [ - 2781 + "tournament_organizers_sum_order_by": { + "steam_id": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_brackets_update_column": {}, - "tournament_brackets_updates": { + "tournament_organizers_update_column": {}, + "tournament_organizers_updates": { "_inc": [ - 4339 + 4183 ], "_set": [ - 4353 + 4194 ], "where": [ - 4337 + 4181 ], "__typename": [ 78 ] }, - "tournament_brackets_var_pop_fields": { - "group": [ - 29 - ], - "match_number": [ - 29 - ], - "round": [ - 29 - ], - "team_1_seed": [ - 29 - ], - "team_2_seed": [ + "tournament_organizers_var_pop_fields": { + "steam_id": [ 29 ], "__typename": [ 78 ] }, - "tournament_brackets_var_pop_order_by": { - "group": [ - 2781 - ], - "match_number": [ - 2781 - ], - "round": [ - 2781 - ], - "team_1_seed": [ - 2781 - ], - "team_2_seed": [ - 2781 + "tournament_organizers_var_pop_order_by": { + "steam_id": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_brackets_var_samp_fields": { - "group": [ - 29 - ], - "match_number": [ - 29 - ], - "round": [ - 29 - ], - "team_1_seed": [ - 29 - ], - "team_2_seed": [ + "tournament_organizers_var_samp_fields": { + "steam_id": [ 29 ], "__typename": [ 78 ] }, - "tournament_brackets_var_samp_order_by": { - "group": [ - 2781 - ], - "match_number": [ - 2781 - ], - "round": [ - 2781 - ], - "team_1_seed": [ - 2781 - ], - "team_2_seed": [ - 2781 + "tournament_organizers_var_samp_order_by": { + "steam_id": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_brackets_variance_fields": { - "group": [ - 29 - ], - "match_number": [ - 29 - ], - "round": [ - 29 - ], - "team_1_seed": [ - 29 - ], - "team_2_seed": [ + "tournament_organizers_variance_fields": { + "steam_id": [ 29 ], "__typename": [ 78 ] }, - "tournament_brackets_variance_order_by": { - "group": [ - 2781 - ], - "match_number": [ - 2781 - ], - "round": [ - 2781 - ], - "team_1_seed": [ - 2781 - ], - "team_2_seed": [ - 2781 + "tournament_organizers_variance_order_by": { + "steam_id": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_organizers": { - "organizer": [ - 3739 + "tournament_prizes": { + "created_at": [ + 4076 ], - "steam_id": [ - 180 + "id": [ + 4621 + ], + "order": [ + 38 + ], + "place": [ + 78 + ], + "prize": [ + 78 ], "tournament": [ - 4716 + 4557 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 ] }, - "tournament_organizers_aggregate": { + "tournament_prizes_aggregate": { "aggregate": [ - 4376 + 4217 ], "nodes": [ - 4372 + 4213 ], "__typename": [ 78 ] }, - "tournament_organizers_aggregate_bool_exp": { + "tournament_prizes_aggregate_bool_exp": { "count": [ - 4375 + 4216 ], "__typename": [ 78 ] }, - "tournament_organizers_aggregate_bool_exp_count": { + "tournament_prizes_aggregate_bool_exp_count": { "arguments": [ - 4393 + 4234 ], "distinct": [ 3 ], "filter": [ - 4381 + 4222 ], "predicate": [ 39 @@ -100336,16 +97863,16 @@ export default { 78 ] }, - "tournament_organizers_aggregate_fields": { + "tournament_prizes_aggregate_fields": { "avg": [ - 4379 + 4220 ], "count": [ 38, { "columns": [ - 4393, - "[tournament_organizers_select_column!]" + 4234, + "[tournament_prizes_select_column!]" ], "distinct": [ 3 @@ -100353,313 +97880,397 @@ export default { } ], "max": [ - 4385 + 4226 ], "min": [ - 4387 + 4228 ], "stddev": [ - 4395 + 4236 ], "stddev_pop": [ - 4397 + 4238 ], "stddev_samp": [ - 4399 + 4240 ], "sum": [ - 4403 + 4244 ], "var_pop": [ - 4407 + 4248 ], "var_samp": [ - 4409 + 4250 ], "variance": [ - 4411 + 4252 ], "__typename": [ 78 ] }, - "tournament_organizers_aggregate_order_by": { + "tournament_prizes_aggregate_order_by": { "avg": [ - 4380 + 4221 ], "count": [ - 2781 + 2529 ], "max": [ - 4386 + 4227 ], "min": [ - 4388 + 4229 ], "stddev": [ - 4396 + 4237 ], "stddev_pop": [ - 4398 + 4239 ], "stddev_samp": [ - 4400 + 4241 ], "sum": [ - 4404 + 4245 ], "var_pop": [ - 4408 + 4249 ], "var_samp": [ - 4410 + 4251 ], "variance": [ - 4412 + 4253 ], "__typename": [ 78 ] }, - "tournament_organizers_arr_rel_insert_input": { + "tournament_prizes_arr_rel_insert_input": { "data": [ - 4384 + 4225 ], "on_conflict": [ - 4390 + 4231 ], "__typename": [ 78 ] }, - "tournament_organizers_avg_fields": { - "steam_id": [ + "tournament_prizes_avg_fields": { + "order": [ 29 ], "__typename": [ 78 ] }, - "tournament_organizers_avg_order_by": { - "steam_id": [ - 2781 + "tournament_prizes_avg_order_by": { + "order": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_organizers_bool_exp": { + "tournament_prizes_bool_exp": { "_and": [ - 4381 + 4222 ], "_not": [ - 4381 + 4222 ], "_or": [ - 4381 + 4222 ], - "organizer": [ - 3743 + "created_at": [ + 4077 ], - "steam_id": [ - 182 + "id": [ + 4623 + ], + "order": [ + 39 + ], + "place": [ + 80 + ], + "prize": [ + 80 ], "tournament": [ - 4727 + 4578 ], "tournament_id": [ - 4764 + 4623 ], "__typename": [ 78 ] }, - "tournament_organizers_constraint": {}, - "tournament_organizers_inc_input": { - "steam_id": [ - 180 + "tournament_prizes_constraint": {}, + "tournament_prizes_inc_input": { + "order": [ + 38 ], "__typename": [ 78 ] }, - "tournament_organizers_insert_input": { - "organizer": [ - 3750 + "tournament_prizes_insert_input": { + "created_at": [ + 4076 ], - "steam_id": [ - 180 + "id": [ + 4621 + ], + "order": [ + 38 + ], + "place": [ + 78 + ], + "prize": [ + 78 ], "tournament": [ - 4736 + 4587 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 ] }, - "tournament_organizers_max_fields": { - "steam_id": [ - 180 + "tournament_prizes_max_fields": { + "created_at": [ + 4076 + ], + "id": [ + 4621 + ], + "order": [ + 38 + ], + "place": [ + 78 + ], + "prize": [ + 78 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 ] }, - "tournament_organizers_max_order_by": { - "steam_id": [ - 2781 + "tournament_prizes_max_order_by": { + "created_at": [ + 2529 + ], + "id": [ + 2529 + ], + "order": [ + 2529 + ], + "place": [ + 2529 + ], + "prize": [ + 2529 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 ] }, - "tournament_organizers_min_fields": { - "steam_id": [ - 180 + "tournament_prizes_min_fields": { + "created_at": [ + 4076 + ], + "id": [ + 4621 + ], + "order": [ + 38 + ], + "place": [ + 78 + ], + "prize": [ + 78 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 ] }, - "tournament_organizers_min_order_by": { - "steam_id": [ - 2781 + "tournament_prizes_min_order_by": { + "created_at": [ + 2529 + ], + "id": [ + 2529 + ], + "order": [ + 2529 + ], + "place": [ + 2529 + ], + "prize": [ + 2529 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 ] }, - "tournament_organizers_mutation_response": { + "tournament_prizes_mutation_response": { "affected_rows": [ 38 ], "returning": [ - 4372 + 4213 ], "__typename": [ 78 ] }, - "tournament_organizers_on_conflict": { + "tournament_prizes_on_conflict": { "constraint": [ - 4382 + 4223 ], "update_columns": [ - 4405 + 4246 ], "where": [ - 4381 + 4222 ], "__typename": [ 78 ] }, - "tournament_organizers_order_by": { - "organizer": [ - 3752 + "tournament_prizes_order_by": { + "created_at": [ + 2529 ], - "steam_id": [ - 2781 + "id": [ + 2529 + ], + "order": [ + 2529 + ], + "place": [ + 2529 + ], + "prize": [ + 2529 ], "tournament": [ - 4738 + 4589 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 ] }, - "tournament_organizers_pk_columns_input": { - "steam_id": [ - 180 - ], - "tournament_id": [ - 4762 + "tournament_prizes_pk_columns_input": { + "id": [ + 4621 ], "__typename": [ 78 ] }, - "tournament_organizers_select_column": {}, - "tournament_organizers_set_input": { - "steam_id": [ - 180 + "tournament_prizes_select_column": {}, + "tournament_prizes_set_input": { + "created_at": [ + 4076 + ], + "id": [ + 4621 + ], + "order": [ + 38 + ], + "place": [ + 78 + ], + "prize": [ + 78 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 ] }, - "tournament_organizers_stddev_fields": { - "steam_id": [ + "tournament_prizes_stddev_fields": { + "order": [ 29 ], "__typename": [ 78 ] }, - "tournament_organizers_stddev_order_by": { - "steam_id": [ - 2781 + "tournament_prizes_stddev_order_by": { + "order": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_organizers_stddev_pop_fields": { - "steam_id": [ + "tournament_prizes_stddev_pop_fields": { + "order": [ 29 ], "__typename": [ 78 ] }, - "tournament_organizers_stddev_pop_order_by": { - "steam_id": [ - 2781 + "tournament_prizes_stddev_pop_order_by": { + "order": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_organizers_stddev_samp_fields": { - "steam_id": [ + "tournament_prizes_stddev_samp_fields": { + "order": [ 29 ], "__typename": [ 78 ] }, - "tournament_organizers_stddev_samp_order_by": { - "steam_id": [ - 2781 + "tournament_prizes_stddev_samp_order_by": { + "order": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_organizers_stream_cursor_input": { + "tournament_prizes_stream_cursor_input": { "initial_value": [ - 4402 + 4243 ], "ordering": [ 236 @@ -100668,91 +98279,103 @@ export default { 78 ] }, - "tournament_organizers_stream_cursor_value_input": { - "steam_id": [ - 180 + "tournament_prizes_stream_cursor_value_input": { + "created_at": [ + 4076 + ], + "id": [ + 4621 + ], + "order": [ + 38 + ], + "place": [ + 78 + ], + "prize": [ + 78 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 ] }, - "tournament_organizers_sum_fields": { - "steam_id": [ - 180 + "tournament_prizes_sum_fields": { + "order": [ + 38 ], "__typename": [ 78 ] }, - "tournament_organizers_sum_order_by": { - "steam_id": [ - 2781 + "tournament_prizes_sum_order_by": { + "order": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_organizers_update_column": {}, - "tournament_organizers_updates": { + "tournament_prizes_update_column": {}, + "tournament_prizes_updates": { "_inc": [ - 4383 + 4224 ], "_set": [ - 4394 + 4235 ], "where": [ - 4381 + 4222 ], "__typename": [ 78 ] }, - "tournament_organizers_var_pop_fields": { - "steam_id": [ + "tournament_prizes_var_pop_fields": { + "order": [ 29 ], "__typename": [ 78 ] }, - "tournament_organizers_var_pop_order_by": { - "steam_id": [ - 2781 + "tournament_prizes_var_pop_order_by": { + "order": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_organizers_var_samp_fields": { - "steam_id": [ + "tournament_prizes_var_samp_fields": { + "order": [ 29 ], "__typename": [ 78 ] }, - "tournament_organizers_var_samp_order_by": { - "steam_id": [ - 2781 + "tournament_prizes_var_samp_order_by": { + "order": [ + 2529 ], "__typename": [ 78 ] }, - "tournament_organizers_variance_fields": { - "steam_id": [ + "tournament_prizes_variance_fields": { + "order": [ 29 ], "__typename": [ 78 ] }, - "tournament_organizers_variance_order_by": { - "steam_id": [ - 2781 + "tournament_prizes_variance_order_by": { + "order": [ + 2529 ], "__typename": [ 78 @@ -100760,28 +98383,28 @@ export default { }, "tournament_stage_windows": { "closes_at": [ - 4324 + 4076 ], "created_at": [ - 4324 + 4076 ], "default_match_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "opens_at": [ - 4324 + 4076 ], "round": [ 38 ], "stage": [ - 4454 + 4295 ], "tournament_stage_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -100789,10 +98412,10 @@ export default { }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4417 + 4258 ], "nodes": [ - 4413 + 4254 ], "__typename": [ 78 @@ -100800,7 +98423,7 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4416 + 4257 ], "__typename": [ 78 @@ -100808,13 +98431,13 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4434 + 4275 ], "distinct": [ 3 ], "filter": [ - 4422 + 4263 ], "predicate": [ 39 @@ -100825,13 +98448,13 @@ export default { }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4420 + 4261 ], "count": [ 38, { "columns": [ - 4434, + 4275, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -100840,31 +98463,31 @@ export default { } ], "max": [ - 4426 + 4267 ], "min": [ - 4428 + 4269 ], "stddev": [ - 4436 + 4277 ], "stddev_pop": [ - 4438 + 4279 ], "stddev_samp": [ - 4440 + 4281 ], "sum": [ - 4444 + 4285 ], "var_pop": [ - 4448 + 4289 ], "var_samp": [ - 4450 + 4291 ], "variance": [ - 4452 + 4293 ], "__typename": [ 78 @@ -100872,37 +98495,37 @@ export default { }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4421 + 4262 ], "count": [ - 2781 + 2529 ], "max": [ - 4427 + 4268 ], "min": [ - 4429 + 4270 ], "stddev": [ - 4437 + 4278 ], "stddev_pop": [ - 4439 + 4280 ], "stddev_samp": [ - 4441 + 4282 ], "sum": [ - 4445 + 4286 ], "var_pop": [ - 4449 + 4290 ], "var_samp": [ - 4451 + 4292 ], "variance": [ - 4453 + 4294 ], "__typename": [ 78 @@ -100910,10 +98533,10 @@ export default { }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4425 + 4266 ], "on_conflict": [ - 4431 + 4272 ], "__typename": [ 78 @@ -100929,7 +98552,7 @@ export default { }, "tournament_stage_windows_avg_order_by": { "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -100937,37 +98560,37 @@ export default { }, "tournament_stage_windows_bool_exp": { "_and": [ - 4422 + 4263 ], "_not": [ - 4422 + 4263 ], "_or": [ - 4422 + 4263 ], "closes_at": [ - 4325 + 4077 ], "created_at": [ - 4325 + 4077 ], "default_match_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "opens_at": [ - 4325 + 4077 ], "round": [ 39 ], "stage": [ - 4466 + 4307 ], "tournament_stage_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -100984,28 +98607,28 @@ export default { }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4324 + 4076 ], "created_at": [ - 4324 + 4076 ], "default_match_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "opens_at": [ - 4324 + 4076 ], "round": [ 38 ], "stage": [ - 4478 + 4319 ], "tournament_stage_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -101013,25 +98636,25 @@ export default { }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4324 + 4076 ], "created_at": [ - 4324 + 4076 ], "default_match_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "opens_at": [ - 4324 + 4076 ], "round": [ 38 ], "tournament_stage_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -101039,25 +98662,25 @@ export default { }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "default_match_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "opens_at": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "tournament_stage_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -101065,25 +98688,25 @@ export default { }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4324 + 4076 ], "created_at": [ - 4324 + 4076 ], "default_match_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "opens_at": [ - 4324 + 4076 ], "round": [ 38 ], "tournament_stage_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -101091,25 +98714,25 @@ export default { }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "default_match_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "opens_at": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "tournament_stage_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -101120,7 +98743,7 @@ export default { 38 ], "returning": [ - 4413 + 4254 ], "__typename": [ 78 @@ -101128,13 +98751,13 @@ export default { }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4423 + 4264 ], "update_columns": [ - 4446 + 4287 ], "where": [ - 4422 + 4263 ], "__typename": [ 78 @@ -101142,28 +98765,28 @@ export default { }, "tournament_stage_windows_order_by": { "closes_at": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "default_match_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "opens_at": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "stage": [ - 4480 + 4321 ], "tournament_stage_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -101171,7 +98794,7 @@ export default { }, "tournament_stage_windows_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -101180,25 +98803,25 @@ export default { "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4324 + 4076 ], "created_at": [ - 4324 + 4076 ], "default_match_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "opens_at": [ - 4324 + 4076 ], "round": [ 38 ], "tournament_stage_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -101214,7 +98837,7 @@ export default { }, "tournament_stage_windows_stddev_order_by": { "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -101230,7 +98853,7 @@ export default { }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -101246,7 +98869,7 @@ export default { }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -101254,7 +98877,7 @@ export default { }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4443 + 4284 ], "ordering": [ 236 @@ -101265,25 +98888,25 @@ export default { }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4324 + 4076 ], "created_at": [ - 4324 + 4076 ], "default_match_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "opens_at": [ - 4324 + 4076 ], "round": [ 38 ], "tournament_stage_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -101299,7 +98922,7 @@ export default { }, "tournament_stage_windows_sum_order_by": { "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -101308,13 +98931,13 @@ export default { "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4424 + 4265 ], "_set": [ - 4435 + 4276 ], "where": [ - 4422 + 4263 ], "__typename": [ 78 @@ -101330,7 +98953,7 @@ export default { }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -101346,7 +98969,7 @@ export default { }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -101362,7 +98985,7 @@ export default { }, "tournament_stage_windows_variance_order_by": { "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -101370,10 +98993,10 @@ export default { }, "tournament_stages": { "brackets": [ - 4326, + 4078, { "distinct_on": [ - 4350, + 4102, "[tournament_brackets_select_column!]" ], "limit": [ @@ -101383,19 +99006,19 @@ export default { 38 ], "order_by": [ - 4348, + 4100, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4089 ] } ], "brackets_aggregate": [ - 4327, + 4079, { "distinct_on": [ - 4350, + 4102, "[tournament_brackets_select_column!]" ], "limit": [ @@ -101405,11 +99028,11 @@ export default { 38 ], "order_by": [ - 4348, + 4100, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4089 ] } ], @@ -101420,16 +99043,19 @@ export default { 38 ], "e_tournament_stage_type": [ - 1138 + 1146 + ], + "final_map_advantage": [ + 38 ], "groups": [ 38 ], "id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "max_rounds": [ 38 @@ -101441,16 +99067,16 @@ export default { 38 ], "options": [ - 2476 + 2224 ], "order": [ 38 ], "results": [ - 5486, + 5294, { "distinct_on": [ - 5518, + 5326, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -101460,19 +99086,19 @@ export default { 38 ], "order_by": [ - 5516, + 5324, "[v_team_stage_results_order_by!]" ], "where": [ - 5505 + 5313 ] } ], "results_aggregate": [ - 5487, + 5295, { "distinct_on": [ - 5518, + 5326, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -101482,16 +99108,16 @@ export default { 38 ], "order_by": [ - 5516, + 5324, "[v_team_stage_results_order_by!]" ], "where": [ - 5505 + 5313 ] } ], "settings": [ - 1652, + 1400, { "path": [ 78 @@ -101505,19 +99131,19 @@ export default { 3 ], "tournament": [ - 4716 + 4557 ], "tournament_id": [ - 4762 + 4621 ], "type": [ - 1143 + 1151 ], "windows": [ - 4413, + 4254, { "distinct_on": [ - 4434, + 4275, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -101527,19 +99153,19 @@ export default { 38 ], "order_by": [ - 4432, + 4273, "[tournament_stage_windows_order_by!]" ], "where": [ - 4422 + 4263 ] } ], "windows_aggregate": [ - 4414, + 4255, { "distinct_on": [ - 4434, + 4275, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -101549,11 +99175,11 @@ export default { 38 ], "order_by": [ - 4432, + 4273, "[tournament_stage_windows_order_by!]" ], "where": [ - 4422 + 4263 ] } ], @@ -101563,10 +99189,10 @@ export default { }, "tournament_stages_aggregate": { "aggregate": [ - 4460 + 4301 ], "nodes": [ - 4454 + 4295 ], "__typename": [ 78 @@ -101574,13 +99200,13 @@ export default { }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4457 + 4298 ], "bool_or": [ - 4458 + 4299 ], "count": [ - 4459 + 4300 ], "__typename": [ 78 @@ -101588,13 +99214,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4484 + 4325 ], "distinct": [ 3 ], "filter": [ - 4466 + 4307 ], "predicate": [ 4 @@ -101605,13 +99231,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4485 + 4326 ], "distinct": [ 3 ], "filter": [ - 4466 + 4307 ], "predicate": [ 4 @@ -101622,13 +99248,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4483 + 4324 ], "distinct": [ 3 ], "filter": [ - 4466 + 4307 ], "predicate": [ 39 @@ -101639,13 +99265,13 @@ export default { }, "tournament_stages_aggregate_fields": { "avg": [ - 4464 + 4305 ], "count": [ 38, { "columns": [ - 4483, + 4324, "[tournament_stages_select_column!]" ], "distinct": [ @@ -101654,31 +99280,31 @@ export default { } ], "max": [ - 4473 + 4314 ], "min": [ - 4475 + 4316 ], "stddev": [ - 4487 + 4328 ], "stddev_pop": [ - 4489 + 4330 ], "stddev_samp": [ - 4491 + 4332 ], "sum": [ - 4495 + 4336 ], "var_pop": [ - 4499 + 4340 ], "var_samp": [ - 4501 + 4342 ], "variance": [ - 4503 + 4344 ], "__typename": [ 78 @@ -101686,37 +99312,37 @@ export default { }, "tournament_stages_aggregate_order_by": { "avg": [ - 4465 + 4306 ], "count": [ - 2781 + 2529 ], "max": [ - 4474 + 4315 ], "min": [ - 4476 + 4317 ], "stddev": [ - 4488 + 4329 ], "stddev_pop": [ - 4490 + 4331 ], "stddev_samp": [ - 4492 + 4333 ], "sum": [ - 4496 + 4337 ], "var_pop": [ - 4500 + 4341 ], "var_samp": [ - 4502 + 4343 ], "variance": [ - 4504 + 4345 ], "__typename": [ 78 @@ -101724,7 +99350,7 @@ export default { }, "tournament_stages_append_input": { "settings": [ - 1652 + 1400 ], "__typename": [ 78 @@ -101732,10 +99358,10 @@ export default { }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4472 + 4313 ], "on_conflict": [ - 4479 + 4320 ], "__typename": [ 78 @@ -101748,6 +99374,9 @@ export default { "default_best_of": [ 29 ], + "final_map_advantage": [ + 29 + ], "groups": [ 29 ], @@ -101769,25 +99398,28 @@ export default { }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 2781 + 2529 ], "default_best_of": [ - 2781 + 2529 + ], + "final_map_advantage": [ + 2529 ], "groups": [ - 2781 + 2529 ], "max_rounds": [ - 2781 + 2529 ], "max_teams": [ - 2781 + 2529 ], "min_teams": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "__typename": [ 78 @@ -101795,19 +99427,19 @@ export default { }, "tournament_stages_bool_exp": { "_and": [ - 4466 + 4307 ], "_not": [ - 4466 + 4307 ], "_or": [ - 4466 + 4307 ], "brackets": [ - 4337 + 4089 ], "brackets_aggregate": [ - 4328 + 4080 ], "decider_best_of": [ 39 @@ -101816,16 +99448,19 @@ export default { 39 ], "e_tournament_stage_type": [ - 1141 + 1149 + ], + "final_map_advantage": [ + 39 ], "groups": [ 39 ], "id": [ - 4764 + 4623 ], "match_options_id": [ - 4764 + 4623 ], "max_rounds": [ 39 @@ -101837,19 +99472,19 @@ export default { 39 ], "options": [ - 2480 + 2228 ], "order": [ 39 ], "results": [ - 5505 + 5313 ], "results_aggregate": [ - 5488 + 5296 ], "settings": [ - 1654 + 1402 ], "swiss_no_elimination": [ 4 @@ -101858,19 +99493,19 @@ export default { 4 ], "tournament": [ - 4727 + 4578 ], "tournament_id": [ - 4764 + 4623 ], "type": [ - 1144 + 1152 ], "windows": [ - 4422 + 4263 ], "windows_aggregate": [ - 4415 + 4256 ], "__typename": [ 78 @@ -101908,6 +99543,9 @@ export default { "default_best_of": [ 38 ], + "final_map_advantage": [ + 38 + ], "groups": [ 38 ], @@ -101929,7 +99567,7 @@ export default { }, "tournament_stages_insert_input": { "brackets": [ - 4334 + 4086 ], "decider_best_of": [ 38 @@ -101938,16 +99576,19 @@ export default { 38 ], "e_tournament_stage_type": [ - 1149 + 1157 + ], + "final_map_advantage": [ + 38 ], "groups": [ 38 ], "id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "max_rounds": [ 38 @@ -101959,16 +99600,16 @@ export default { 38 ], "options": [ - 2487 + 2235 ], "order": [ 38 ], "results": [ - 5502 + 5310 ], "settings": [ - 1652 + 1400 ], "swiss_no_elimination": [ 3 @@ -101977,16 +99618,16 @@ export default { 3 ], "tournament": [ - 4736 + 4587 ], "tournament_id": [ - 4762 + 4621 ], "type": [ - 1143 + 1151 ], "windows": [ - 4419 + 4260 ], "__typename": [ 78 @@ -101999,14 +99640,17 @@ export default { "default_best_of": [ 38 ], + "final_map_advantage": [ + 38 + ], "groups": [ 38 ], "id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "max_rounds": [ 38 @@ -102021,7 +99665,7 @@ export default { 38 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -102029,34 +99673,37 @@ export default { }, "tournament_stages_max_order_by": { "decider_best_of": [ - 2781 + 2529 ], "default_best_of": [ - 2781 + 2529 + ], + "final_map_advantage": [ + 2529 ], "groups": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match_options_id": [ - 2781 + 2529 ], "max_rounds": [ - 2781 + 2529 ], "max_teams": [ - 2781 + 2529 ], "min_teams": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -102069,14 +99716,17 @@ export default { "default_best_of": [ 38 ], + "final_map_advantage": [ + 38 + ], "groups": [ 38 ], "id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "max_rounds": [ 38 @@ -102091,7 +99741,7 @@ export default { 38 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -102099,34 +99749,37 @@ export default { }, "tournament_stages_min_order_by": { "decider_best_of": [ - 2781 + 2529 ], "default_best_of": [ - 2781 + 2529 + ], + "final_map_advantage": [ + 2529 ], "groups": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match_options_id": [ - 2781 + 2529 ], "max_rounds": [ - 2781 + 2529 ], "max_teams": [ - 2781 + 2529 ], "min_teams": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -102137,7 +99790,7 @@ export default { 38 ], "returning": [ - 4454 + 4295 ], "__typename": [ 78 @@ -102145,10 +99798,10 @@ export default { }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4472 + 4313 ], "on_conflict": [ - 4479 + 4320 ], "__typename": [ 78 @@ -102156,13 +99809,13 @@ export default { }, "tournament_stages_on_conflict": { "constraint": [ - 4467 + 4308 ], "update_columns": [ - 4497 + 4338 ], "where": [ - 4466 + 4307 ], "__typename": [ 78 @@ -102170,64 +99823,67 @@ export default { }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4333 + 4085 ], "decider_best_of": [ - 2781 + 2529 ], "default_best_of": [ - 2781 + 2529 ], "e_tournament_stage_type": [ - 1151 + 1159 + ], + "final_map_advantage": [ + 2529 ], "groups": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "match_options_id": [ - 2781 + 2529 ], "max_rounds": [ - 2781 + 2529 ], "max_teams": [ - 2781 + 2529 ], "min_teams": [ - 2781 + 2529 ], "options": [ - 2489 + 2237 ], "order": [ - 2781 + 2529 ], "results_aggregate": [ - 5501 + 5309 ], "settings": [ - 2781 + 2529 ], "swiss_no_elimination": [ - 2781 + 2529 ], "third_place_match": [ - 2781 + 2529 ], "tournament": [ - 4738 + 4589 ], "tournament_id": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "windows_aggregate": [ - 4418 + 4259 ], "__typename": [ 78 @@ -102235,7 +99891,7 @@ export default { }, "tournament_stages_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -102243,7 +99899,7 @@ export default { }, "tournament_stages_prepend_input": { "settings": [ - 1652 + 1400 ], "__typename": [ 78 @@ -102259,14 +99915,17 @@ export default { "default_best_of": [ 38 ], + "final_map_advantage": [ + 38 + ], "groups": [ 38 ], "id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "max_rounds": [ 38 @@ -102281,7 +99940,7 @@ export default { 38 ], "settings": [ - 1652 + 1400 ], "swiss_no_elimination": [ 3 @@ -102290,10 +99949,10 @@ export default { 3 ], "tournament_id": [ - 4762 + 4621 ], "type": [ - 1143 + 1151 ], "__typename": [ 78 @@ -102306,6 +99965,9 @@ export default { "default_best_of": [ 29 ], + "final_map_advantage": [ + 29 + ], "groups": [ 29 ], @@ -102327,25 +99989,28 @@ export default { }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 2781 + 2529 ], "default_best_of": [ - 2781 + 2529 + ], + "final_map_advantage": [ + 2529 ], "groups": [ - 2781 + 2529 ], "max_rounds": [ - 2781 + 2529 ], "max_teams": [ - 2781 + 2529 ], "min_teams": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "__typename": [ 78 @@ -102358,6 +100023,9 @@ export default { "default_best_of": [ 29 ], + "final_map_advantage": [ + 29 + ], "groups": [ 29 ], @@ -102379,25 +100047,28 @@ export default { }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 2781 + 2529 ], "default_best_of": [ - 2781 + 2529 + ], + "final_map_advantage": [ + 2529 ], "groups": [ - 2781 + 2529 ], "max_rounds": [ - 2781 + 2529 ], "max_teams": [ - 2781 + 2529 ], "min_teams": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "__typename": [ 78 @@ -102410,6 +100081,9 @@ export default { "default_best_of": [ 29 ], + "final_map_advantage": [ + 29 + ], "groups": [ 29 ], @@ -102431,25 +100105,28 @@ export default { }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 2781 + 2529 ], "default_best_of": [ - 2781 + 2529 + ], + "final_map_advantage": [ + 2529 ], "groups": [ - 2781 + 2529 ], "max_rounds": [ - 2781 + 2529 ], "max_teams": [ - 2781 + 2529 ], "min_teams": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "__typename": [ 78 @@ -102457,7 +100134,7 @@ export default { }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4494 + 4335 ], "ordering": [ 236 @@ -102473,14 +100150,17 @@ export default { "default_best_of": [ 38 ], + "final_map_advantage": [ + 38 + ], "groups": [ 38 ], "id": [ - 4762 + 4621 ], "match_options_id": [ - 4762 + 4621 ], "max_rounds": [ 38 @@ -102495,7 +100175,7 @@ export default { 38 ], "settings": [ - 1652 + 1400 ], "swiss_no_elimination": [ 3 @@ -102504,10 +100184,10 @@ export default { 3 ], "tournament_id": [ - 4762 + 4621 ], "type": [ - 1143 + 1151 ], "__typename": [ 78 @@ -102520,6 +100200,9 @@ export default { "default_best_of": [ 38 ], + "final_map_advantage": [ + 38 + ], "groups": [ 38 ], @@ -102541,25 +100224,28 @@ export default { }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 2781 + 2529 ], "default_best_of": [ - 2781 + 2529 + ], + "final_map_advantage": [ + 2529 ], "groups": [ - 2781 + 2529 ], "max_rounds": [ - 2781 + 2529 ], "max_teams": [ - 2781 + 2529 ], "min_teams": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "__typename": [ 78 @@ -102568,28 +100254,28 @@ export default { "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4462 + 4303 ], "_delete_at_path": [ - 4468 + 4309 ], "_delete_elem": [ - 4469 + 4310 ], "_delete_key": [ - 4470 + 4311 ], "_inc": [ - 4471 + 4312 ], "_prepend": [ - 4482 + 4323 ], "_set": [ - 4486 + 4327 ], "where": [ - 4466 + 4307 ], "__typename": [ 78 @@ -102602,6 +100288,9 @@ export default { "default_best_of": [ 29 ], + "final_map_advantage": [ + 29 + ], "groups": [ 29 ], @@ -102623,25 +100312,28 @@ export default { }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 2781 + 2529 ], "default_best_of": [ - 2781 + 2529 + ], + "final_map_advantage": [ + 2529 ], "groups": [ - 2781 + 2529 ], "max_rounds": [ - 2781 + 2529 ], "max_teams": [ - 2781 + 2529 ], "min_teams": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "__typename": [ 78 @@ -102654,6 +100346,9 @@ export default { "default_best_of": [ 29 ], + "final_map_advantage": [ + 29 + ], "groups": [ 29 ], @@ -102675,25 +100370,28 @@ export default { }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 2781 + 2529 ], "default_best_of": [ - 2781 + 2529 + ], + "final_map_advantage": [ + 2529 ], "groups": [ - 2781 + 2529 ], "max_rounds": [ - 2781 + 2529 ], "max_teams": [ - 2781 + 2529 ], "min_teams": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "__typename": [ 78 @@ -102706,6 +100404,9 @@ export default { "default_best_of": [ 29 ], + "final_map_advantage": [ + 29 + ], "groups": [ 29 ], @@ -102727,25 +100428,28 @@ export default { }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 2781 + 2529 ], "default_best_of": [ - 2781 + 2529 + ], + "final_map_advantage": [ + 2529 ], "groups": [ - 2781 + 2529 ], "max_rounds": [ - 2781 + 2529 ], "max_teams": [ - 2781 + 2529 ], "min_teams": [ - 2781 + 2529 ], "order": [ - 2781 + 2529 ], "__typename": [ 78 @@ -102753,28 +100457,28 @@ export default { }, "tournament_team_invites": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "invited_by": [ - 3739 + 3487 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3739 + 3487 ], "steam_id": [ 180 ], "team": [ - 4587 + 4428 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -102782,10 +100486,10 @@ export default { }, "tournament_team_invites_aggregate": { "aggregate": [ - 4509 + 4350 ], "nodes": [ - 4505 + 4346 ], "__typename": [ 78 @@ -102793,7 +100497,7 @@ export default { }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4508 + 4349 ], "__typename": [ 78 @@ -102801,13 +100505,13 @@ export default { }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 4526 + 4367 ], "distinct": [ 3 ], "filter": [ - 4514 + 4355 ], "predicate": [ 39 @@ -102818,13 +100522,13 @@ export default { }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4512 + 4353 ], "count": [ 38, { "columns": [ - 4526, + 4367, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -102833,31 +100537,31 @@ export default { } ], "max": [ - 4518 + 4359 ], "min": [ - 4520 + 4361 ], "stddev": [ - 4528 + 4369 ], "stddev_pop": [ - 4530 + 4371 ], "stddev_samp": [ - 4532 + 4373 ], "sum": [ - 4536 + 4377 ], "var_pop": [ - 4540 + 4381 ], "var_samp": [ - 4542 + 4383 ], "variance": [ - 4544 + 4385 ], "__typename": [ 78 @@ -102865,37 +100569,37 @@ export default { }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4513 + 4354 ], "count": [ - 2781 + 2529 ], "max": [ - 4519 + 4360 ], "min": [ - 4521 + 4362 ], "stddev": [ - 4529 + 4370 ], "stddev_pop": [ - 4531 + 4372 ], "stddev_samp": [ - 4533 + 4374 ], "sum": [ - 4537 + 4378 ], "var_pop": [ - 4541 + 4382 ], "var_samp": [ - 4543 + 4384 ], "variance": [ - 4545 + 4386 ], "__typename": [ 78 @@ -102903,10 +100607,10 @@ export default { }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4517 + 4358 ], "on_conflict": [ - 4523 + 4364 ], "__typename": [ 78 @@ -102925,10 +100629,10 @@ export default { }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -102936,37 +100640,37 @@ export default { }, "tournament_team_invites_bool_exp": { "_and": [ - 4514 + 4355 ], "_not": [ - 4514 + 4355 ], "_or": [ - 4514 + 4355 ], "created_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "invited_by": [ - 3743 + 3491 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3743 + 3491 ], "steam_id": [ 182 ], "team": [ - 4596 + 4437 ], "tournament_team_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -102986,28 +100690,28 @@ export default { }, "tournament_team_invites_insert_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "invited_by": [ - 3750 + 3498 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3750 + 3498 ], "steam_id": [ 180 ], "team": [ - 4605 + 4446 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -103015,10 +100719,10 @@ export default { }, "tournament_team_invites_max_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "invited_by_player_steam_id": [ 180 @@ -103027,7 +100731,7 @@ export default { 180 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -103035,19 +100739,19 @@ export default { }, "tournament_team_invites_max_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103055,10 +100759,10 @@ export default { }, "tournament_team_invites_min_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "invited_by_player_steam_id": [ 180 @@ -103067,7 +100771,7 @@ export default { 180 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -103075,19 +100779,19 @@ export default { }, "tournament_team_invites_min_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103098,7 +100802,7 @@ export default { 38 ], "returning": [ - 4505 + 4346 ], "__typename": [ 78 @@ -103106,13 +100810,13 @@ export default { }, "tournament_team_invites_on_conflict": { "constraint": [ - 4515 + 4356 ], "update_columns": [ - 4538 + 4379 ], "where": [ - 4514 + 4355 ], "__typename": [ 78 @@ -103120,28 +100824,28 @@ export default { }, "tournament_team_invites_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "invited_by": [ - 3752 + 3500 ], "invited_by_player_steam_id": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "steam_id": [ - 2781 + 2529 ], "team": [ - 4607 + 4448 ], "tournament_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103149,7 +100853,7 @@ export default { }, "tournament_team_invites_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -103158,10 +100862,10 @@ export default { "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "invited_by_player_steam_id": [ 180 @@ -103170,7 +100874,7 @@ export default { 180 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -103189,10 +100893,10 @@ export default { }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103211,10 +100915,10 @@ export default { }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103233,10 +100937,10 @@ export default { }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103244,7 +100948,7 @@ export default { }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 4535 + 4376 ], "ordering": [ 236 @@ -103255,10 +100959,10 @@ export default { }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "invited_by_player_steam_id": [ 180 @@ -103267,7 +100971,7 @@ export default { 180 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -103286,10 +100990,10 @@ export default { }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103298,13 +101002,13 @@ export default { "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4516 + 4357 ], "_set": [ - 4527 + 4368 ], "where": [ - 4514 + 4355 ], "__typename": [ 78 @@ -103323,10 +101027,10 @@ export default { }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103345,10 +101049,10 @@ export default { }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103367,10 +101071,10 @@ export default { }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103378,28 +101082,28 @@ export default { }, "tournament_team_roster": { "e_team_role": [ - 1077 + 1064 ], "player": [ - 3739 + 3487 ], "player_steam_id": [ 180 ], "role": [ - 1082 + 1069 ], "tournament": [ - 4716 + 4557 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team": [ - 4587 + 4428 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -103407,10 +101111,10 @@ export default { }, "tournament_team_roster_aggregate": { "aggregate": [ - 4550 + 4391 ], "nodes": [ - 4546 + 4387 ], "__typename": [ 78 @@ -103418,7 +101122,7 @@ export default { }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 4549 + 4390 ], "__typename": [ 78 @@ -103426,13 +101130,13 @@ export default { }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 4567 + 4408 ], "distinct": [ 3 ], "filter": [ - 4555 + 4396 ], "predicate": [ 39 @@ -103443,13 +101147,13 @@ export default { }, "tournament_team_roster_aggregate_fields": { "avg": [ - 4553 + 4394 ], "count": [ 38, { "columns": [ - 4567, + 4408, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -103458,31 +101162,31 @@ export default { } ], "max": [ - 4559 + 4400 ], "min": [ - 4561 + 4402 ], "stddev": [ - 4569 + 4410 ], "stddev_pop": [ - 4571 + 4412 ], "stddev_samp": [ - 4573 + 4414 ], "sum": [ - 4577 + 4418 ], "var_pop": [ - 4581 + 4422 ], "var_samp": [ - 4583 + 4424 ], "variance": [ - 4585 + 4426 ], "__typename": [ 78 @@ -103490,37 +101194,37 @@ export default { }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 4554 + 4395 ], "count": [ - 2781 + 2529 ], "max": [ - 4560 + 4401 ], "min": [ - 4562 + 4403 ], "stddev": [ - 4570 + 4411 ], "stddev_pop": [ - 4572 + 4413 ], "stddev_samp": [ - 4574 + 4415 ], "sum": [ - 4578 + 4419 ], "var_pop": [ - 4582 + 4423 ], "var_samp": [ - 4584 + 4425 ], "variance": [ - 4586 + 4427 ], "__typename": [ 78 @@ -103528,10 +101232,10 @@ export default { }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 4558 + 4399 ], "on_conflict": [ - 4564 + 4405 ], "__typename": [ 78 @@ -103547,7 +101251,7 @@ export default { }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103555,37 +101259,37 @@ export default { }, "tournament_team_roster_bool_exp": { "_and": [ - 4555 + 4396 ], "_not": [ - 4555 + 4396 ], "_or": [ - 4555 + 4396 ], "e_team_role": [ - 1080 + 1067 ], "player": [ - 3743 + 3491 ], "player_steam_id": [ 182 ], "role": [ - 1083 + 1070 ], "tournament": [ - 4727 + 4578 ], "tournament_id": [ - 4764 + 4623 ], "tournament_team": [ - 4596 + 4437 ], "tournament_team_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -103602,28 +101306,28 @@ export default { }, "tournament_team_roster_insert_input": { "e_team_role": [ - 1088 + 1075 ], "player": [ - 3750 + 3498 ], "player_steam_id": [ 180 ], "role": [ - 1082 + 1069 ], "tournament": [ - 4736 + 4587 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team": [ - 4605 + 4446 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -103634,10 +101338,10 @@ export default { 180 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -103645,13 +101349,13 @@ export default { }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103662,10 +101366,10 @@ export default { 180 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -103673,13 +101377,13 @@ export default { }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103690,7 +101394,7 @@ export default { 38 ], "returning": [ - 4546 + 4387 ], "__typename": [ 78 @@ -103698,13 +101402,13 @@ export default { }, "tournament_team_roster_on_conflict": { "constraint": [ - 4556 + 4397 ], "update_columns": [ - 4579 + 4420 ], "where": [ - 4555 + 4396 ], "__typename": [ 78 @@ -103712,28 +101416,28 @@ export default { }, "tournament_team_roster_order_by": { "e_team_role": [ - 1090 + 1077 ], "player": [ - 3752 + 3500 ], "player_steam_id": [ - 2781 + 2529 ], "role": [ - 2781 + 2529 ], "tournament": [ - 4738 + 4589 ], "tournament_id": [ - 2781 + 2529 ], "tournament_team": [ - 4607 + 4448 ], "tournament_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103744,7 +101448,7 @@ export default { 180 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -103756,13 +101460,13 @@ export default { 180 ], "role": [ - 1082 + 1069 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -103778,7 +101482,7 @@ export default { }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103794,7 +101498,7 @@ export default { }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103810,7 +101514,7 @@ export default { }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103818,7 +101522,7 @@ export default { }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 4576 + 4417 ], "ordering": [ 236 @@ -103832,13 +101536,13 @@ export default { 180 ], "role": [ - 1082 + 1069 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -103854,7 +101558,7 @@ export default { }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103863,13 +101567,13 @@ export default { "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 4557 + 4398 ], "_set": [ - 4568 + 4409 ], "where": [ - 4555 + 4396 ], "__typename": [ 78 @@ -103885,7 +101589,7 @@ export default { }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103901,7 +101605,7 @@ export default { }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103917,7 +101621,7 @@ export default { }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -103928,28 +101632,28 @@ export default { 3 ], "captain": [ - 3739 + 3487 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4076 ], "creator": [ - 3739 + 3487 ], "eligible_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "invites": [ - 4505, + 4346, { "distinct_on": [ - 4526, + 4367, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -103959,19 +101663,19 @@ export default { 38 ], "order_by": [ - 4524, + 4365, "[tournament_team_invites_order_by!]" ], "where": [ - 4514 + 4355 ] } ], "invites_aggregate": [ - 4506, + 4347, { "distinct_on": [ - 4526, + 4367, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -103981,11 +101685,11 @@ export default { 38 ], "order_by": [ - 4524, + 4365, "[tournament_team_invites_order_by!]" ], "where": [ - 4514 + 4355 ] } ], @@ -103996,13 +101700,13 @@ export default { 180 ], "results": [ - 5486 + 5294 ], "roster": [ - 4546, + 4387, { "distinct_on": [ - 4567, + 4408, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -104012,19 +101716,19 @@ export default { 38 ], "order_by": [ - 4565, + 4406, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4396 ] } ], "roster_aggregate": [ - 4547, + 4388, { "distinct_on": [ - 4567, + 4408, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -104034,11 +101738,11 @@ export default { 38 ], "order_by": [ - 4565, + 4406, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4396 ] } ], @@ -104049,16 +101753,16 @@ export default { 78 ], "team": [ - 4281 + 4029 ], "team_id": [ - 4762 + 4621 ], "tournament": [ - 4716 + 4557 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -104066,10 +101770,10 @@ export default { }, "tournament_teams_aggregate": { "aggregate": [ - 4591 + 4432 ], "nodes": [ - 4587 + 4428 ], "__typename": [ 78 @@ -104077,7 +101781,7 @@ export default { }, "tournament_teams_aggregate_bool_exp": { "count": [ - 4590 + 4431 ], "__typename": [ 78 @@ -104085,13 +101789,13 @@ export default { }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 4609 + 4450 ], "distinct": [ 3 ], "filter": [ - 4596 + 4437 ], "predicate": [ 39 @@ -104102,13 +101806,13 @@ export default { }, "tournament_teams_aggregate_fields": { "avg": [ - 4594 + 4435 ], "count": [ 38, { "columns": [ - 4609, + 4450, "[tournament_teams_select_column!]" ], "distinct": [ @@ -104117,31 +101821,31 @@ export default { } ], "max": [ - 4600 + 4441 ], "min": [ - 4602 + 4443 ], "stddev": [ - 4611 + 4452 ], "stddev_pop": [ - 4613 + 4454 ], "stddev_samp": [ - 4615 + 4456 ], "sum": [ - 4619 + 4460 ], "var_pop": [ - 4623 + 4464 ], "var_samp": [ - 4625 + 4466 ], "variance": [ - 4627 + 4468 ], "__typename": [ 78 @@ -104149,37 +101853,37 @@ export default { }, "tournament_teams_aggregate_order_by": { "avg": [ - 4595 + 4436 ], "count": [ - 2781 + 2529 ], "max": [ - 4601 + 4442 ], "min": [ - 4603 + 4444 ], "stddev": [ - 4612 + 4453 ], "stddev_pop": [ - 4614 + 4455 ], "stddev_samp": [ - 4616 + 4457 ], "sum": [ - 4620 + 4461 ], "var_pop": [ - 4624 + 4465 ], "var_samp": [ - 4626 + 4467 ], "variance": [ - 4628 + 4469 ], "__typename": [ 78 @@ -104187,10 +101891,10 @@ export default { }, "tournament_teams_arr_rel_insert_input": { "data": [ - 4599 + 4440 ], "on_conflict": [ - 4606 + 4447 ], "__typename": [ 78 @@ -104212,13 +101916,13 @@ export default { }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "owner_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -104226,40 +101930,40 @@ export default { }, "tournament_teams_bool_exp": { "_and": [ - 4596 + 4437 ], "_not": [ - 4596 + 4437 ], "_or": [ - 4596 + 4437 ], "can_manage": [ 4 ], "captain": [ - 3743 + 3491 ], "captain_steam_id": [ 182 ], "created_at": [ - 4325 + 4077 ], "creator": [ - 3743 + 3491 ], "eligible_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "invites": [ - 4514 + 4355 ], "invites_aggregate": [ - 4507 + 4348 ], "name": [ 80 @@ -104268,13 +101972,13 @@ export default { 182 ], "results": [ - 5505 + 5313 ], "roster": [ - 4555 + 4396 ], "roster_aggregate": [ - 4548 + 4389 ], "seed": [ 39 @@ -104283,16 +101987,16 @@ export default { 80 ], "team": [ - 4290 + 4040 ], "team_id": [ - 4764 + 4623 ], "tournament": [ - 4727 + 4578 ], "tournament_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -104315,25 +102019,25 @@ export default { }, "tournament_teams_insert_input": { "captain": [ - 3750 + 3498 ], "captain_steam_id": [ 180 ], "created_at": [ - 4324 + 4076 ], "creator": [ - 3750 + 3498 ], "eligible_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "invites": [ - 4511 + 4352 ], "name": [ 78 @@ -104342,10 +102046,10 @@ export default { 180 ], "results": [ - 5514 + 5322 ], "roster": [ - 4552 + 4393 ], "seed": [ 38 @@ -104354,16 +102058,16 @@ export default { 78 ], "team": [ - 4299 + 4049 ], "team_id": [ - 4762 + 4621 ], "tournament": [ - 4736 + 4587 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -104374,13 +102078,13 @@ export default { 180 ], "created_at": [ - 4324 + 4076 ], "eligible_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "name": [ 78 @@ -104395,10 +102099,10 @@ export default { 78 ], "team_id": [ - 4762 + 4621 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -104406,34 +102110,34 @@ export default { }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "eligible_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "name": [ - 2781 + 2529 ], "owner_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "short_name": [ - 2781 + 2529 ], "team_id": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -104444,13 +102148,13 @@ export default { 180 ], "created_at": [ - 4324 + 4076 ], "eligible_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "name": [ 78 @@ -104465,10 +102169,10 @@ export default { 78 ], "team_id": [ - 4762 + 4621 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -104476,34 +102180,34 @@ export default { }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "eligible_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "name": [ - 2781 + 2529 ], "owner_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "short_name": [ - 2781 + 2529 ], "team_id": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -104514,7 +102218,7 @@ export default { 38 ], "returning": [ - 4587 + 4428 ], "__typename": [ 78 @@ -104522,10 +102226,10 @@ export default { }, "tournament_teams_obj_rel_insert_input": { "data": [ - 4599 + 4440 ], "on_conflict": [ - 4606 + 4447 ], "__typename": [ 78 @@ -104533,13 +102237,13 @@ export default { }, "tournament_teams_on_conflict": { "constraint": [ - 4597 + 4438 ], "update_columns": [ - 4621 + 4462 ], "where": [ - 4596 + 4437 ], "__typename": [ 78 @@ -104547,58 +102251,58 @@ export default { }, "tournament_teams_order_by": { "can_manage": [ - 2781 + 2529 ], "captain": [ - 3752 + 3500 ], "captain_steam_id": [ - 2781 + 2529 ], "created_at": [ - 2781 + 2529 ], "creator": [ - 3752 + 3500 ], "eligible_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "invites_aggregate": [ - 4510 + 4351 ], "name": [ - 2781 + 2529 ], "owner_steam_id": [ - 2781 + 2529 ], "results": [ - 5516 + 5324 ], "roster_aggregate": [ - 4551 + 4392 ], "seed": [ - 2781 + 2529 ], "short_name": [ - 2781 + 2529 ], "team": [ - 4301 + 4051 ], "team_id": [ - 2781 + 2529 ], "tournament": [ - 4738 + 4589 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -104606,7 +102310,7 @@ export default { }, "tournament_teams_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -104618,13 +102322,13 @@ export default { 180 ], "created_at": [ - 4324 + 4076 ], "eligible_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "name": [ 78 @@ -104639,10 +102343,10 @@ export default { 78 ], "team_id": [ - 4762 + 4621 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -104664,13 +102368,13 @@ export default { }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "owner_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -104692,13 +102396,13 @@ export default { }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "owner_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -104720,13 +102424,13 @@ export default { }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "owner_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -104734,7 +102438,7 @@ export default { }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 4618 + 4459 ], "ordering": [ 236 @@ -104748,13 +102452,13 @@ export default { 180 ], "created_at": [ - 4324 + 4076 ], "eligible_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "name": [ 78 @@ -104769,10 +102473,10 @@ export default { 78 ], "team_id": [ - 4762 + 4621 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -104794,13 +102498,13 @@ export default { }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "owner_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -104809,13 +102513,13 @@ export default { "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 4598 + 4439 ], "_set": [ - 4610 + 4451 ], "where": [ - 4596 + 4437 ], "__typename": [ 78 @@ -104837,13 +102541,13 @@ export default { }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "owner_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -104865,13 +102569,13 @@ export default { }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "owner_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -104893,13 +102597,13 @@ export default { }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 2781 + 2529 ], "owner_steam_id": [ - 2781 + 2529 ], "seed": [ - 2781 + 2529 ], "__typename": [ 78 @@ -104907,10 +102611,10 @@ export default { }, "tournament_trophies": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "manual": [ 3 @@ -104922,31 +102626,31 @@ export default { 78 ], "player": [ - 3739 + 3487 ], "player_steam_id": [ 180 ], "team": [ - 4281 + 4029 ], "team_id": [ - 4762 + 4621 ], "tournament": [ - 4716 + 4557 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team": [ - 4587 + 4428 ], "tournament_team_id": [ - 4762 + 4621 ], "trophy_config": [ - 4674 + 4515 ], "__typename": [ 78 @@ -104954,10 +102658,10 @@ export default { }, "tournament_trophies_aggregate": { "aggregate": [ - 4635 + 4476 ], "nodes": [ - 4629 + 4470 ], "__typename": [ 78 @@ -104965,13 +102669,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp": { "bool_and": [ - 4632 + 4473 ], "bool_or": [ - 4633 + 4474 ], "count": [ - 4634 + 4475 ], "__typename": [ 78 @@ -104979,13 +102683,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_and": { "arguments": [ - 4653 + 4494 ], "distinct": [ 3 ], "filter": [ - 4640 + 4481 ], "predicate": [ 4 @@ -104996,13 +102700,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_or": { "arguments": [ - 4654 + 4495 ], "distinct": [ 3 ], "filter": [ - 4640 + 4481 ], "predicate": [ 4 @@ -105013,13 +102717,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_count": { "arguments": [ - 4652 + 4493 ], "distinct": [ 3 ], "filter": [ - 4640 + 4481 ], "predicate": [ 39 @@ -105030,13 +102734,13 @@ export default { }, "tournament_trophies_aggregate_fields": { "avg": [ - 4638 + 4479 ], "count": [ 38, { "columns": [ - 4652, + 4493, "[tournament_trophies_select_column!]" ], "distinct": [ @@ -105045,31 +102749,31 @@ export default { } ], "max": [ - 4644 + 4485 ], "min": [ - 4646 + 4487 ], "stddev": [ - 4656 + 4497 ], "stddev_pop": [ - 4658 + 4499 ], "stddev_samp": [ - 4660 + 4501 ], "sum": [ - 4664 + 4505 ], "var_pop": [ - 4668 + 4509 ], "var_samp": [ - 4670 + 4511 ], "variance": [ - 4672 + 4513 ], "__typename": [ 78 @@ -105077,37 +102781,37 @@ export default { }, "tournament_trophies_aggregate_order_by": { "avg": [ - 4639 + 4480 ], "count": [ - 2781 + 2529 ], "max": [ - 4645 + 4486 ], "min": [ - 4647 + 4488 ], "stddev": [ - 4657 + 4498 ], "stddev_pop": [ - 4659 + 4500 ], "stddev_samp": [ - 4661 + 4502 ], "sum": [ - 4665 + 4506 ], "var_pop": [ - 4669 + 4510 ], "var_samp": [ - 4671 + 4512 ], "variance": [ - 4673 + 4514 ], "__typename": [ 78 @@ -105115,10 +102819,10 @@ export default { }, "tournament_trophies_arr_rel_insert_input": { "data": [ - 4643 + 4484 ], "on_conflict": [ - 4649 + 4490 ], "__typename": [ 78 @@ -105137,10 +102841,10 @@ export default { }, "tournament_trophies_avg_order_by": { "placement": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -105148,19 +102852,19 @@ export default { }, "tournament_trophies_bool_exp": { "_and": [ - 4640 + 4481 ], "_not": [ - 4640 + 4481 ], "_or": [ - 4640 + 4481 ], "created_at": [ - 4325 + 4077 ], "id": [ - 4764 + 4623 ], "manual": [ 4 @@ -105172,31 +102876,31 @@ export default { 80 ], "player": [ - 3743 + 3491 ], "player_steam_id": [ 182 ], "team": [ - 4290 + 4040 ], "team_id": [ - 4764 + 4623 ], "tournament": [ - 4727 + 4578 ], "tournament_id": [ - 4764 + 4623 ], "tournament_team": [ - 4596 + 4437 ], "tournament_team_id": [ - 4764 + 4623 ], "trophy_config": [ - 4683 + 4524 ], "__typename": [ 78 @@ -105216,10 +102920,10 @@ export default { }, "tournament_trophies_insert_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "manual": [ 3 @@ -105228,31 +102932,31 @@ export default { 38 ], "player": [ - 3750 + 3498 ], "player_steam_id": [ 180 ], "team": [ - 4299 + 4049 ], "team_id": [ - 4762 + 4621 ], "tournament": [ - 4736 + 4587 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team": [ - 4605 + 4446 ], "tournament_team_id": [ - 4762 + 4621 ], "trophy_config": [ - 4692 + 4533 ], "__typename": [ 78 @@ -105260,10 +102964,10 @@ export default { }, "tournament_trophies_max_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "placement": [ 38 @@ -105275,13 +102979,13 @@ export default { 180 ], "team_id": [ - 4762 + 4621 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -105289,28 +102993,28 @@ export default { }, "tournament_trophies_max_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "placement_tier": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "team_id": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -105318,10 +103022,10 @@ export default { }, "tournament_trophies_min_fields": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "placement": [ 38 @@ -105333,13 +103037,13 @@ export default { 180 ], "team_id": [ - 4762 + 4621 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -105347,28 +103051,28 @@ export default { }, "tournament_trophies_min_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "placement_tier": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "team_id": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -105379,7 +103083,7 @@ export default { 38 ], "returning": [ - 4629 + 4470 ], "__typename": [ 78 @@ -105387,13 +103091,13 @@ export default { }, "tournament_trophies_on_conflict": { "constraint": [ - 4641 + 4482 ], "update_columns": [ - 4666 + 4507 ], "where": [ - 4640 + 4481 ], "__typename": [ 78 @@ -105401,46 +103105,46 @@ export default { }, "tournament_trophies_order_by": { "created_at": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "manual": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "placement_tier": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "player_steam_id": [ - 2781 + 2529 ], "team": [ - 4301 + 4051 ], "team_id": [ - 2781 + 2529 ], "tournament": [ - 4738 + 4589 ], "tournament_id": [ - 2781 + 2529 ], "tournament_team": [ - 4607 + 4448 ], "tournament_team_id": [ - 2781 + 2529 ], "trophy_config": [ - 4694 + 4535 ], "__typename": [ 78 @@ -105448,7 +103152,7 @@ export default { }, "tournament_trophies_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -105459,10 +103163,10 @@ export default { "tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_trophies_set_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "manual": [ 3 @@ -105474,13 +103178,13 @@ export default { 180 ], "team_id": [ - 4762 + 4621 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -105499,10 +103203,10 @@ export default { }, "tournament_trophies_stddev_order_by": { "placement": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -105521,10 +103225,10 @@ export default { }, "tournament_trophies_stddev_pop_order_by": { "placement": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -105543,10 +103247,10 @@ export default { }, "tournament_trophies_stddev_samp_order_by": { "placement": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -105554,7 +103258,7 @@ export default { }, "tournament_trophies_stream_cursor_input": { "initial_value": [ - 4663 + 4504 ], "ordering": [ 236 @@ -105565,10 +103269,10 @@ export default { }, "tournament_trophies_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "id": [ - 4762 + 4621 ], "manual": [ 3 @@ -105583,13 +103287,13 @@ export default { 180 ], "team_id": [ - 4762 + 4621 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -105608,10 +103312,10 @@ export default { }, "tournament_trophies_sum_order_by": { "placement": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -105620,13 +103324,13 @@ export default { "tournament_trophies_update_column": {}, "tournament_trophies_updates": { "_inc": [ - 4642 + 4483 ], "_set": [ - 4655 + 4496 ], "where": [ - 4640 + 4481 ], "__typename": [ 78 @@ -105645,10 +103349,10 @@ export default { }, "tournament_trophies_var_pop_order_by": { "placement": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -105667,10 +103371,10 @@ export default { }, "tournament_trophies_var_samp_order_by": { "placement": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -105689,10 +103393,10 @@ export default { }, "tournament_trophies_variance_order_by": { "placement": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -105700,13 +103404,13 @@ export default { }, "tournament_trophy_configs": { "created_at": [ - 4324 + 4076 ], "custom_name": [ 78 ], "id": [ - 4762 + 4621 ], "image_url": [ 78 @@ -105718,13 +103422,13 @@ export default { 38 ], "tournament": [ - 4716 + 4557 ], "tournament_id": [ - 4762 + 4621 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -105732,10 +103436,10 @@ export default { }, "tournament_trophy_configs_aggregate": { "aggregate": [ - 4678 + 4519 ], "nodes": [ - 4674 + 4515 ], "__typename": [ 78 @@ -105743,7 +103447,7 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp": { "count": [ - 4677 + 4518 ], "__typename": [ 78 @@ -105751,13 +103455,13 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp_count": { "arguments": [ - 4696 + 4537 ], "distinct": [ 3 ], "filter": [ - 4683 + 4524 ], "predicate": [ 39 @@ -105768,13 +103472,13 @@ export default { }, "tournament_trophy_configs_aggregate_fields": { "avg": [ - 4681 + 4522 ], "count": [ 38, { "columns": [ - 4696, + 4537, "[tournament_trophy_configs_select_column!]" ], "distinct": [ @@ -105783,31 +103487,31 @@ export default { } ], "max": [ - 4687 + 4528 ], "min": [ - 4689 + 4530 ], "stddev": [ - 4698 + 4539 ], "stddev_pop": [ - 4700 + 4541 ], "stddev_samp": [ - 4702 + 4543 ], "sum": [ - 4706 + 4547 ], "var_pop": [ - 4710 + 4551 ], "var_samp": [ - 4712 + 4553 ], "variance": [ - 4714 + 4555 ], "__typename": [ 78 @@ -105815,37 +103519,37 @@ export default { }, "tournament_trophy_configs_aggregate_order_by": { "avg": [ - 4682 + 4523 ], "count": [ - 2781 + 2529 ], "max": [ - 4688 + 4529 ], "min": [ - 4690 + 4531 ], "stddev": [ - 4699 + 4540 ], "stddev_pop": [ - 4701 + 4542 ], "stddev_samp": [ - 4703 + 4544 ], "sum": [ - 4707 + 4548 ], "var_pop": [ - 4711 + 4552 ], "var_samp": [ - 4713 + 4554 ], "variance": [ - 4715 + 4556 ], "__typename": [ 78 @@ -105853,10 +103557,10 @@ export default { }, "tournament_trophy_configs_arr_rel_insert_input": { "data": [ - 4686 + 4527 ], "on_conflict": [ - 4693 + 4534 ], "__typename": [ 78 @@ -105875,10 +103579,10 @@ export default { }, "tournament_trophy_configs_avg_order_by": { "placement": [ - 2781 + 2529 ], "silhouette": [ - 2781 + 2529 ], "__typename": [ 78 @@ -105886,22 +103590,22 @@ export default { }, "tournament_trophy_configs_bool_exp": { "_and": [ - 4683 + 4524 ], "_not": [ - 4683 + 4524 ], "_or": [ - 4683 + 4524 ], "created_at": [ - 4325 + 4077 ], "custom_name": [ 80 ], "id": [ - 4764 + 4623 ], "image_url": [ 80 @@ -105913,13 +103617,13 @@ export default { 39 ], "tournament": [ - 4727 + 4578 ], "tournament_id": [ - 4764 + 4623 ], "updated_at": [ - 4325 + 4077 ], "__typename": [ 78 @@ -105939,13 +103643,13 @@ export default { }, "tournament_trophy_configs_insert_input": { "created_at": [ - 4324 + 4076 ], "custom_name": [ 78 ], "id": [ - 4762 + 4621 ], "image_url": [ 78 @@ -105957,13 +103661,13 @@ export default { 38 ], "tournament": [ - 4736 + 4587 ], "tournament_id": [ - 4762 + 4621 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -105971,13 +103675,13 @@ export default { }, "tournament_trophy_configs_max_fields": { "created_at": [ - 4324 + 4076 ], "custom_name": [ 78 ], "id": [ - 4762 + 4621 ], "image_url": [ 78 @@ -105989,10 +103693,10 @@ export default { 38 ], "tournament_id": [ - 4762 + 4621 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -106000,28 +103704,28 @@ export default { }, "tournament_trophy_configs_max_order_by": { "created_at": [ - 2781 + 2529 ], "custom_name": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "image_url": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "silhouette": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "__typename": [ 78 @@ -106029,13 +103733,13 @@ export default { }, "tournament_trophy_configs_min_fields": { "created_at": [ - 4324 + 4076 ], "custom_name": [ 78 ], "id": [ - 4762 + 4621 ], "image_url": [ 78 @@ -106047,10 +103751,10 @@ export default { 38 ], "tournament_id": [ - 4762 + 4621 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -106058,28 +103762,28 @@ export default { }, "tournament_trophy_configs_min_order_by": { "created_at": [ - 2781 + 2529 ], "custom_name": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "image_url": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "silhouette": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "__typename": [ 78 @@ -106090,7 +103794,7 @@ export default { 38 ], "returning": [ - 4674 + 4515 ], "__typename": [ 78 @@ -106098,10 +103802,10 @@ export default { }, "tournament_trophy_configs_obj_rel_insert_input": { "data": [ - 4686 + 4527 ], "on_conflict": [ - 4693 + 4534 ], "__typename": [ 78 @@ -106109,13 +103813,13 @@ export default { }, "tournament_trophy_configs_on_conflict": { "constraint": [ - 4684 + 4525 ], "update_columns": [ - 4708 + 4549 ], "where": [ - 4683 + 4524 ], "__typename": [ 78 @@ -106123,31 +103827,31 @@ export default { }, "tournament_trophy_configs_order_by": { "created_at": [ - 2781 + 2529 ], "custom_name": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "image_url": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "silhouette": [ - 2781 + 2529 ], "tournament": [ - 4738 + 4589 ], "tournament_id": [ - 2781 + 2529 ], "updated_at": [ - 2781 + 2529 ], "__typename": [ 78 @@ -106155,7 +103859,7 @@ export default { }, "tournament_trophy_configs_pk_columns_input": { "id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -106164,13 +103868,13 @@ export default { "tournament_trophy_configs_select_column": {}, "tournament_trophy_configs_set_input": { "created_at": [ - 4324 + 4076 ], "custom_name": [ 78 ], "id": [ - 4762 + 4621 ], "image_url": [ 78 @@ -106182,10 +103886,10 @@ export default { 38 ], "tournament_id": [ - 4762 + 4621 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -106204,10 +103908,10 @@ export default { }, "tournament_trophy_configs_stddev_order_by": { "placement": [ - 2781 + 2529 ], "silhouette": [ - 2781 + 2529 ], "__typename": [ 78 @@ -106226,10 +103930,10 @@ export default { }, "tournament_trophy_configs_stddev_pop_order_by": { "placement": [ - 2781 + 2529 ], "silhouette": [ - 2781 + 2529 ], "__typename": [ 78 @@ -106248,10 +103952,10 @@ export default { }, "tournament_trophy_configs_stddev_samp_order_by": { "placement": [ - 2781 + 2529 ], "silhouette": [ - 2781 + 2529 ], "__typename": [ 78 @@ -106259,7 +103963,7 @@ export default { }, "tournament_trophy_configs_stream_cursor_input": { "initial_value": [ - 4705 + 4546 ], "ordering": [ 236 @@ -106270,13 +103974,13 @@ export default { }, "tournament_trophy_configs_stream_cursor_value_input": { "created_at": [ - 4324 + 4076 ], "custom_name": [ 78 ], "id": [ - 4762 + 4621 ], "image_url": [ 78 @@ -106288,10 +103992,10 @@ export default { 38 ], "tournament_id": [ - 4762 + 4621 ], "updated_at": [ - 4324 + 4076 ], "__typename": [ 78 @@ -106310,10 +104014,10 @@ export default { }, "tournament_trophy_configs_sum_order_by": { "placement": [ - 2781 + 2529 ], "silhouette": [ - 2781 + 2529 ], "__typename": [ 78 @@ -106322,13 +104026,13 @@ export default { "tournament_trophy_configs_update_column": {}, "tournament_trophy_configs_updates": { "_inc": [ - 4685 + 4526 ], "_set": [ - 4697 + 4538 ], "where": [ - 4683 + 4524 ], "__typename": [ 78 @@ -106347,10 +104051,10 @@ export default { }, "tournament_trophy_configs_var_pop_order_by": { "placement": [ - 2781 + 2529 ], "silhouette": [ - 2781 + 2529 ], "__typename": [ 78 @@ -106369,10 +104073,10 @@ export default { }, "tournament_trophy_configs_var_samp_order_by": { "placement": [ - 2781 + 2529 ], "silhouette": [ - 2781 + 2529 ], "__typename": [ 78 @@ -106391,10 +104095,10 @@ export default { }, "tournament_trophy_configs_variance_order_by": { "placement": [ - 2781 + 2529 ], "silhouette": [ - 2781 + 2529 ], "__typename": [ 78 @@ -106402,11 +104106,14 @@ export default { }, "tournaments": { "admin": [ - 3739 + 3487 ], "auto_start": [ 3 ], + "banner": [ + 78 + ], "can_cancel": [ 3 ], @@ -106431,8 +104138,52 @@ export default { "can_start": [ 3 ], + "categories": [ + 4124, + { + "distinct_on": [ + 4142, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4140, + "[tournament_categories_order_by!]" + ], + "where": [ + 4131 + ] + } + ], + "categories_aggregate": [ + 4125, + { + "distinct_on": [ + 4142, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4140, + "[tournament_categories_order_by!]" + ], + "where": [ + 4131 + ] + } + ], "created_at": [ - 4324 + 4076 ], "description": [ 78 @@ -106489,13 +104240,16 @@ export default { 78 ], "e_tournament_status": [ - 1159 + 1167 ], "has_min_teams": [ 3 ], + "homepage": [ + 78 + ], "id": [ - 4762 + 4621 ], "is_league": [ 3 @@ -106506,11 +104260,23 @@ export default { "joined_tournament": [ 3 ], + "latitude": [ + 1248 + ], "league_season_division": [ - 1830 + 1578 + ], + "location": [ + 78 + ], + "logo": [ + 78 + ], + "longitude": [ + 1248 ], "match_options_id": [ - 4762 + 4621 ], "max_players_per_lineup": [ 38 @@ -106522,16 +104288,60 @@ export default { 78 ], "options": [ - 2476 + 2224 ], "organizer_steam_id": [ 180 ], + "organizer_teams": [ + 4148, + { + "distinct_on": [ + 4166, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4164, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 4155 + ] + } + ], + "organizer_teams_aggregate": [ + 4149, + { + "distinct_on": [ + 4166, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4164, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 4155 + ] + } + ], "organizers": [ - 4372, + 4172, { "distinct_on": [ - 4393, + 4193, "[tournament_organizers_select_column!]" ], "limit": [ @@ -106541,19 +104351,19 @@ export default { 38 ], "order_by": [ - 4391, + 4191, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4181 ] } ], "organizers_aggregate": [ - 4373, + 4173, { "distinct_on": [ - 4393, + 4193, "[tournament_organizers_select_column!]" ], "limit": [ @@ -106563,19 +104373,19 @@ export default { 38 ], "order_by": [ - 4391, + 4191, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4181 ] } ], "player_stats": [ - 5597, + 5405, { "distinct_on": [ - 5623, + 5431, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -106585,19 +104395,19 @@ export default { 38 ], "order_by": [ - 5622, + 5430, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5616 + 5424 ] } ], "player_stats_aggregate": [ - 5598, + 5406, { "distinct_on": [ - 5623, + 5431, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -106607,19 +104417,63 @@ export default { 38 ], "order_by": [ - 5622, + 5430, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5616 + 5424 + ] + } + ], + "prizes": [ + 4213, + { + "distinct_on": [ + 4234, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4232, + "[tournament_prizes_order_by!]" + ], + "where": [ + 4222 + ] + } + ], + "prizes_aggregate": [ + 4214, + { + "distinct_on": [ + 4234, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4232, + "[tournament_prizes_order_by!]" + ], + "where": [ + 4222 ] } ], "results": [ - 5546, + 5354, { "distinct_on": [ - 5572, + 5380, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -106629,19 +104483,19 @@ export default { 38 ], "order_by": [ - 5571, + 5379, "[v_team_tournament_results_order_by!]" ], "where": [ - 5565 + 5373 ] } ], "results_aggregate": [ - 5547, + 5355, { "distinct_on": [ - 5572, + 5380, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -106651,19 +104505,19 @@ export default { 38 ], "order_by": [ - 5571, + 5379, "[v_team_tournament_results_order_by!]" ], "where": [ - 5565 + 5373 ] } ], "rosters": [ - 4546, + 4387, { "distinct_on": [ - 4567, + 4408, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -106673,19 +104527,19 @@ export default { 38 ], "order_by": [ - 4565, + 4406, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4396 ] } ], "rosters_aggregate": [ - 4547, + 4388, { "distinct_on": [ - 4567, + 4408, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -106695,11 +104549,11 @@ export default { 38 ], "order_by": [ - 4565, + 4406, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4396 ] } ], @@ -106707,10 +104561,10 @@ export default { 78 ], "stages": [ - 4454, + 4295, { "distinct_on": [ - 4483, + 4324, "[tournament_stages_select_column!]" ], "limit": [ @@ -106720,19 +104574,19 @@ export default { 38 ], "order_by": [ - 4480, + 4321, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4307 ] } ], "stages_aggregate": [ - 4455, + 4296, { "distinct_on": [ - 4483, + 4324, "[tournament_stages_select_column!]" ], "limit": [ @@ -106742,25 +104596,25 @@ export default { 38 ], "order_by": [ - 4480, + 4321, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4307 ] } ], "start": [ - 4324 + 4076 ], "status": [ - 1164 + 1172 ], "teams": [ - 4587, + 4428, { "distinct_on": [ - 4609, + 4450, "[tournament_teams_select_column!]" ], "limit": [ @@ -106770,19 +104624,19 @@ export default { 38 ], "order_by": [ - 4607, + 4448, "[tournament_teams_order_by!]" ], "where": [ - 4596 + 4437 ] } ], "teams_aggregate": [ - 4588, + 4429, { "distinct_on": [ - 4609, + 4450, "[tournament_teams_select_column!]" ], "limit": [ @@ -106792,19 +104646,41 @@ export default { 38 ], "order_by": [ - 4607, + 4448, "[tournament_teams_order_by!]" ], "where": [ - 4596 + 4437 ] } ], "trophies": [ - 4629, + 4470, + { + "distinct_on": [ + 4493, + "[tournament_trophies_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4491, + "[tournament_trophies_order_by!]" + ], + "where": [ + 4481 + ] + } + ], + "trophies_aggregate": [ + 4471, { "distinct_on": [ - 4652, + 4493, "[tournament_trophies_select_column!]" ], "limit": [ @@ -106814,158 +104690,318 @@ export default { 38 ], "order_by": [ - 4650, + 4491, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4481 + ] + } + ], + "trophies_enabled": [ + 3 + ], + "trophy_configs": [ + 4515, + { + "distinct_on": [ + 4537, + "[tournament_trophy_configs_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4535, + "[tournament_trophy_configs_order_by!]" + ], + "where": [ + 4524 + ] + } + ], + "trophy_configs_aggregate": [ + 4516, + { + "distinct_on": [ + 4537, + "[tournament_trophy_configs_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4535, + "[tournament_trophy_configs_order_by!]" + ], + "where": [ + 4524 ] } ], - "trophies_aggregate": [ - 4630, - { - "distinct_on": [ - 4652, - "[tournament_trophies_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4650, - "[tournament_trophies_order_by!]" - ], - "where": [ - 4640 - ] - } + "__typename": [ + 78 + ] + }, + "tournaments_aggregate": { + "aggregate": [ + 4573 + ], + "nodes": [ + 4557 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp": { + "avg": [ + 4560 + ], + "bool_and": [ + 4561 + ], + "bool_or": [ + 4562 + ], + "corr": [ + 4563 + ], + "count": [ + 4565 + ], + "covar_samp": [ + 4566 + ], + "max": [ + 4568 + ], + "min": [ + 4569 + ], + "stddev_samp": [ + 4570 + ], + "sum": [ + 4571 + ], + "var_samp": [ + 4572 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_avg": { + "arguments": [ + 4592 + ], + "distinct": [ + 3 + ], + "filter": [ + 4578 + ], + "predicate": [ + 1249 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_bool_and": { + "arguments": [ + 4593 + ], + "distinct": [ + 3 + ], + "filter": [ + 4578 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_bool_or": { + "arguments": [ + 4594 + ], + "distinct": [ + 3 + ], + "filter": [ + 4578 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_corr": { + "arguments": [ + 4564 + ], + "distinct": [ + 3 + ], + "filter": [ + 4578 + ], + "predicate": [ + 1249 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_corr_arguments": { + "X": [ + 4595 + ], + "Y": [ + 4595 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_count": { + "arguments": [ + 4591 + ], + "distinct": [ + 3 + ], + "filter": [ + 4578 + ], + "predicate": [ + 39 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_covar_samp": { + "arguments": [ + 4567 ], - "trophies_enabled": [ + "distinct": [ 3 ], - "trophy_configs": [ - 4674, - { - "distinct_on": [ - 4696, - "[tournament_trophy_configs_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4694, - "[tournament_trophy_configs_order_by!]" - ], - "where": [ - 4683 - ] - } + "filter": [ + 4578 ], - "trophy_configs_aggregate": [ - 4675, - { - "distinct_on": [ - 4696, - "[tournament_trophy_configs_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4694, - "[tournament_trophy_configs_order_by!]" - ], - "where": [ - 4683 - ] - } + "predicate": [ + 1249 ], "__typename": [ 78 ] }, - "tournaments_aggregate": { - "aggregate": [ - 4722 + "tournaments_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 4596 ], - "nodes": [ - 4716 + "Y": [ + 4596 ], "__typename": [ 78 ] }, - "tournaments_aggregate_bool_exp": { - "bool_and": [ - 4719 + "tournaments_aggregate_bool_exp_max": { + "arguments": [ + 4597 ], - "bool_or": [ - 4720 + "distinct": [ + 3 ], - "count": [ - 4721 + "filter": [ + 4578 + ], + "predicate": [ + 1249 ], "__typename": [ 78 ] }, - "tournaments_aggregate_bool_exp_bool_and": { + "tournaments_aggregate_bool_exp_min": { "arguments": [ - 4741 + 4598 ], "distinct": [ 3 ], "filter": [ - 4727 + 4578 ], "predicate": [ - 4 + 1249 ], "__typename": [ 78 ] }, - "tournaments_aggregate_bool_exp_bool_or": { + "tournaments_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4742 + 4599 ], "distinct": [ 3 ], "filter": [ - 4727 + 4578 ], "predicate": [ - 4 + 1249 ], "__typename": [ 78 ] }, - "tournaments_aggregate_bool_exp_count": { + "tournaments_aggregate_bool_exp_sum": { "arguments": [ - 4740 + 4600 ], "distinct": [ 3 ], "filter": [ - 4727 + 4578 ], "predicate": [ - 39 + 1249 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_var_samp": { + "arguments": [ + 4601 + ], + "distinct": [ + 3 + ], + "filter": [ + 4578 + ], + "predicate": [ + 1249 ], "__typename": [ 78 @@ -106973,13 +105009,13 @@ export default { }, "tournaments_aggregate_fields": { "avg": [ - 4725 + 4576 ], "count": [ 38, { "columns": [ - 4740, + 4591, "[tournaments_select_column!]" ], "distinct": [ @@ -106988,31 +105024,31 @@ export default { } ], "max": [ - 4731 + 4582 ], "min": [ - 4733 + 4584 ], "stddev": [ - 4744 + 4603 ], "stddev_pop": [ - 4746 + 4605 ], "stddev_samp": [ - 4748 + 4607 ], "sum": [ - 4752 + 4611 ], "var_pop": [ - 4756 + 4615 ], "var_samp": [ - 4758 + 4617 ], "variance": [ - 4760 + 4619 ], "__typename": [ 78 @@ -107020,37 +105056,37 @@ export default { }, "tournaments_aggregate_order_by": { "avg": [ - 4726 + 4577 ], "count": [ - 2781 + 2529 ], "max": [ - 4732 + 4583 ], "min": [ - 4734 + 4585 ], "stddev": [ - 4745 + 4604 ], "stddev_pop": [ - 4747 + 4606 ], "stddev_samp": [ - 4749 + 4608 ], "sum": [ - 4753 + 4612 ], "var_pop": [ - 4757 + 4616 ], "var_samp": [ - 4759 + 4618 ], "variance": [ - 4761 + 4620 ], "__typename": [ 78 @@ -107058,16 +105094,22 @@ export default { }, "tournaments_arr_rel_insert_input": { "data": [ - 4730 + 4581 ], "on_conflict": [ - 4737 + 4588 ], "__typename": [ 78 ] }, "tournaments_avg_fields": { + "latitude": [ + 29 + ], + "longitude": [ + 29 + ], "max_players_per_lineup": [ 38 ], @@ -107082,8 +105124,14 @@ export default { ] }, "tournaments_avg_order_by": { + "latitude": [ + 2529 + ], + "longitude": [ + 2529 + ], "organizer_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -107091,20 +105139,23 @@ export default { }, "tournaments_bool_exp": { "_and": [ - 4727 + 4578 ], "_not": [ - 4727 + 4578 ], "_or": [ - 4727 + 4578 ], "admin": [ - 3743 + 3491 ], "auto_start": [ 4 ], + "banner": [ + 80 + ], "can_cancel": [ 4 ], @@ -107129,8 +105180,14 @@ export default { "can_start": [ 4 ], + "categories": [ + 4131 + ], + "categories_aggregate": [ + 4126 + ], "created_at": [ - 4325 + 4077 ], "description": [ 80 @@ -107187,13 +105244,16 @@ export default { 80 ], "e_tournament_status": [ - 1162 + 1170 ], "has_min_teams": [ 4 ], + "homepage": [ + 80 + ], "id": [ - 4764 + 4623 ], "is_league": [ 4 @@ -107204,11 +105264,23 @@ export default { "joined_tournament": [ 4 ], + "latitude": [ + 1249 + ], "league_season_division": [ - 1837 + 1585 + ], + "location": [ + 80 + ], + "logo": [ + 80 + ], + "longitude": [ + 1249 ], "match_options_id": [ - 4764 + 4623 ], "max_players_per_lineup": [ 39 @@ -107220,70 +105292,82 @@ export default { 80 ], "options": [ - 2480 + 2228 ], "organizer_steam_id": [ 182 ], + "organizer_teams": [ + 4155 + ], + "organizer_teams_aggregate": [ + 4150 + ], "organizers": [ - 4381 + 4181 ], "organizers_aggregate": [ - 4374 + 4174 ], "player_stats": [ - 5616 + 5424 ], "player_stats_aggregate": [ - 5599 + 5407 + ], + "prizes": [ + 4222 + ], + "prizes_aggregate": [ + 4215 ], "results": [ - 5565 + 5373 ], "results_aggregate": [ - 5548 + 5356 ], "rosters": [ - 4555 + 4396 ], "rosters_aggregate": [ - 4548 + 4389 ], "scheduling_mode": [ 80 ], "stages": [ - 4466 + 4307 ], "stages_aggregate": [ - 4456 + 4297 ], "start": [ - 4325 + 4077 ], "status": [ - 1165 + 1173 ], "teams": [ - 4596 + 4437 ], "teams_aggregate": [ - 4589 + 4430 ], "trophies": [ - 4640 + 4481 ], "trophies_aggregate": [ - 4631 + 4472 ], "trophies_enabled": [ 4 ], "trophy_configs": [ - 4683 + 4524 ], "trophy_configs_aggregate": [ - 4676 + 4517 ], "__typename": [ 78 @@ -107291,6 +105375,12 @@ export default { }, "tournaments_constraint": {}, "tournaments_inc_input": { + "latitude": [ + 1248 + ], + "longitude": [ + 1248 + ], "organizer_steam_id": [ 180 ], @@ -107300,13 +105390,19 @@ export default { }, "tournaments_insert_input": { "admin": [ - 3750 + 3498 ], "auto_start": [ 3 ], + "banner": [ + 78 + ], + "categories": [ + 4130 + ], "created_at": [ - 4324 + 4076 ], "description": [ 78 @@ -107363,72 +105459,96 @@ export default { 78 ], "e_tournament_status": [ - 1170 + 1178 + ], + "homepage": [ + 78 ], "id": [ - 4762 + 4621 ], "is_league": [ 3 ], + "latitude": [ + 1248 + ], "league_season_division": [ - 1845 + 1593 + ], + "location": [ + 78 + ], + "logo": [ + 78 + ], + "longitude": [ + 1248 ], "match_options_id": [ - 4762 + 4621 ], "name": [ 78 ], "options": [ - 2487 + 2235 ], "organizer_steam_id": [ 180 ], + "organizer_teams": [ + 4154 + ], "organizers": [ - 4378 + 4178 ], "player_stats": [ - 5613 + 5421 + ], + "prizes": [ + 4219 ], "results": [ - 5562 + 5370 ], "rosters": [ - 4552 + 4393 ], "scheduling_mode": [ 78 ], "stages": [ - 4463 + 4304 ], "start": [ - 4324 + 4076 ], "status": [ - 1164 + 1172 ], "teams": [ - 4593 + 4434 ], "trophies": [ - 4637 + 4478 ], "trophies_enabled": [ 3 ], "trophy_configs": [ - 4680 + 4521 ], "__typename": [ 78 ] }, "tournaments_max_fields": { + "banner": [ + 78 + ], "created_at": [ - 4324 + 4076 ], "description": [ 78 @@ -107442,93 +105562,26 @@ export default { "discord_webhook": [ 78 ], - "id": [ - 4762 - ], - "match_options_id": [ - 4762 - ], - "max_players_per_lineup": [ - 38 - ], - "min_players_per_lineup": [ - 38 - ], - "name": [ - 78 - ], - "organizer_steam_id": [ - 180 - ], - "scheduling_mode": [ - 78 - ], - "start": [ - 4324 - ], - "__typename": [ + "homepage": [ 78 - ] - }, - "tournaments_max_order_by": { - "created_at": [ - 2781 - ], - "description": [ - 2781 - ], - "discord_guild_id": [ - 2781 - ], - "discord_role_id": [ - 2781 - ], - "discord_webhook": [ - 2781 ], "id": [ - 2781 - ], - "match_options_id": [ - 2781 - ], - "name": [ - 2781 - ], - "organizer_steam_id": [ - 2781 - ], - "scheduling_mode": [ - 2781 - ], - "start": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "tournaments_min_fields": { - "created_at": [ - 4324 - ], - "description": [ - 78 + 4621 ], - "discord_guild_id": [ - 78 + "latitude": [ + 1248 ], - "discord_role_id": [ + "location": [ 78 ], - "discord_webhook": [ + "logo": [ 78 ], - "id": [ - 4762 + "longitude": [ + 1248 ], "match_options_id": [ - 4762 + 4621 ], "max_players_per_lineup": [ 38 @@ -107546,270 +105599,74 @@ export default { 78 ], "start": [ - 4324 - ], - "__typename": [ - 78 - ] - }, - "tournaments_min_order_by": { - "created_at": [ - 2781 - ], - "description": [ - 2781 - ], - "discord_guild_id": [ - 2781 - ], - "discord_role_id": [ - 2781 - ], - "discord_webhook": [ - 2781 - ], - "id": [ - 2781 - ], - "match_options_id": [ - 2781 - ], - "name": [ - 2781 - ], - "organizer_steam_id": [ - 2781 - ], - "scheduling_mode": [ - 2781 - ], - "start": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "tournaments_mutation_response": { - "affected_rows": [ - 38 - ], - "returning": [ - 4716 - ], - "__typename": [ - 78 - ] - }, - "tournaments_obj_rel_insert_input": { - "data": [ - 4730 - ], - "on_conflict": [ - 4737 - ], - "__typename": [ - 78 - ] - }, - "tournaments_on_conflict": { - "constraint": [ - 4728 - ], - "update_columns": [ - 4754 - ], - "where": [ - 4727 + 4076 ], "__typename": [ 78 ] }, - "tournaments_order_by": { - "admin": [ - 3752 - ], - "auto_start": [ - 2781 - ], - "can_cancel": [ - 2781 - ], - "can_close_registration": [ - 2781 - ], - "can_join": [ - 2781 - ], - "can_open_registration": [ - 2781 - ], - "can_pause": [ - 2781 - ], - "can_resume": [ - 2781 - ], - "can_setup": [ - 2781 - ], - "can_start": [ - 2781 + "tournaments_max_order_by": { + "banner": [ + 2529 ], "created_at": [ - 2781 + 2529 ], "description": [ - 2781 + 2529 ], "discord_guild_id": [ - 2781 - ], - "discord_notifications_enabled": [ - 2781 - ], - "discord_notify_Canceled": [ - 2781 - ], - "discord_notify_Finished": [ - 2781 - ], - "discord_notify_Forfeit": [ - 2781 - ], - "discord_notify_Live": [ - 2781 - ], - "discord_notify_MapPaused": [ - 2781 - ], - "discord_notify_PickingPlayers": [ - 2781 - ], - "discord_notify_Scheduled": [ - 2781 - ], - "discord_notify_Surrendered": [ - 2781 - ], - "discord_notify_Tie": [ - 2781 - ], - "discord_notify_Veto": [ - 2781 - ], - "discord_notify_WaitingForCheckIn": [ - 2781 - ], - "discord_notify_WaitingForServer": [ - 2781 + 2529 ], "discord_role_id": [ - 2781 - ], - "discord_voice_enabled": [ - 2781 + 2529 ], "discord_webhook": [ - 2781 - ], - "e_tournament_status": [ - 1172 + 2529 ], - "has_min_teams": [ - 2781 + "homepage": [ + 2529 ], "id": [ - 2781 + 2529 ], - "is_league": [ - 2781 + "latitude": [ + 2529 ], - "is_organizer": [ - 2781 + "location": [ + 2529 ], - "joined_tournament": [ - 2781 + "logo": [ + 2529 ], - "league_season_division": [ - 1847 + "longitude": [ + 2529 ], "match_options_id": [ - 2781 - ], - "max_players_per_lineup": [ - 2781 - ], - "min_players_per_lineup": [ - 2781 + 2529 ], "name": [ - 2781 - ], - "options": [ - 2489 + 2529 ], "organizer_steam_id": [ - 2781 - ], - "organizers_aggregate": [ - 4377 - ], - "player_stats_aggregate": [ - 5612 - ], - "results_aggregate": [ - 5561 - ], - "rosters_aggregate": [ - 4551 + 2529 ], "scheduling_mode": [ - 2781 - ], - "stages_aggregate": [ - 4461 + 2529 ], "start": [ - 2781 - ], - "status": [ - 2781 - ], - "teams_aggregate": [ - 4592 - ], - "trophies_aggregate": [ - 4636 - ], - "trophies_enabled": [ - 2781 - ], - "trophy_configs_aggregate": [ - 4679 + 2529 ], "__typename": [ 78 ] }, - "tournaments_pk_columns_input": { - "id": [ - 4762 - ], - "__typename": [ + "tournaments_min_fields": { + "banner": [ 78 - ] - }, - "tournaments_select_column": {}, - "tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns": {}, - "tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns": {}, - "tournaments_set_input": { - "auto_start": [ - 3 ], "created_at": [ - 4324 + 4076 ], "description": [ 78 @@ -107817,232 +105674,39 @@ export default { "discord_guild_id": [ 78 ], - "discord_notifications_enabled": [ - 3 - ], - "discord_notify_Canceled": [ - 3 - ], - "discord_notify_Finished": [ - 3 - ], - "discord_notify_Forfeit": [ - 3 - ], - "discord_notify_Live": [ - 3 - ], - "discord_notify_MapPaused": [ - 3 - ], - "discord_notify_PickingPlayers": [ - 3 - ], - "discord_notify_Scheduled": [ - 3 - ], - "discord_notify_Surrendered": [ - 3 - ], - "discord_notify_Tie": [ - 3 - ], - "discord_notify_Veto": [ - 3 - ], - "discord_notify_WaitingForCheckIn": [ - 3 - ], - "discord_notify_WaitingForServer": [ - 3 - ], "discord_role_id": [ 78 ], - "discord_voice_enabled": [ - 3 - ], "discord_webhook": [ 78 ], - "id": [ - 4762 - ], - "is_league": [ - 3 - ], - "match_options_id": [ - 4762 - ], - "name": [ - 78 - ], - "organizer_steam_id": [ - 180 - ], - "scheduling_mode": [ - 78 - ], - "start": [ - 4324 - ], - "status": [ - 1164 - ], - "trophies_enabled": [ - 3 - ], - "__typename": [ + "homepage": [ 78 - ] - }, - "tournaments_stddev_fields": { - "max_players_per_lineup": [ - 38 ], - "min_players_per_lineup": [ - 38 + "id": [ + 4621 ], - "organizer_steam_id": [ - 29 + "latitude": [ + 1248 ], - "__typename": [ + "location": [ 78 - ] - }, - "tournaments_stddev_order_by": { - "organizer_steam_id": [ - 2781 ], - "__typename": [ + "logo": [ 78 - ] - }, - "tournaments_stddev_pop_fields": { - "max_players_per_lineup": [ - 38 ], - "min_players_per_lineup": [ - 38 - ], - "organizer_steam_id": [ - 29 + "longitude": [ + 1248 ], - "__typename": [ - 78 - ] - }, - "tournaments_stddev_pop_order_by": { - "organizer_steam_id": [ - 2781 + "match_options_id": [ + 4621 ], - "__typename": [ - 78 - ] - }, - "tournaments_stddev_samp_fields": { "max_players_per_lineup": [ 38 ], "min_players_per_lineup": [ 38 ], - "organizer_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "tournaments_stddev_samp_order_by": { - "organizer_steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "tournaments_stream_cursor_input": { - "initial_value": [ - 4751 - ], - "ordering": [ - 236 - ], - "__typename": [ - 78 - ] - }, - "tournaments_stream_cursor_value_input": { - "auto_start": [ - 3 - ], - "created_at": [ - 4324 - ], - "description": [ - 78 - ], - "discord_guild_id": [ - 78 - ], - "discord_notifications_enabled": [ - 3 - ], - "discord_notify_Canceled": [ - 3 - ], - "discord_notify_Finished": [ - 3 - ], - "discord_notify_Forfeit": [ - 3 - ], - "discord_notify_Live": [ - 3 - ], - "discord_notify_MapPaused": [ - 3 - ], - "discord_notify_PickingPlayers": [ - 3 - ], - "discord_notify_Scheduled": [ - 3 - ], - "discord_notify_Surrendered": [ - 3 - ], - "discord_notify_Tie": [ - 3 - ], - "discord_notify_Veto": [ - 3 - ], - "discord_notify_WaitingForCheckIn": [ - 3 - ], - "discord_notify_WaitingForServer": [ - 3 - ], - "discord_role_id": [ - 78 - ], - "discord_voice_enabled": [ - 3 - ], - "discord_webhook": [ - 78 - ], - "id": [ - 4762 - ], - "is_league": [ - 3 - ], - "match_options_id": [ - 4762 - ], "name": [ 78 ], @@ -108050,1039 +105714,535 @@ export default { 180 ], "scheduling_mode": [ - 78 - ], - "start": [ - 4324 - ], - "status": [ - 1164 - ], - "trophies_enabled": [ - 3 - ], - "__typename": [ - 78 - ] - }, - "tournaments_sum_fields": { - "max_players_per_lineup": [ - 38 - ], - "min_players_per_lineup": [ - 38 - ], - "organizer_steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "tournaments_sum_order_by": { - "organizer_steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "tournaments_update_column": {}, - "tournaments_updates": { - "_inc": [ - 4729 - ], - "_set": [ - 4743 - ], - "where": [ - 4727 - ], - "__typename": [ - 78 - ] - }, - "tournaments_var_pop_fields": { - "max_players_per_lineup": [ - 38 - ], - "min_players_per_lineup": [ - 38 - ], - "organizer_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "tournaments_var_pop_order_by": { - "organizer_steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "tournaments_var_samp_fields": { - "max_players_per_lineup": [ - 38 - ], - "min_players_per_lineup": [ - 38 - ], - "organizer_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "tournaments_var_samp_order_by": { - "organizer_steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "tournaments_variance_fields": { - "max_players_per_lineup": [ - 38 - ], - "min_players_per_lineup": [ - 38 - ], - "organizer_steam_id": [ - 29 - ], - "__typename": [ - 78 - ] - }, - "tournaments_variance_order_by": { - "organizer_steam_id": [ - 2781 - ], - "__typename": [ - 78 - ] - }, - "uuid": {}, - "uuid_array_comparison_exp": { - "_contained_in": [ - 4762 - ], - "_contains": [ - 4762 - ], - "_eq": [ - 4762 - ], - "_gt": [ - 4762 - ], - "_gte": [ - 4762 - ], - "_in": [ - 4762 - ], - "_is_null": [ - 3 - ], - "_lt": [ - 4762 - ], - "_lte": [ - 4762 - ], - "_neq": [ - 4762 - ], - "_nin": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "uuid_comparison_exp": { - "_eq": [ - 4762 - ], - "_gt": [ - 4762 - ], - "_gte": [ - 4762 - ], - "_in": [ - 4762 - ], - "_is_null": [ - 3 - ], - "_lt": [ - 4762 - ], - "_lte": [ - 4762 - ], - "_neq": [ - 4762 - ], - "_nin": [ - 4762 - ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats": { - "assists": [ - 38 - ], - "deaths": [ - 38 - ], - "event": [ - 1471 - ], - "event_id": [ - 4762 - ], - "headshot_percentage": [ - 1499 - ], - "headshots": [ - 38 - ], - "kdr": [ - 1499 - ], - "kills": [ - 38 - ], - "matches_played": [ - 38 - ], - "player": [ - 3739 - ], - "player_steam_id": [ - 180 - ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_aggregate": { - "aggregate": [ - 4779 - ], - "nodes": [ - 4765 - ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_aggregate_bool_exp": { - "avg": [ - 4768 - ], - "corr": [ - 4769 - ], - "count": [ - 4771 - ], - "covar_samp": [ - 4772 - ], - "max": [ - 4774 - ], - "min": [ - 4775 - ], - "stddev_samp": [ - 4776 - ], - "sum": [ - 4777 - ], - "var_samp": [ - 4778 - ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_aggregate_bool_exp_avg": { - "arguments": [ - 4792 - ], - "distinct": [ - 3 - ], - "filter": [ - 4784 - ], - "predicate": [ - 1500 - ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_aggregate_bool_exp_corr": { - "arguments": [ - 4770 - ], - "distinct": [ - 3 - ], - "filter": [ - 4784 - ], - "predicate": [ - 1500 - ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_aggregate_bool_exp_corr_arguments": { - "X": [ - 4793 - ], - "Y": [ - 4793 - ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_aggregate_bool_exp_count": { - "arguments": [ - 4791 - ], - "distinct": [ - 3 - ], - "filter": [ - 4784 + 78 ], - "predicate": [ - 39 + "start": [ + 4076 ], "__typename": [ 78 ] }, - "v_event_player_stats_aggregate_bool_exp_covar_samp": { - "arguments": [ - 4773 + "tournaments_min_order_by": { + "banner": [ + 2529 ], - "distinct": [ - 3 + "created_at": [ + 2529 ], - "filter": [ - 4784 + "description": [ + 2529 ], - "predicate": [ - 1500 + "discord_guild_id": [ + 2529 ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { - "X": [ - 4794 + "discord_role_id": [ + 2529 ], - "Y": [ - 4794 + "discord_webhook": [ + 2529 ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_aggregate_bool_exp_max": { - "arguments": [ - 4795 + "homepage": [ + 2529 ], - "distinct": [ - 3 + "id": [ + 2529 ], - "filter": [ - 4784 + "latitude": [ + 2529 ], - "predicate": [ - 1500 + "location": [ + 2529 ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_aggregate_bool_exp_min": { - "arguments": [ - 4796 + "logo": [ + 2529 ], - "distinct": [ - 3 + "longitude": [ + 2529 ], - "filter": [ - 4784 + "match_options_id": [ + 2529 ], - "predicate": [ - 1500 + "name": [ + 2529 + ], + "organizer_steam_id": [ + 2529 + ], + "scheduling_mode": [ + 2529 + ], + "start": [ + 2529 ], "__typename": [ 78 ] }, - "v_event_player_stats_aggregate_bool_exp_stddev_samp": { - "arguments": [ - 4797 - ], - "distinct": [ - 3 - ], - "filter": [ - 4784 + "tournaments_mutation_response": { + "affected_rows": [ + 38 ], - "predicate": [ - 1500 + "returning": [ + 4557 ], "__typename": [ 78 ] }, - "v_event_player_stats_aggregate_bool_exp_sum": { - "arguments": [ - 4798 - ], - "distinct": [ - 3 - ], - "filter": [ - 4784 + "tournaments_obj_rel_insert_input": { + "data": [ + 4581 ], - "predicate": [ - 1500 + "on_conflict": [ + 4588 ], "__typename": [ 78 ] }, - "v_event_player_stats_aggregate_bool_exp_var_samp": { - "arguments": [ - 4799 - ], - "distinct": [ - 3 + "tournaments_on_conflict": { + "constraint": [ + 4579 ], - "filter": [ - 4784 + "update_columns": [ + 4613 ], - "predicate": [ - 1500 + "where": [ + 4578 ], "__typename": [ 78 ] }, - "v_event_player_stats_aggregate_fields": { - "avg": [ - 4782 - ], - "count": [ - 38, - { - "columns": [ - 4791, - "[v_event_player_stats_select_column!]" - ], - "distinct": [ - 3 - ] - } + "tournaments_order_by": { + "admin": [ + 3500 ], - "max": [ - 4786 + "auto_start": [ + 2529 ], - "min": [ - 4788 + "banner": [ + 2529 ], - "stddev": [ - 4800 + "can_cancel": [ + 2529 ], - "stddev_pop": [ - 4802 + "can_close_registration": [ + 2529 ], - "stddev_samp": [ - 4804 + "can_join": [ + 2529 ], - "sum": [ - 4808 + "can_open_registration": [ + 2529 ], - "var_pop": [ - 4810 + "can_pause": [ + 2529 ], - "var_samp": [ - 4812 + "can_resume": [ + 2529 ], - "variance": [ - 4814 + "can_setup": [ + 2529 ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_aggregate_order_by": { - "avg": [ - 4783 + "can_start": [ + 2529 ], - "count": [ - 2781 + "categories_aggregate": [ + 4129 ], - "max": [ - 4787 + "created_at": [ + 2529 ], - "min": [ - 4789 + "description": [ + 2529 ], - "stddev": [ - 4801 + "discord_guild_id": [ + 2529 ], - "stddev_pop": [ - 4803 + "discord_notifications_enabled": [ + 2529 ], - "stddev_samp": [ - 4805 + "discord_notify_Canceled": [ + 2529 ], - "sum": [ - 4809 + "discord_notify_Finished": [ + 2529 ], - "var_pop": [ - 4811 + "discord_notify_Forfeit": [ + 2529 ], - "var_samp": [ - 4813 + "discord_notify_Live": [ + 2529 ], - "variance": [ - 4815 + "discord_notify_MapPaused": [ + 2529 ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_arr_rel_insert_input": { - "data": [ - 4785 + "discord_notify_PickingPlayers": [ + 2529 ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_avg_fields": { - "assists": [ - 29 + "discord_notify_Scheduled": [ + 2529 ], - "deaths": [ - 29 + "discord_notify_Surrendered": [ + 2529 ], - "headshot_percentage": [ - 29 + "discord_notify_Tie": [ + 2529 ], - "headshots": [ - 29 + "discord_notify_Veto": [ + 2529 ], - "kdr": [ - 29 + "discord_notify_WaitingForCheckIn": [ + 2529 ], - "kills": [ - 29 + "discord_notify_WaitingForServer": [ + 2529 ], - "matches_played": [ - 29 + "discord_role_id": [ + 2529 ], - "player_steam_id": [ - 29 + "discord_voice_enabled": [ + 2529 ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_avg_order_by": { - "assists": [ - 2781 + "discord_webhook": [ + 2529 ], - "deaths": [ - 2781 + "e_tournament_status": [ + 1180 ], - "headshot_percentage": [ - 2781 + "has_min_teams": [ + 2529 ], - "headshots": [ - 2781 + "homepage": [ + 2529 ], - "kdr": [ - 2781 + "id": [ + 2529 ], - "kills": [ - 2781 + "is_league": [ + 2529 ], - "matches_played": [ - 2781 + "is_organizer": [ + 2529 ], - "player_steam_id": [ - 2781 + "joined_tournament": [ + 2529 ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_bool_exp": { - "_and": [ - 4784 + "latitude": [ + 2529 ], - "_not": [ - 4784 + "league_season_division": [ + 1595 ], - "_or": [ - 4784 + "location": [ + 2529 ], - "assists": [ - 39 + "logo": [ + 2529 ], - "deaths": [ - 39 + "longitude": [ + 2529 ], - "event": [ - 1475 + "match_options_id": [ + 2529 ], - "event_id": [ - 4764 + "max_players_per_lineup": [ + 2529 ], - "headshot_percentage": [ - 1500 + "min_players_per_lineup": [ + 2529 ], - "headshots": [ - 39 + "name": [ + 2529 ], - "kdr": [ - 1500 + "options": [ + 2237 ], - "kills": [ - 39 + "organizer_steam_id": [ + 2529 ], - "matches_played": [ - 39 + "organizer_teams_aggregate": [ + 4153 ], - "player": [ - 3743 + "organizers_aggregate": [ + 4177 ], - "player_steam_id": [ - 182 + "player_stats_aggregate": [ + 5420 ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_insert_input": { - "assists": [ - 38 + "prizes_aggregate": [ + 4218 ], - "deaths": [ - 38 + "results_aggregate": [ + 5369 ], - "event": [ - 1482 + "rosters_aggregate": [ + 4392 ], - "event_id": [ - 4762 + "scheduling_mode": [ + 2529 ], - "headshot_percentage": [ - 1499 + "stages_aggregate": [ + 4302 ], - "headshots": [ - 38 + "start": [ + 2529 ], - "kdr": [ - 1499 + "status": [ + 2529 ], - "kills": [ - 38 + "teams_aggregate": [ + 4433 ], - "matches_played": [ - 38 + "trophies_aggregate": [ + 4477 ], - "player": [ - 3750 + "trophies_enabled": [ + 2529 ], - "player_steam_id": [ - 180 + "trophy_configs_aggregate": [ + 4520 ], "__typename": [ 78 ] }, - "v_event_player_stats_max_fields": { - "assists": [ - 38 - ], - "deaths": [ - 38 - ], - "event_id": [ - 4762 - ], - "headshot_percentage": [ - 1499 - ], - "headshots": [ - 38 - ], - "kdr": [ - 1499 - ], - "kills": [ - 38 - ], - "matches_played": [ - 38 - ], - "player_steam_id": [ - 180 + "tournaments_pk_columns_input": { + "id": [ + 4621 ], "__typename": [ 78 ] }, - "v_event_player_stats_max_order_by": { - "assists": [ - 2781 + "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 ], - "deaths": [ - 2781 + "banner": [ + 78 ], - "event_id": [ - 2781 + "created_at": [ + 4076 ], - "headshot_percentage": [ - 2781 + "description": [ + 78 ], - "headshots": [ - 2781 + "discord_guild_id": [ + 78 ], - "kdr": [ - 2781 + "discord_notifications_enabled": [ + 3 ], - "kills": [ - 2781 + "discord_notify_Canceled": [ + 3 ], - "matches_played": [ - 2781 + "discord_notify_Finished": [ + 3 ], - "player_steam_id": [ - 2781 + "discord_notify_Forfeit": [ + 3 ], - "__typename": [ - 78 - ] - }, - "v_event_player_stats_min_fields": { - "assists": [ - 38 + "discord_notify_Live": [ + 3 ], - "deaths": [ - 38 + "discord_notify_MapPaused": [ + 3 ], - "event_id": [ - 4762 + "discord_notify_PickingPlayers": [ + 3 ], - "headshot_percentage": [ - 1499 + "discord_notify_Scheduled": [ + 3 ], - "headshots": [ - 38 + "discord_notify_Surrendered": [ + 3 ], - "kdr": [ - 1499 + "discord_notify_Tie": [ + 3 ], - "kills": [ - 38 + "discord_notify_Veto": [ + 3 ], - "matches_played": [ - 38 + "discord_notify_WaitingForCheckIn": [ + 3 ], - "player_steam_id": [ - 180 + "discord_notify_WaitingForServer": [ + 3 ], - "__typename": [ + "discord_role_id": [ 78 - ] - }, - "v_event_player_stats_min_order_by": { - "assists": [ - 2781 ], - "deaths": [ - 2781 - ], - "event_id": [ - 2781 - ], - "headshot_percentage": [ - 2781 + "discord_voice_enabled": [ + 3 ], - "headshots": [ - 2781 + "discord_webhook": [ + 78 ], - "kdr": [ - 2781 + "homepage": [ + 78 ], - "kills": [ - 2781 + "id": [ + 4621 ], - "matches_played": [ - 2781 + "is_league": [ + 3 ], - "player_steam_id": [ - 2781 + "latitude": [ + 1248 ], - "__typename": [ + "location": [ 78 - ] - }, - "v_event_player_stats_order_by": { - "assists": [ - 2781 - ], - "deaths": [ - 2781 ], - "event": [ - 1484 + "logo": [ + 78 ], - "event_id": [ - 2781 + "longitude": [ + 1248 ], - "headshot_percentage": [ - 2781 + "match_options_id": [ + 4621 ], - "headshots": [ - 2781 + "name": [ + 78 ], - "kdr": [ - 2781 + "organizer_steam_id": [ + 180 ], - "kills": [ - 2781 + "scheduling_mode": [ + 78 ], - "matches_played": [ - 2781 + "start": [ + 4076 ], - "player": [ - 3752 + "status": [ + 1172 ], - "player_steam_id": [ - 2781 + "trophies_enabled": [ + 3 ], "__typename": [ 78 ] }, - "v_event_player_stats_select_column": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns": {}, - "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, - "v_event_player_stats_stddev_fields": { - "assists": [ - 29 - ], - "deaths": [ - 29 - ], - "headshot_percentage": [ - 29 - ], - "headshots": [ + "tournaments_stddev_fields": { + "latitude": [ 29 ], - "kdr": [ + "longitude": [ 29 ], - "kills": [ - 29 + "max_players_per_lineup": [ + 38 ], - "matches_played": [ - 29 + "min_players_per_lineup": [ + 38 ], - "player_steam_id": [ + "organizer_steam_id": [ 29 ], "__typename": [ 78 ] }, - "v_event_player_stats_stddev_order_by": { - "assists": [ - 2781 - ], - "deaths": [ - 2781 - ], - "headshot_percentage": [ - 2781 - ], - "headshots": [ - 2781 - ], - "kdr": [ - 2781 - ], - "kills": [ - 2781 + "tournaments_stddev_order_by": { + "latitude": [ + 2529 ], - "matches_played": [ - 2781 + "longitude": [ + 2529 ], - "player_steam_id": [ - 2781 + "organizer_steam_id": [ + 2529 ], "__typename": [ 78 ] }, - "v_event_player_stats_stddev_pop_fields": { - "assists": [ - 29 - ], - "deaths": [ - 29 - ], - "headshot_percentage": [ - 29 - ], - "headshots": [ + "tournaments_stddev_pop_fields": { + "latitude": [ 29 ], - "kdr": [ + "longitude": [ 29 ], - "kills": [ - 29 + "max_players_per_lineup": [ + 38 ], - "matches_played": [ - 29 + "min_players_per_lineup": [ + 38 ], - "player_steam_id": [ + "organizer_steam_id": [ 29 ], "__typename": [ 78 ] }, - "v_event_player_stats_stddev_pop_order_by": { - "assists": [ - 2781 - ], - "deaths": [ - 2781 - ], - "headshot_percentage": [ - 2781 - ], - "headshots": [ - 2781 - ], - "kdr": [ - 2781 - ], - "kills": [ - 2781 + "tournaments_stddev_pop_order_by": { + "latitude": [ + 2529 ], - "matches_played": [ - 2781 + "longitude": [ + 2529 ], - "player_steam_id": [ - 2781 + "organizer_steam_id": [ + 2529 ], "__typename": [ 78 ] }, - "v_event_player_stats_stddev_samp_fields": { - "assists": [ - 29 - ], - "deaths": [ - 29 - ], - "headshot_percentage": [ - 29 - ], - "headshots": [ + "tournaments_stddev_samp_fields": { + "latitude": [ 29 ], - "kdr": [ + "longitude": [ 29 ], - "kills": [ - 29 + "max_players_per_lineup": [ + 38 ], - "matches_played": [ - 29 + "min_players_per_lineup": [ + 38 ], - "player_steam_id": [ + "organizer_steam_id": [ 29 ], "__typename": [ 78 ] }, - "v_event_player_stats_stddev_samp_order_by": { - "assists": [ - 2781 - ], - "deaths": [ - 2781 - ], - "headshot_percentage": [ - 2781 - ], - "headshots": [ - 2781 - ], - "kdr": [ - 2781 - ], - "kills": [ - 2781 + "tournaments_stddev_samp_order_by": { + "latitude": [ + 2529 ], - "matches_played": [ - 2781 + "longitude": [ + 2529 ], - "player_steam_id": [ - 2781 + "organizer_steam_id": [ + 2529 ], "__typename": [ 78 ] }, - "v_event_player_stats_stream_cursor_input": { + "tournaments_stream_cursor_input": { "initial_value": [ - 4807 + 4610 ], "ordering": [ 236 @@ -109091,265 +106251,333 @@ export default { 78 ] }, - "v_event_player_stats_stream_cursor_value_input": { - "assists": [ - 38 + "tournaments_stream_cursor_value_input": { + "auto_start": [ + 3 ], - "deaths": [ - 38 + "banner": [ + 78 ], - "event_id": [ - 4762 + "created_at": [ + 4076 ], - "headshot_percentage": [ - 1499 + "description": [ + 78 ], - "headshots": [ - 38 + "discord_guild_id": [ + 78 ], - "kdr": [ - 1499 + "discord_notifications_enabled": [ + 3 ], - "kills": [ - 38 + "discord_notify_Canceled": [ + 3 ], - "matches_played": [ - 38 + "discord_notify_Finished": [ + 3 ], - "player_steam_id": [ - 180 + "discord_notify_Forfeit": [ + 3 ], - "__typename": [ + "discord_notify_Live": [ + 3 + ], + "discord_notify_MapPaused": [ + 3 + ], + "discord_notify_PickingPlayers": [ + 3 + ], + "discord_notify_Scheduled": [ + 3 + ], + "discord_notify_Surrendered": [ + 3 + ], + "discord_notify_Tie": [ + 3 + ], + "discord_notify_Veto": [ + 3 + ], + "discord_notify_WaitingForCheckIn": [ + 3 + ], + "discord_notify_WaitingForServer": [ + 3 + ], + "discord_role_id": [ 78 - ] - }, - "v_event_player_stats_sum_fields": { - "assists": [ - 38 ], - "deaths": [ - 38 + "discord_voice_enabled": [ + 3 ], - "headshot_percentage": [ - 1499 + "discord_webhook": [ + 78 ], - "headshots": [ - 38 + "homepage": [ + 78 ], - "kdr": [ - 1499 + "id": [ + 4621 ], - "kills": [ - 38 + "is_league": [ + 3 ], - "matches_played": [ - 38 + "latitude": [ + 1248 ], - "player_steam_id": [ + "location": [ + 78 + ], + "logo": [ + 78 + ], + "longitude": [ + 1248 + ], + "match_options_id": [ + 4621 + ], + "name": [ + 78 + ], + "organizer_steam_id": [ 180 ], + "scheduling_mode": [ + 78 + ], + "start": [ + 4076 + ], + "status": [ + 1172 + ], + "trophies_enabled": [ + 3 + ], "__typename": [ 78 ] }, - "v_event_player_stats_sum_order_by": { - "assists": [ - 2781 + "tournaments_sum_fields": { + "latitude": [ + 1248 ], - "deaths": [ - 2781 + "longitude": [ + 1248 ], - "headshot_percentage": [ - 2781 + "max_players_per_lineup": [ + 38 ], - "headshots": [ - 2781 + "min_players_per_lineup": [ + 38 ], - "kdr": [ - 2781 + "organizer_steam_id": [ + 180 ], - "kills": [ - 2781 + "__typename": [ + 78 + ] + }, + "tournaments_sum_order_by": { + "latitude": [ + 2529 ], - "matches_played": [ - 2781 + "longitude": [ + 2529 ], - "player_steam_id": [ - 2781 + "organizer_steam_id": [ + 2529 ], "__typename": [ 78 ] }, - "v_event_player_stats_var_pop_fields": { - "assists": [ - 29 + "tournaments_update_column": {}, + "tournaments_updates": { + "_inc": [ + 4580 ], - "deaths": [ - 29 + "_set": [ + 4602 ], - "headshot_percentage": [ - 29 + "where": [ + 4578 ], - "headshots": [ + "__typename": [ + 78 + ] + }, + "tournaments_var_pop_fields": { + "latitude": [ 29 ], - "kdr": [ + "longitude": [ 29 ], - "kills": [ - 29 + "max_players_per_lineup": [ + 38 ], - "matches_played": [ - 29 + "min_players_per_lineup": [ + 38 ], - "player_steam_id": [ + "organizer_steam_id": [ 29 ], "__typename": [ 78 ] }, - "v_event_player_stats_var_pop_order_by": { - "assists": [ - 2781 - ], - "deaths": [ - 2781 - ], - "headshot_percentage": [ - 2781 - ], - "headshots": [ - 2781 - ], - "kdr": [ - 2781 - ], - "kills": [ - 2781 + "tournaments_var_pop_order_by": { + "latitude": [ + 2529 ], - "matches_played": [ - 2781 + "longitude": [ + 2529 ], - "player_steam_id": [ - 2781 + "organizer_steam_id": [ + 2529 ], "__typename": [ 78 ] }, - "v_event_player_stats_var_samp_fields": { - "assists": [ + "tournaments_var_samp_fields": { + "latitude": [ 29 ], - "deaths": [ + "longitude": [ 29 ], - "headshot_percentage": [ - 29 + "max_players_per_lineup": [ + 38 ], - "headshots": [ - 29 + "min_players_per_lineup": [ + 38 ], - "kdr": [ + "organizer_steam_id": [ 29 ], - "kills": [ - 29 + "__typename": [ + 78 + ] + }, + "tournaments_var_samp_order_by": { + "latitude": [ + 2529 ], - "matches_played": [ - 29 + "longitude": [ + 2529 ], - "player_steam_id": [ - 29 + "organizer_steam_id": [ + 2529 ], "__typename": [ 78 ] }, - "v_event_player_stats_var_samp_order_by": { - "assists": [ - 2781 + "tournaments_variance_fields": { + "latitude": [ + 29 ], - "deaths": [ - 2781 + "longitude": [ + 29 ], - "headshot_percentage": [ - 2781 + "max_players_per_lineup": [ + 38 ], - "headshots": [ - 2781 + "min_players_per_lineup": [ + 38 ], - "kdr": [ - 2781 + "organizer_steam_id": [ + 29 ], - "kills": [ - 2781 + "__typename": [ + 78 + ] + }, + "tournaments_variance_order_by": { + "latitude": [ + 2529 ], - "matches_played": [ - 2781 + "longitude": [ + 2529 ], - "player_steam_id": [ - 2781 + "organizer_steam_id": [ + 2529 ], "__typename": [ 78 ] }, - "v_event_player_stats_variance_fields": { - "assists": [ - 29 + "uuid": {}, + "uuid_array_comparison_exp": { + "_contained_in": [ + 4621 ], - "deaths": [ - 29 + "_contains": [ + 4621 ], - "headshot_percentage": [ - 29 + "_eq": [ + 4621 ], - "headshots": [ - 29 + "_gt": [ + 4621 ], - "kdr": [ - 29 + "_gte": [ + 4621 ], - "kills": [ - 29 + "_in": [ + 4621 ], - "matches_played": [ - 29 + "_is_null": [ + 3 ], - "player_steam_id": [ - 29 + "_lt": [ + 4621 + ], + "_lte": [ + 4621 + ], + "_neq": [ + 4621 + ], + "_nin": [ + 4621 ], "__typename": [ 78 ] }, - "v_event_player_stats_variance_order_by": { - "assists": [ - 2781 + "uuid_comparison_exp": { + "_eq": [ + 4621 ], - "deaths": [ - 2781 + "_gt": [ + 4621 ], - "headshot_percentage": [ - 2781 + "_gte": [ + 4621 ], - "headshots": [ - 2781 + "_in": [ + 4621 ], - "kdr": [ - 2781 + "_is_null": [ + 3 ], - "kills": [ - 2781 + "_lt": [ + 4621 ], - "matches_played": [ - 2781 + "_lte": [ + 4621 ], - "player_steam_id": [ - 2781 + "_neq": [ + 4621 + ], + "_nin": [ + 4621 ], "__typename": [ 78 @@ -109404,10 +106632,10 @@ export default { }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 4818 + 4626 ], "nodes": [ - 4816 + 4624 ], "__typename": [ 78 @@ -109415,13 +106643,13 @@ export default { }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 4819 + 4627 ], "count": [ 38, { "columns": [ - 4824, + 4632, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -109430,31 +106658,31 @@ export default { } ], "max": [ - 4821 + 4629 ], "min": [ - 4822 + 4630 ], "stddev": [ - 4825 + 4633 ], "stddev_pop": [ - 4826 + 4634 ], "stddev_samp": [ - 4827 + 4635 ], "sum": [ - 4830 + 4638 ], "var_pop": [ - 4831 + 4639 ], "var_samp": [ - 4832 + 4640 ], "variance": [ - 4833 + 4641 ], "__typename": [ 78 @@ -109497,13 +106725,13 @@ export default { }, "v_gpu_pool_status_bool_exp": { "_and": [ - 4820 + 4628 ], "_not": [ - 4820 + 4628 ], "_or": [ - 4820 + 4628 ], "demo_free_gpu_nodes": [ 39 @@ -109623,46 +106851,46 @@ export default { }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 2781 + 2529 ], "demo_in_progress": [ - 2781 + 2529 ], "demo_total_gpu_nodes": [ - 2781 + 2529 ], "free_gpu_nodes": [ - 2781 + 2529 ], "free_gpu_nodes_for_batch": [ - 2781 + 2529 ], "highlights_in_progress": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "live_in_progress": [ - 2781 + 2529 ], "registered_gpu_nodes": [ - 2781 + 2529 ], "rendering_total_gpu_nodes": [ - 2781 + 2529 ], "renders_paused_for_active_match": [ - 2781 + 2529 ], "streaming_free_gpu_nodes": [ - 2781 + 2529 ], "streaming_total_gpu_nodes": [ - 2781 + 2529 ], "total_gpu_nodes": [ - 2781 + 2529 ], "__typename": [ 78 @@ -109776,7 +107004,7 @@ export default { }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 4829 + 4637 ], "ordering": [ 236 @@ -109980,22 +107208,22 @@ export default { 38 ], "league_division_id": [ - 4762 + 4621 ], "league_season_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team": [ - 2012 + 1760 ], "league_team_id": [ - 4762 + 4621 ], "league_team_season_id": [ - 4762 + 4621 ], "losses": [ 38 @@ -110025,13 +107253,13 @@ export default { 38 ], "season_division": [ - 1830 + 1578 ], "team_season": [ - 1970 + 1718 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -110042,10 +107270,10 @@ export default { }, "v_league_division_standings_aggregate": { "aggregate": [ - 4838 + 4646 ], "nodes": [ - 4834 + 4642 ], "__typename": [ 78 @@ -110053,7 +107281,7 @@ export default { }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 4837 + 4645 ], "__typename": [ 78 @@ -110061,13 +107289,13 @@ export default { }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 4850 + 4658 ], "distinct": [ 3 ], "filter": [ - 4843 + 4651 ], "predicate": [ 39 @@ -110078,13 +107306,13 @@ export default { }, "v_league_division_standings_aggregate_fields": { "avg": [ - 4841 + 4649 ], "count": [ 38, { "columns": [ - 4850, + 4658, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -110093,31 +107321,31 @@ export default { } ], "max": [ - 4845 + 4653 ], "min": [ - 4847 + 4655 ], "stddev": [ - 4851 + 4659 ], "stddev_pop": [ - 4853 + 4661 ], "stddev_samp": [ - 4855 + 4663 ], "sum": [ - 4859 + 4667 ], "var_pop": [ - 4861 + 4669 ], "var_samp": [ - 4863 + 4671 ], "variance": [ - 4865 + 4673 ], "__typename": [ 78 @@ -110125,37 +107353,37 @@ export default { }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 4842 + 4650 ], "count": [ - 2781 + 2529 ], "max": [ - 4846 + 4654 ], "min": [ - 4848 + 4656 ], "stddev": [ - 4852 + 4660 ], "stddev_pop": [ - 4854 + 4662 ], "stddev_samp": [ - 4856 + 4664 ], "sum": [ - 4860 + 4668 ], "var_pop": [ - 4862 + 4670 ], "var_samp": [ - 4864 + 4672 ], "variance": [ - 4866 + 4674 ], "__typename": [ 78 @@ -110163,7 +107391,7 @@ export default { }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 4844 + 4652 ], "__typename": [ 78 @@ -110212,40 +107440,40 @@ export default { }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "round_diff": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -110253,13 +107481,13 @@ export default { }, "v_league_division_standings_bool_exp": { "_and": [ - 4843 + 4651 ], "_not": [ - 4843 + 4651 ], "_or": [ - 4843 + 4651 ], "head_to_head_match_wins": [ 39 @@ -110268,22 +107496,22 @@ export default { 39 ], "league_division_id": [ - 4764 + 4623 ], "league_season_division_id": [ - 4764 + 4623 ], "league_season_id": [ - 4764 + 4623 ], "league_team": [ - 2015 + 1763 ], "league_team_id": [ - 4764 + 4623 ], "league_team_season_id": [ - 4764 + 4623 ], "losses": [ 39 @@ -110313,13 +107541,13 @@ export default { 39 ], "season_division": [ - 1837 + 1585 ], "team_season": [ - 1979 + 1727 ], "tournament_team_id": [ - 4764 + 4623 ], "wins": [ 39 @@ -110336,22 +107564,22 @@ export default { 38 ], "league_division_id": [ - 4762 + 4621 ], "league_season_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team": [ - 2021 + 1769 ], "league_team_id": [ - 4762 + 4621 ], "league_team_season_id": [ - 4762 + 4621 ], "losses": [ 38 @@ -110381,13 +107609,13 @@ export default { 38 ], "season_division": [ - 1845 + 1593 ], "team_season": [ - 1988 + 1736 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -110404,19 +107632,19 @@ export default { 38 ], "league_division_id": [ - 4762 + 4621 ], "league_season_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team_id": [ - 4762 + 4621 ], "league_team_season_id": [ - 4762 + 4621 ], "losses": [ 38 @@ -110446,7 +107674,7 @@ export default { 38 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -110457,58 +107685,58 @@ export default { }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "league_division_id": [ - 2781 + 2529 ], "league_season_division_id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "league_team_id": [ - 2781 + 2529 ], "league_team_season_id": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "round_diff": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -110522,19 +107750,19 @@ export default { 38 ], "league_division_id": [ - 4762 + 4621 ], "league_season_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team_id": [ - 4762 + 4621 ], "league_team_season_id": [ - 4762 + 4621 ], "losses": [ 38 @@ -110564,7 +107792,7 @@ export default { 38 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -110575,58 +107803,58 @@ export default { }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "league_division_id": [ - 2781 + 2529 ], "league_season_division_id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "league_team_id": [ - 2781 + 2529 ], "league_team_season_id": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "round_diff": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -110634,67 +107862,67 @@ export default { }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "league_division_id": [ - 2781 + 2529 ], "league_season_division_id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "league_team": [ - 2023 + 1771 ], "league_team_id": [ - 2781 + 2529 ], "league_team_season_id": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "round_diff": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "season_division": [ - 1847 + 1595 ], "team_season": [ - 1990 + 1738 ], "tournament_team_id": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -110744,40 +107972,40 @@ export default { }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "round_diff": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -110826,40 +108054,40 @@ export default { }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "round_diff": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -110908,40 +108136,40 @@ export default { }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "round_diff": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -110949,7 +108177,7 @@ export default { }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 4858 + 4666 ], "ordering": [ 236 @@ -110966,19 +108194,19 @@ export default { 38 ], "league_division_id": [ - 4762 + 4621 ], "league_season_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team_id": [ - 4762 + 4621 ], "league_team_season_id": [ - 4762 + 4621 ], "losses": [ 38 @@ -111008,7 +108236,7 @@ export default { 38 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -111060,40 +108288,40 @@ export default { }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "round_diff": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -111142,40 +108370,40 @@ export default { }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "round_diff": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -111224,40 +108452,40 @@ export default { }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "round_diff": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -111306,40 +108534,40 @@ export default { }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "round_diff": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -111353,40 +108581,40 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1248 ], "kills": [ 38 ], "league_division_id": [ - 4762 + 4621 ], "league_season_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team": [ - 2012 + 1760 ], "league_team_id": [ - 4762 + 4621 ], "league_team_season_id": [ - 4762 + 4621 ], "matches_played": [ 38 ], "player": [ - 3739 + 3487 ], "player_steam_id": [ 180 @@ -111397,10 +108625,10 @@ export default { }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 4881 + 4689 ], "nodes": [ - 4867 + 4675 ], "__typename": [ 78 @@ -111408,31 +108636,31 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 4870 + 4678 ], "corr": [ - 4871 + 4679 ], "count": [ - 4873 + 4681 ], "covar_samp": [ - 4874 + 4682 ], "max": [ - 4876 + 4684 ], "min": [ - 4877 + 4685 ], "stddev_samp": [ - 4878 + 4686 ], "sum": [ - 4879 + 4687 ], "var_samp": [ - 4880 + 4688 ], "__typename": [ 78 @@ -111440,16 +108668,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4894 + 4702 ], "distinct": [ 3 ], "filter": [ - 4886 + 4694 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -111457,16 +108685,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 4872 + 4680 ], "distinct": [ 3 ], "filter": [ - 4886 + 4694 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -111474,10 +108702,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4895 + 4703 ], "Y": [ - 4895 + 4703 ], "__typename": [ 78 @@ -111485,13 +108713,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4893 + 4701 ], "distinct": [ 3 ], "filter": [ - 4886 + 4694 ], "predicate": [ 39 @@ -111502,16 +108730,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4875 + 4683 ], "distinct": [ 3 ], "filter": [ - 4886 + 4694 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -111519,10 +108747,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4896 + 4704 ], "Y": [ - 4896 + 4704 ], "__typename": [ 78 @@ -111530,16 +108758,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4897 + 4705 ], "distinct": [ 3 ], "filter": [ - 4886 + 4694 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -111547,16 +108775,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4898 + 4706 ], "distinct": [ 3 ], "filter": [ - 4886 + 4694 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -111564,16 +108792,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4899 + 4707 ], "distinct": [ 3 ], "filter": [ - 4886 + 4694 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -111581,16 +108809,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4900 + 4708 ], "distinct": [ 3 ], "filter": [ - 4886 + 4694 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -111598,16 +108826,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4901 + 4709 ], "distinct": [ 3 ], "filter": [ - 4886 + 4694 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -111615,13 +108843,13 @@ export default { }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 4884 + 4692 ], "count": [ 38, { "columns": [ - 4893, + 4701, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -111630,31 +108858,31 @@ export default { } ], "max": [ - 4888 + 4696 ], "min": [ - 4890 + 4698 ], "stddev": [ - 4902 + 4710 ], "stddev_pop": [ - 4904 + 4712 ], "stddev_samp": [ - 4906 + 4714 ], "sum": [ - 4910 + 4718 ], "var_pop": [ - 4912 + 4720 ], "var_samp": [ - 4914 + 4722 ], "variance": [ - 4916 + 4724 ], "__typename": [ 78 @@ -111662,37 +108890,37 @@ export default { }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 4885 + 4693 ], "count": [ - 2781 + 2529 ], "max": [ - 4889 + 4697 ], "min": [ - 4891 + 4699 ], "stddev": [ - 4903 + 4711 ], "stddev_pop": [ - 4905 + 4713 ], "stddev_samp": [ - 4907 + 4715 ], "sum": [ - 4911 + 4719 ], "var_pop": [ - 4913 + 4721 ], "var_samp": [ - 4915 + 4723 ], "variance": [ - 4917 + 4725 ], "__typename": [ 78 @@ -111700,7 +108928,7 @@ export default { }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 4887 + 4695 ], "__typename": [ 78 @@ -111737,28 +108965,28 @@ export default { }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -111766,13 +108994,13 @@ export default { }, "v_league_season_player_stats_bool_exp": { "_and": [ - 4886 + 4694 ], "_not": [ - 4886 + 4694 ], "_or": [ - 4886 + 4694 ], "assists": [ 39 @@ -111781,40 +109009,40 @@ export default { 39 ], "headshot_percentage": [ - 1500 + 1249 ], "headshots": [ 39 ], "kdr": [ - 1500 + 1249 ], "kills": [ 39 ], "league_division_id": [ - 4764 + 4623 ], "league_season_division_id": [ - 4764 + 4623 ], "league_season_id": [ - 4764 + 4623 ], "league_team": [ - 2015 + 1763 ], "league_team_id": [ - 4764 + 4623 ], "league_team_season_id": [ - 4764 + 4623 ], "matches_played": [ 39 ], "player": [ - 3743 + 3491 ], "player_steam_id": [ 182 @@ -111831,40 +109059,40 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1248 ], "kills": [ 38 ], "league_division_id": [ - 4762 + 4621 ], "league_season_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team": [ - 2021 + 1769 ], "league_team_id": [ - 4762 + 4621 ], "league_team_season_id": [ - 4762 + 4621 ], "matches_played": [ 38 ], "player": [ - 3750 + 3498 ], "player_steam_id": [ 180 @@ -111881,31 +109109,31 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1248 ], "kills": [ 38 ], "league_division_id": [ - 4762 + 4621 ], "league_season_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team_id": [ - 4762 + 4621 ], "league_team_season_id": [ - 4762 + 4621 ], "matches_played": [ 38 @@ -111919,43 +109147,43 @@ export default { }, "v_league_season_player_stats_max_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "league_division_id": [ - 2781 + 2529 ], "league_season_division_id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "league_team_id": [ - 2781 + 2529 ], "league_team_season_id": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -111969,31 +109197,31 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1248 ], "kills": [ 38 ], "league_division_id": [ - 4762 + 4621 ], "league_season_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team_id": [ - 4762 + 4621 ], "league_team_season_id": [ - 4762 + 4621 ], "matches_played": [ 38 @@ -112007,43 +109235,43 @@ export default { }, "v_league_season_player_stats_min_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "league_division_id": [ - 2781 + 2529 ], "league_season_division_id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "league_team_id": [ - 2781 + 2529 ], "league_team_season_id": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -112051,49 +109279,49 @@ export default { }, "v_league_season_player_stats_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "league_division_id": [ - 2781 + 2529 ], "league_season_division_id": [ - 2781 + 2529 ], "league_season_id": [ - 2781 + 2529 ], "league_team": [ - 2023 + 1771 ], "league_team_id": [ - 2781 + 2529 ], "league_team_season_id": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -112139,28 +109367,28 @@ export default { }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -112197,28 +109425,28 @@ export default { }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -112255,28 +109483,28 @@ export default { }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -112284,7 +109512,7 @@ export default { }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 4909 + 4717 ], "ordering": [ 236 @@ -112301,31 +109529,31 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1248 ], "kills": [ 38 ], "league_division_id": [ - 4762 + 4621 ], "league_season_division_id": [ - 4762 + 4621 ], "league_season_id": [ - 4762 + 4621 ], "league_team_id": [ - 4762 + 4621 ], "league_team_season_id": [ - 4762 + 4621 ], "matches_played": [ 38 @@ -112345,13 +109573,13 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1248 ], "kills": [ 38 @@ -112368,28 +109596,28 @@ export default { }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -112426,28 +109654,28 @@ export default { }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -112484,28 +109712,28 @@ export default { }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -112542,28 +109770,28 @@ export default { }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -112577,19 +109805,19 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "lineup": [ - 2276 + 2024 ], "match_lineup_id": [ - 4762 + 4621 ], "placeholder_name": [ 78 ], "player": [ - 3739 + 3487 ], "steam_id": [ 180 @@ -112600,10 +109828,10 @@ export default { }, "v_match_captains_aggregate": { "aggregate": [ - 4920 + 4728 ], "nodes": [ - 4918 + 4726 ], "__typename": [ 78 @@ -112611,13 +109839,13 @@ export default { }, "v_match_captains_aggregate_fields": { "avg": [ - 4921 + 4729 ], "count": [ 38, { "columns": [ - 4930, + 4738, "[v_match_captains_select_column!]" ], "distinct": [ @@ -112626,31 +109854,31 @@ export default { } ], "max": [ - 4925 + 4733 ], "min": [ - 4926 + 4734 ], "stddev": [ - 4932 + 4740 ], "stddev_pop": [ - 4933 + 4741 ], "stddev_samp": [ - 4934 + 4742 ], "sum": [ - 4937 + 4745 ], "var_pop": [ - 4939 + 4747 ], "var_samp": [ - 4940 + 4748 ], "variance": [ - 4941 + 4749 ], "__typename": [ 78 @@ -112666,13 +109894,13 @@ export default { }, "v_match_captains_bool_exp": { "_and": [ - 4922 + 4730 ], "_not": [ - 4922 + 4730 ], "_or": [ - 4922 + 4730 ], "captain": [ 4 @@ -112681,19 +109909,19 @@ export default { 80 ], "id": [ - 4764 + 4623 ], "lineup": [ - 2285 + 2033 ], "match_lineup_id": [ - 4764 + 4623 ], "placeholder_name": [ 80 ], "player": [ - 3743 + 3491 ], "steam_id": [ 182 @@ -112718,19 +109946,19 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "lineup": [ - 2294 + 2042 ], "match_lineup_id": [ - 4762 + 4621 ], "placeholder_name": [ 78 ], "player": [ - 3750 + 3498 ], "steam_id": [ 180 @@ -112744,10 +109972,10 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "placeholder_name": [ 78 @@ -112764,10 +109992,10 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "placeholder_name": [ 78 @@ -112784,7 +110012,7 @@ export default { 38 ], "returning": [ - 4918 + 4726 ], "__typename": [ 78 @@ -112792,7 +110020,7 @@ export default { }, "v_match_captains_obj_rel_insert_input": { "data": [ - 4924 + 4732 ], "__typename": [ 78 @@ -112800,28 +110028,28 @@ export default { }, "v_match_captains_order_by": { "captain": [ - 2781 + 2529 ], "discord_id": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "lineup": [ - 2296 + 2044 ], "match_lineup_id": [ - 2781 + 2529 ], "placeholder_name": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -112836,10 +110064,10 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "placeholder_name": [ 78 @@ -112877,7 +110105,7 @@ export default { }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 4936 + 4744 ], "ordering": [ 236 @@ -112894,10 +110122,10 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "placeholder_name": [ 78 @@ -112919,13 +110147,13 @@ export default { }, "v_match_captains_updates": { "_inc": [ - 4923 + 4731 ], "_set": [ - 4931 + 4739 ], "where": [ - 4922 + 4730 ], "__typename": [ 78 @@ -112960,7 +110188,7 @@ export default { 38 ], "clutcher": [ - 3739 + 3487 ], "clutcher_steam_id": [ 180 @@ -112969,22 +110197,22 @@ export default { 38 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_lineup": [ - 2276 + 2024 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "outcome": [ 78 @@ -113001,10 +110229,10 @@ export default { }, "v_match_clutches_aggregate": { "aggregate": [ - 4946 + 4754 ], "nodes": [ - 4942 + 4750 ], "__typename": [ 78 @@ -113012,7 +110240,7 @@ export default { }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 4945 + 4753 ], "__typename": [ 78 @@ -113020,13 +110248,13 @@ export default { }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 4958 + 4766 ], "distinct": [ 3 ], "filter": [ - 4951 + 4759 ], "predicate": [ 39 @@ -113037,13 +110265,13 @@ export default { }, "v_match_clutches_aggregate_fields": { "avg": [ - 4949 + 4757 ], "count": [ 38, { "columns": [ - 4958, + 4766, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -113052,31 +110280,31 @@ export default { } ], "max": [ - 4953 + 4761 ], "min": [ - 4955 + 4763 ], "stddev": [ - 4959 + 4767 ], "stddev_pop": [ - 4961 + 4769 ], "stddev_samp": [ - 4963 + 4771 ], "sum": [ - 4967 + 4775 ], "var_pop": [ - 4969 + 4777 ], "var_samp": [ - 4971 + 4779 ], "variance": [ - 4973 + 4781 ], "__typename": [ 78 @@ -113084,37 +110312,37 @@ export default { }, "v_match_clutches_aggregate_order_by": { "avg": [ - 4950 + 4758 ], "count": [ - 2781 + 2529 ], "max": [ - 4954 + 4762 ], "min": [ - 4956 + 4764 ], "stddev": [ - 4960 + 4768 ], "stddev_pop": [ - 4962 + 4770 ], "stddev_samp": [ - 4964 + 4772 ], "sum": [ - 4968 + 4776 ], "var_pop": [ - 4970 + 4778 ], "var_samp": [ - 4972 + 4780 ], "variance": [ - 4974 + 4782 ], "__typename": [ 78 @@ -113122,7 +110350,7 @@ export default { }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 4952 + 4760 ], "__typename": [ 78 @@ -113147,16 +110375,16 @@ export default { }, "v_match_clutches_avg_order_by": { "against_count": [ - 2781 + 2529 ], "clutcher_steam_id": [ - 2781 + 2529 ], "kills_in_clutch": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -113164,19 +110392,19 @@ export default { }, "v_match_clutches_bool_exp": { "_and": [ - 4951 + 4759 ], "_not": [ - 4951 + 4759 ], "_or": [ - 4951 + 4759 ], "against_count": [ 39 ], "clutcher": [ - 3743 + 3491 ], "clutcher_steam_id": [ 182 @@ -113185,22 +110413,22 @@ export default { 39 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_lineup": [ - 2285 + 2033 ], "match_lineup_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "outcome": [ 80 @@ -113220,7 +110448,7 @@ export default { 38 ], "clutcher": [ - 3750 + 3498 ], "clutcher_steam_id": [ 180 @@ -113229,22 +110457,22 @@ export default { 38 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_lineup": [ - 2294 + 2042 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map": [ - 2452 + 2200 ], "match_map_id": [ - 4762 + 4621 ], "outcome": [ 78 @@ -113270,13 +110498,13 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "outcome": [ 78 @@ -113293,31 +110521,31 @@ export default { }, "v_match_clutches_max_order_by": { "against_count": [ - 2781 + 2529 ], "clutcher_steam_id": [ - 2781 + 2529 ], "kills_in_clutch": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_lineup_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "outcome": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "side": [ - 2781 + 2529 ], "__typename": [ 78 @@ -113334,13 +110562,13 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "outcome": [ 78 @@ -113357,31 +110585,31 @@ export default { }, "v_match_clutches_min_order_by": { "against_count": [ - 2781 + 2529 ], "clutcher_steam_id": [ - 2781 + 2529 ], "kills_in_clutch": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_lineup_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "outcome": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "side": [ - 2781 + 2529 ], "__typename": [ 78 @@ -113389,43 +110617,43 @@ export default { }, "v_match_clutches_order_by": { "against_count": [ - 2781 + 2529 ], "clutcher": [ - 3752 + 3500 ], "clutcher_steam_id": [ - 2781 + 2529 ], "kills_in_clutch": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_lineup": [ - 2296 + 2044 ], "match_lineup_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "outcome": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "side": [ - 2781 + 2529 ], "__typename": [ 78 @@ -113451,16 +110679,16 @@ export default { }, "v_match_clutches_stddev_order_by": { "against_count": [ - 2781 + 2529 ], "clutcher_steam_id": [ - 2781 + 2529 ], "kills_in_clutch": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -113485,16 +110713,16 @@ export default { }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 2781 + 2529 ], "clutcher_steam_id": [ - 2781 + 2529 ], "kills_in_clutch": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -113519,16 +110747,16 @@ export default { }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 2781 + 2529 ], "clutcher_steam_id": [ - 2781 + 2529 ], "kills_in_clutch": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -113536,7 +110764,7 @@ export default { }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 4966 + 4774 ], "ordering": [ 236 @@ -113556,13 +110784,13 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "outcome": [ 78 @@ -113596,16 +110824,16 @@ export default { }, "v_match_clutches_sum_order_by": { "against_count": [ - 2781 + 2529 ], "clutcher_steam_id": [ - 2781 + 2529 ], "kills_in_clutch": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -113630,16 +110858,16 @@ export default { }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 2781 + 2529 ], "clutcher_steam_id": [ - 2781 + 2529 ], "kills_in_clutch": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -113664,16 +110892,16 @@ export default { }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 2781 + 2529 ], "clutcher_steam_id": [ - 2781 + 2529 ], "kills_in_clutch": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -113698,16 +110926,16 @@ export default { }, "v_match_clutches_variance_order_by": { "against_count": [ - 2781 + 2529 ], "clutcher_steam_id": [ - 2781 + 2529 ], "kills_in_clutch": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -113724,16 +110952,16 @@ export default { 38 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "victim_side": [ 78 @@ -113750,10 +110978,10 @@ export default { }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 4977 + 4785 ], "nodes": [ - 4975 + 4783 ], "__typename": [ 78 @@ -113761,13 +110989,13 @@ export default { }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 4978 + 4786 ], "count": [ 38, { "columns": [ - 4983, + 4791, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -113776,31 +111004,31 @@ export default { } ], "max": [ - 4980 + 4788 ], "min": [ - 4981 + 4789 ], "stddev": [ - 4984 + 4792 ], "stddev_pop": [ - 4985 + 4793 ], "stddev_samp": [ - 4986 + 4794 ], "sum": [ - 4989 + 4797 ], "var_pop": [ - 4990 + 4798 ], "var_samp": [ - 4991 + 4799 ], "variance": [ - 4992 + 4800 ], "__typename": [ 78 @@ -113822,13 +111050,13 @@ export default { }, "v_match_kill_pairs_bool_exp": { "_and": [ - 4979 + 4787 ], "_not": [ - 4979 + 4787 ], "_or": [ - 4979 + 4787 ], "killer_side": [ 80 @@ -113840,16 +111068,16 @@ export default { 39 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "victim_side": [ 80 @@ -113875,10 +111103,10 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "victim_side": [ 78 @@ -113904,10 +111132,10 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "victim_side": [ 78 @@ -113924,34 +111152,34 @@ export default { }, "v_match_kill_pairs_order_by": { "killer_side": [ - 2781 + 2529 ], "killer_steam_id": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "victim_side": [ - 2781 + 2529 ], "victim_steam_id": [ - 2781 + 2529 ], "weapon": [ - 2781 + 2529 ], "__typename": [ 78 @@ -114002,7 +111230,7 @@ export default { }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 4988 + 4796 ], "ordering": [ 236 @@ -114022,10 +111250,10 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "victim_side": [ 78 @@ -114098,22 +111326,22 @@ export default { }, "v_match_lineup_buy_types": { "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_lineup": [ - 2276 + 2024 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "matchup": [ 78 @@ -114133,10 +111361,10 @@ export default { }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 4995 + 4803 ], "nodes": [ - 4993 + 4801 ], "__typename": [ 78 @@ -114144,13 +111372,13 @@ export default { }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 4996 + 4804 ], "count": [ 38, { "columns": [ - 5001, + 4809, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -114159,31 +111387,31 @@ export default { } ], "max": [ - 4998 + 4806 ], "min": [ - 4999 + 4807 ], "stddev": [ - 5002 + 4810 ], "stddev_pop": [ - 5003 + 4811 ], "stddev_samp": [ - 5004 + 4812 ], "sum": [ - 5007 + 4815 ], "var_pop": [ - 5008 + 4816 ], "var_samp": [ - 5009 + 4817 ], "variance": [ - 5010 + 4818 ], "__typename": [ 78 @@ -114202,31 +111430,31 @@ export default { }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 4997 + 4805 ], "_not": [ - 4997 + 4805 ], "_or": [ - 4997 + 4805 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_lineup": [ - 2285 + 2033 ], "match_lineup_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "matchup": [ 80 @@ -114246,13 +111474,13 @@ export default { }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "matchup": [ 78 @@ -114272,13 +111500,13 @@ export default { }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "matchup": [ 78 @@ -114298,34 +111526,34 @@ export default { }, "v_match_lineup_buy_types_order_by": { "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_lineup": [ - 2296 + 2044 ], "match_lineup_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "matchup": [ - 2781 + 2529 ], "rounds": [ - 2781 + 2529 ], "side": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -114367,7 +111595,7 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 5006 + 4814 ], "ordering": [ 236 @@ -114378,13 +111606,13 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "matchup": [ 78 @@ -114460,22 +111688,22 @@ export default { 38 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_lineup": [ - 2276 + 2024 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "opening_attempts": [ 38 @@ -114516,10 +111744,10 @@ export default { }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 5013 + 4821 ], "nodes": [ - 5011 + 4819 ], "__typename": [ 78 @@ -114527,13 +111755,13 @@ export default { }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 5014 + 4822 ], "count": [ 38, { "columns": [ - 5019, + 4827, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -114542,31 +111770,31 @@ export default { } ], "max": [ - 5016 + 4824 ], "min": [ - 5017 + 4825 ], "stddev": [ - 5020 + 4828 ], "stddev_pop": [ - 5021 + 4829 ], "stddev_samp": [ - 5022 + 4830 ], "sum": [ - 5025 + 4833 ], "var_pop": [ - 5026 + 4834 ], "var_samp": [ - 5027 + 4835 ], "variance": [ - 5028 + 4836 ], "__typename": [ 78 @@ -114621,13 +111849,13 @@ export default { }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 5015 + 4823 ], "_not": [ - 5015 + 4823 ], "_or": [ - 5015 + 4823 ], "man_adv_rounds": [ 39 @@ -114642,22 +111870,22 @@ export default { 39 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_lineup": [ - 2285 + 2033 ], "match_lineup_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "opening_attempts": [ 39 @@ -114710,13 +111938,13 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "opening_attempts": [ 38 @@ -114769,13 +111997,13 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "opening_attempts": [ 38 @@ -114816,67 +112044,67 @@ export default { }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 2781 + 2529 ], "man_adv_wins": [ - 2781 + 2529 ], "man_dis_rounds": [ - 2781 + 2529 ], "man_dis_wins": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_lineup": [ - 2296 + 2044 ], "match_lineup_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "opening_attempts": [ - 2781 + 2529 ], "opening_wins": [ - 2781 + 2529 ], "pistol_rounds": [ - 2781 + 2529 ], "pistol_wins": [ - 2781 + 2529 ], "round_wins": [ - 2781 + 2529 ], "rounds": [ - 2781 + 2529 ], "side": [ - 2781 + 2529 ], "won_buy_eco": [ - 2781 + 2529 ], "won_buy_force": [ - 2781 + 2529 ], "won_buy_full": [ - 2781 + 2529 ], "won_buy_pistol": [ - 2781 + 2529 ], "__typename": [ 78 @@ -115026,7 +112254,7 @@ export default { }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 5024 + 4832 ], "ordering": [ 236 @@ -115049,13 +112277,13 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "opening_attempts": [ 38 @@ -115287,7 +112515,7 @@ export default { 3 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 @@ -115298,10 +112526,10 @@ export default { }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 5031 + 4839 ], "nodes": [ - 5029 + 4837 ], "__typename": [ 78 @@ -115309,13 +112537,13 @@ export default { }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 5032 + 4840 ], "count": [ 38, { "columns": [ - 5040, + 4848, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -115324,31 +112552,31 @@ export default { } ], "max": [ - 5036 + 4844 ], "min": [ - 5037 + 4845 ], "stddev": [ - 5042 + 4850 ], "stddev_pop": [ - 5043 + 4851 ], "stddev_samp": [ - 5044 + 4852 ], "sum": [ - 5047 + 4855 ], "var_pop": [ - 5049 + 4857 ], "var_samp": [ - 5050 + 4858 ], "variance": [ - 5051 + 4859 ], "__typename": [ 78 @@ -115364,19 +112592,19 @@ export default { }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 5033 + 4841 ], "_not": [ - 5033 + 4841 ], "_or": [ - 5033 + 4841 ], "has_backup_file": [ 4 ], "match_map_id": [ - 4764 + 4623 ], "round": [ 39 @@ -115398,7 +112626,7 @@ export default { 3 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 @@ -115409,7 +112637,7 @@ export default { }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 4762 + 4621 ], "round": [ 38 @@ -115420,7 +112648,7 @@ export default { }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 4762 + 4621 ], "round": [ 38 @@ -115434,7 +112662,7 @@ export default { 38 ], "returning": [ - 5029 + 4837 ], "__typename": [ 78 @@ -115442,13 +112670,13 @@ export default { }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -115460,7 +112688,7 @@ export default { 3 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 @@ -115495,7 +112723,7 @@ export default { }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 5046 + 4854 ], "ordering": [ 236 @@ -115509,7 +112737,7 @@ export default { 3 ], "match_map_id": [ - 4762 + 4621 ], "round": [ 38 @@ -115528,13 +112756,13 @@ export default { }, "v_match_map_backup_rounds_updates": { "_inc": [ - 5034 + 4842 ], "_set": [ - 5041 + 4849 ], "where": [ - 5033 + 4841 ], "__typename": [ 78 @@ -115572,28 +112800,28 @@ export default { 38 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_lineup": [ - 2276 + 2024 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "matchup": [ 78 ], "player": [ - 3739 + 3487 ], "rounds": [ 38 @@ -115610,10 +112838,10 @@ export default { }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 5054 + 4862 ], "nodes": [ - 5052 + 4860 ], "__typename": [ 78 @@ -115621,13 +112849,13 @@ export default { }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 5055 + 4863 ], "count": [ 38, { "columns": [ - 5060, + 4868, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -115636,31 +112864,31 @@ export default { } ], "max": [ - 5057 + 4865 ], "min": [ - 5058 + 4866 ], "stddev": [ - 5061 + 4869 ], "stddev_pop": [ - 5062 + 4870 ], "stddev_samp": [ - 5063 + 4871 ], "sum": [ - 5066 + 4874 ], "var_pop": [ - 5067 + 4875 ], "var_samp": [ - 5068 + 4876 ], "variance": [ - 5069 + 4877 ], "__typename": [ 78 @@ -115685,13 +112913,13 @@ export default { }, "v_match_player_buy_types_bool_exp": { "_and": [ - 5056 + 4864 ], "_not": [ - 5056 + 4864 ], "_or": [ - 5056 + 4864 ], "deaths": [ 39 @@ -115700,28 +112928,28 @@ export default { 39 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_lineup": [ - 2285 + 2033 ], "match_lineup_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "matchup": [ 80 ], "player": [ - 3743 + 3491 ], "rounds": [ 39 @@ -115744,13 +112972,13 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "matchup": [ 78 @@ -115776,13 +113004,13 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "matchup": [ 78 @@ -115802,43 +113030,43 @@ export default { }, "v_match_player_buy_types_order_by": { "deaths": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_lineup": [ - 2296 + 2044 ], "match_lineup_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "matchup": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "rounds": [ - 2781 + 2529 ], "side": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -115898,7 +113126,7 @@ export default { }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 5065 + 4873 ], "ordering": [ 236 @@ -115915,13 +113143,13 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "matchup": [ 78 @@ -116015,25 +113243,25 @@ export default { 38 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_lineup": [ - 2276 + 2024 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3739 + 3487 ], "side": [ 78 @@ -116053,10 +113281,10 @@ export default { }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 5074 + 4882 ], "nodes": [ - 5070 + 4878 ], "__typename": [ 78 @@ -116064,7 +113292,7 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 5073 + 4881 ], "__typename": [ 78 @@ -116072,13 +113300,13 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 5086 + 4894 ], "distinct": [ 3 ], "filter": [ - 5079 + 4887 ], "predicate": [ 39 @@ -116089,13 +113317,13 @@ export default { }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 5077 + 4885 ], "count": [ 38, { "columns": [ - 5086, + 4894, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -116104,31 +113332,31 @@ export default { } ], "max": [ - 5081 + 4889 ], "min": [ - 5083 + 4891 ], "stddev": [ - 5087 + 4895 ], "stddev_pop": [ - 5089 + 4897 ], "stddev_samp": [ - 5091 + 4899 ], "sum": [ - 5095 + 4903 ], "var_pop": [ - 5097 + 4905 ], "var_samp": [ - 5099 + 4907 ], "variance": [ - 5101 + 4909 ], "__typename": [ 78 @@ -116136,37 +113364,37 @@ export default { }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 5078 + 4886 ], "count": [ - 2781 + 2529 ], "max": [ - 5082 + 4890 ], "min": [ - 5084 + 4892 ], "stddev": [ - 5088 + 4896 ], "stddev_pop": [ - 5090 + 4898 ], "stddev_samp": [ - 5092 + 4900 ], "sum": [ - 5096 + 4904 ], "var_pop": [ - 5098 + 4906 ], "var_samp": [ - 5100 + 4908 ], "variance": [ - 5102 + 4910 ], "__typename": [ 78 @@ -116174,7 +113402,7 @@ export default { }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 5080 + 4888 ], "__typename": [ 78 @@ -116202,19 +113430,19 @@ export default { }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "traded_deaths": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -116222,13 +113450,13 @@ export default { }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 5079 + 4887 ], "_not": [ - 5079 + 4887 ], "_or": [ - 5079 + 4887 ], "attempts": [ 39 @@ -116237,25 +113465,25 @@ export default { 39 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_lineup": [ - 2285 + 2033 ], "match_lineup_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "player": [ - 3743 + 3491 ], "side": [ 80 @@ -116281,25 +113509,25 @@ export default { 38 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_lineup": [ - 2294 + 2042 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map": [ - 2452 + 2200 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3750 + 3498 ], "side": [ 78 @@ -116325,13 +113553,13 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "side": [ 78 @@ -116351,31 +113579,31 @@ export default { }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_lineup_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "side": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "traded_deaths": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -116389,13 +113617,13 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "side": [ 78 @@ -116415,31 +113643,31 @@ export default { }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_lineup_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "side": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "traded_deaths": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -116447,43 +113675,43 @@ export default { }, "v_match_player_opening_duels_order_by": { "attempts": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_lineup": [ - 2296 + 2044 ], "match_lineup_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "side": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "traded_deaths": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -116512,19 +113740,19 @@ export default { }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "traded_deaths": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -116552,19 +113780,19 @@ export default { }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "traded_deaths": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -116592,19 +113820,19 @@ export default { }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "traded_deaths": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -116612,7 +113840,7 @@ export default { }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 5094 + 4902 ], "ordering": [ 236 @@ -116629,13 +113857,13 @@ export default { 38 ], "match_id": [ - 4762 + 4621 ], "match_lineup_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "side": [ 78 @@ -116675,19 +113903,19 @@ export default { }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "traded_deaths": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -116715,19 +113943,19 @@ export default { }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "traded_deaths": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -116755,19 +113983,19 @@ export default { }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "traded_deaths": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -116795,19 +114023,19 @@ export default { }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "traded_deaths": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -116821,10 +114049,10 @@ export default { 180 ], "nemsis": [ - 3739 + 3487 ], "player": [ - 3739 + 3487 ], "victim_id": [ 180 @@ -116835,10 +114063,10 @@ export default { }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 5105 + 4913 ], "nodes": [ - 5103 + 4911 ], "__typename": [ 78 @@ -116846,13 +114074,13 @@ export default { }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 5106 + 4914 ], "count": [ 38, { "columns": [ - 5111, + 4919, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -116861,31 +114089,31 @@ export default { } ], "max": [ - 5108 + 4916 ], "min": [ - 5109 + 4917 ], "stddev": [ - 5112 + 4920 ], "stddev_pop": [ - 5113 + 4921 ], "stddev_samp": [ - 5114 + 4922 ], "sum": [ - 5117 + 4925 ], "var_pop": [ - 5118 + 4926 ], "var_samp": [ - 5119 + 4927 ], "variance": [ - 5120 + 4928 ], "__typename": [ 78 @@ -116907,13 +114135,13 @@ export default { }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 5107 + 4915 ], "_not": [ - 5107 + 4915 ], "_or": [ - 5107 + 4915 ], "attacker_id": [ 182 @@ -116922,10 +114150,10 @@ export default { 182 ], "nemsis": [ - 3743 + 3491 ], "player": [ - 3743 + 3491 ], "victim_id": [ 182 @@ -116964,19 +114192,19 @@ export default { }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 2781 + 2529 ], "kill_count": [ - 2781 + 2529 ], "nemsis": [ - 3752 + 3500 ], "player": [ - 3752 + 3500 ], "victim_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -117027,7 +114255,7 @@ export default { }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 5116 + 4924 ], "ordering": [ 236 @@ -117111,7 +114339,7 @@ export default { 180 ], "player": [ - 3739 + 3487 ], "player_steam_id": [ 180 @@ -117128,10 +114356,10 @@ export default { }, "v_player_damage_aggregate": { "aggregate": [ - 5123 + 4931 ], "nodes": [ - 5121 + 4929 ], "__typename": [ 78 @@ -117139,13 +114367,13 @@ export default { }, "v_player_damage_aggregate_fields": { "avg": [ - 5124 + 4932 ], "count": [ 38, { "columns": [ - 5129, + 4937, "[v_player_damage_select_column!]" ], "distinct": [ @@ -117154,31 +114382,31 @@ export default { } ], "max": [ - 5126 + 4934 ], "min": [ - 5127 + 4935 ], "stddev": [ - 5130 + 4938 ], "stddev_pop": [ - 5131 + 4939 ], "stddev_samp": [ - 5132 + 4940 ], "sum": [ - 5135 + 4943 ], "var_pop": [ - 5136 + 4944 ], "var_samp": [ - 5137 + 4945 ], "variance": [ - 5138 + 4946 ], "__typename": [ 78 @@ -117203,19 +114431,19 @@ export default { }, "v_player_damage_bool_exp": { "_and": [ - 5125 + 4933 ], "_not": [ - 5125 + 4933 ], "_or": [ - 5125 + 4933 ], "avg_damage_per_round": [ 182 ], "player": [ - 3743 + 3491 ], "player_steam_id": [ 182 @@ -117266,19 +114494,19 @@ export default { }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "player_steam_id": [ - 2781 + 2529 ], "total_damage": [ - 2781 + 2529 ], "total_rounds": [ - 2781 + 2529 ], "__typename": [ 78 @@ -117338,7 +114566,7 @@ export default { }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 5134 + 4942 ], "ordering": [ 236 @@ -117434,7 +114662,7 @@ export default { }, "v_player_elo": { "actual_score": [ - 1499 + 1248 ], "assists": [ 38 @@ -117446,7 +114674,7 @@ export default { 38 ], "damage_percent": [ - 1499 + 1248 ], "deaths": [ 38 @@ -117455,16 +114683,16 @@ export default { 38 ], "expected_score": [ - 1499 + 1248 ], "impact": [ - 1499 + 1248 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1248 ], "kills": [ 38 @@ -117476,22 +114704,22 @@ export default { 38 ], "match": [ - 2596 + 2344 ], "match_created_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1499 + 1248 ], "performance_multiplier": [ - 1499 + 1248 ], "player_name": [ 78 @@ -117500,16 +114728,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1499 + 1248 ], "season_id": [ - 4762 + 4621 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1499 + 1248 ], "type": [ 78 @@ -117523,10 +114751,10 @@ export default { }, "v_player_elo_aggregate": { "aggregate": [ - 5153 + 4961 ], "nodes": [ - 5139 + 4947 ], "__typename": [ 78 @@ -117534,31 +114762,31 @@ export default { }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 5142 + 4950 ], "corr": [ - 5143 + 4951 ], "count": [ - 5145 + 4953 ], "covar_samp": [ - 5146 + 4954 ], "max": [ - 5148 + 4956 ], "min": [ - 5149 + 4957 ], "stddev_samp": [ - 5150 + 4958 ], "sum": [ - 5151 + 4959 ], "var_samp": [ - 5152 + 4960 ], "__typename": [ 78 @@ -117566,16 +114794,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 5166 + 4974 ], "distinct": [ 3 ], "filter": [ - 5158 + 4966 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -117583,16 +114811,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 5144 + 4952 ], "distinct": [ 3 ], "filter": [ - 5158 + 4966 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -117600,10 +114828,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 5167 + 4975 ], "Y": [ - 5167 + 4975 ], "__typename": [ 78 @@ -117611,13 +114839,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 5165 + 4973 ], "distinct": [ 3 ], "filter": [ - 5158 + 4966 ], "predicate": [ 39 @@ -117628,16 +114856,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 5147 + 4955 ], "distinct": [ 3 ], "filter": [ - 5158 + 4966 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -117645,10 +114873,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5168 + 4976 ], "Y": [ - 5168 + 4976 ], "__typename": [ 78 @@ -117656,16 +114884,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 5169 + 4977 ], "distinct": [ 3 ], "filter": [ - 5158 + 4966 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -117673,16 +114901,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 5170 + 4978 ], "distinct": [ 3 ], "filter": [ - 5158 + 4966 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -117690,16 +114918,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5171 + 4979 ], "distinct": [ 3 ], "filter": [ - 5158 + 4966 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -117707,16 +114935,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 5172 + 4980 ], "distinct": [ 3 ], "filter": [ - 5158 + 4966 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -117724,16 +114952,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 5173 + 4981 ], "distinct": [ 3 ], "filter": [ - 5158 + 4966 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -117741,13 +114969,13 @@ export default { }, "v_player_elo_aggregate_fields": { "avg": [ - 5156 + 4964 ], "count": [ 38, { "columns": [ - 5165, + 4973, "[v_player_elo_select_column!]" ], "distinct": [ @@ -117756,31 +114984,31 @@ export default { } ], "max": [ - 5160 + 4968 ], "min": [ - 5162 + 4970 ], "stddev": [ - 5174 + 4982 ], "stddev_pop": [ - 5176 + 4984 ], "stddev_samp": [ - 5178 + 4986 ], "sum": [ - 5182 + 4990 ], "var_pop": [ - 5184 + 4992 ], "var_samp": [ - 5186 + 4994 ], "variance": [ - 5188 + 4996 ], "__typename": [ 78 @@ -117788,37 +115016,37 @@ export default { }, "v_player_elo_aggregate_order_by": { "avg": [ - 5157 + 4965 ], "count": [ - 2781 + 2529 ], "max": [ - 5161 + 4969 ], "min": [ - 5163 + 4971 ], "stddev": [ - 5175 + 4983 ], "stddev_pop": [ - 5177 + 4985 ], "stddev_samp": [ - 5179 + 4987 ], "sum": [ - 5183 + 4991 ], "var_pop": [ - 5185 + 4993 ], "var_samp": [ - 5187 + 4995 ], "variance": [ - 5189 + 4997 ], "__typename": [ 78 @@ -117826,7 +115054,7 @@ export default { }, "v_player_elo_arr_rel_insert_input": { "data": [ - 5159 + 4967 ], "__typename": [ 78 @@ -117902,67 +115130,67 @@ export default { }, "v_player_elo_avg_order_by": { "actual_score": [ - 2781 + 2529 ], "assists": [ - 2781 + 2529 ], "current_elo": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_percent": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "elo_change": [ - 2781 + 2529 ], "expected_score": [ - 2781 + 2529 ], "impact": [ - 2781 + 2529 ], "k_factor": [ - 2781 + 2529 ], "kda": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "map_losses": [ - 2781 + 2529 ], "map_wins": [ - 2781 + 2529 ], "opponent_team_elo_avg": [ - 2781 + 2529 ], "performance_multiplier": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "player_team_elo_avg": [ - 2781 + 2529 ], "series_multiplier": [ - 2781 + 2529 ], "team_avg_kda": [ - 2781 + 2529 ], "updated_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -117970,16 +115198,16 @@ export default { }, "v_player_elo_bool_exp": { "_and": [ - 5158 + 4966 ], "_not": [ - 5158 + 4966 ], "_or": [ - 5158 + 4966 ], "actual_score": [ - 1500 + 1249 ], "assists": [ 39 @@ -117991,7 +115219,7 @@ export default { 39 ], "damage_percent": [ - 1500 + 1249 ], "deaths": [ 39 @@ -118000,16 +115228,16 @@ export default { 39 ], "expected_score": [ - 1500 + 1249 ], "impact": [ - 1500 + 1249 ], "k_factor": [ 39 ], "kda": [ - 1500 + 1249 ], "kills": [ 39 @@ -118021,22 +115249,22 @@ export default { 39 ], "match": [ - 2605 + 2353 ], "match_created_at": [ - 4325 + 4077 ], "match_id": [ - 4764 + 4623 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1500 + 1249 ], "performance_multiplier": [ - 1500 + 1249 ], "player_name": [ 80 @@ -118045,16 +115273,16 @@ export default { 182 ], "player_team_elo_avg": [ - 1500 + 1249 ], "season_id": [ - 4764 + 4623 ], "series_multiplier": [ 39 ], "team_avg_kda": [ - 1500 + 1249 ], "type": [ 80 @@ -118068,7 +115296,7 @@ export default { }, "v_player_elo_insert_input": { "actual_score": [ - 1499 + 1248 ], "assists": [ 38 @@ -118080,7 +115308,7 @@ export default { 38 ], "damage_percent": [ - 1499 + 1248 ], "deaths": [ 38 @@ -118089,16 +115317,16 @@ export default { 38 ], "expected_score": [ - 1499 + 1248 ], "impact": [ - 1499 + 1248 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1248 ], "kills": [ 38 @@ -118110,22 +115338,22 @@ export default { 38 ], "match": [ - 2614 + 2362 ], "match_created_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1499 + 1248 ], "performance_multiplier": [ - 1499 + 1248 ], "player_name": [ 78 @@ -118134,16 +115362,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1499 + 1248 ], "season_id": [ - 4762 + 4621 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1499 + 1248 ], "type": [ 78 @@ -118157,7 +115385,7 @@ export default { }, "v_player_elo_max_fields": { "actual_score": [ - 1499 + 1248 ], "assists": [ 38 @@ -118169,7 +115397,7 @@ export default { 38 ], "damage_percent": [ - 1499 + 1248 ], "deaths": [ 38 @@ -118178,16 +115406,16 @@ export default { 38 ], "expected_score": [ - 1499 + 1248 ], "impact": [ - 1499 + 1248 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1248 ], "kills": [ 38 @@ -118199,19 +115427,19 @@ export default { 38 ], "match_created_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1499 + 1248 ], "performance_multiplier": [ - 1499 + 1248 ], "player_name": [ 78 @@ -118220,16 +115448,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1499 + 1248 ], "season_id": [ - 4762 + 4621 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1499 + 1248 ], "type": [ 78 @@ -118243,85 +115471,85 @@ export default { }, "v_player_elo_max_order_by": { "actual_score": [ - 2781 + 2529 ], "assists": [ - 2781 + 2529 ], "current_elo": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_percent": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "elo_change": [ - 2781 + 2529 ], "expected_score": [ - 2781 + 2529 ], "impact": [ - 2781 + 2529 ], "k_factor": [ - 2781 + 2529 ], "kda": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "map_losses": [ - 2781 + 2529 ], "map_wins": [ - 2781 + 2529 ], "match_created_at": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_result": [ - 2781 + 2529 ], "opponent_team_elo_avg": [ - 2781 + 2529 ], "performance_multiplier": [ - 2781 + 2529 ], "player_name": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "player_team_elo_avg": [ - 2781 + 2529 ], "season_id": [ - 2781 + 2529 ], "series_multiplier": [ - 2781 + 2529 ], "team_avg_kda": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "updated_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -118329,7 +115557,7 @@ export default { }, "v_player_elo_min_fields": { "actual_score": [ - 1499 + 1248 ], "assists": [ 38 @@ -118341,7 +115569,7 @@ export default { 38 ], "damage_percent": [ - 1499 + 1248 ], "deaths": [ 38 @@ -118350,16 +115578,16 @@ export default { 38 ], "expected_score": [ - 1499 + 1248 ], "impact": [ - 1499 + 1248 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1248 ], "kills": [ 38 @@ -118371,19 +115599,19 @@ export default { 38 ], "match_created_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1499 + 1248 ], "performance_multiplier": [ - 1499 + 1248 ], "player_name": [ 78 @@ -118392,16 +115620,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1499 + 1248 ], "season_id": [ - 4762 + 4621 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1499 + 1248 ], "type": [ 78 @@ -118415,85 +115643,85 @@ export default { }, "v_player_elo_min_order_by": { "actual_score": [ - 2781 + 2529 ], "assists": [ - 2781 + 2529 ], "current_elo": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_percent": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "elo_change": [ - 2781 + 2529 ], "expected_score": [ - 2781 + 2529 ], "impact": [ - 2781 + 2529 ], "k_factor": [ - 2781 + 2529 ], "kda": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "map_losses": [ - 2781 + 2529 ], "map_wins": [ - 2781 + 2529 ], "match_created_at": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_result": [ - 2781 + 2529 ], "opponent_team_elo_avg": [ - 2781 + 2529 ], "performance_multiplier": [ - 2781 + 2529 ], "player_name": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "player_team_elo_avg": [ - 2781 + 2529 ], "season_id": [ - 2781 + 2529 ], "series_multiplier": [ - 2781 + 2529 ], "team_avg_kda": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "updated_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -118501,88 +115729,88 @@ export default { }, "v_player_elo_order_by": { "actual_score": [ - 2781 + 2529 ], "assists": [ - 2781 + 2529 ], "current_elo": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_percent": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "elo_change": [ - 2781 + 2529 ], "expected_score": [ - 2781 + 2529 ], "impact": [ - 2781 + 2529 ], "k_factor": [ - 2781 + 2529 ], "kda": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "map_losses": [ - 2781 + 2529 ], "map_wins": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_created_at": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_result": [ - 2781 + 2529 ], "opponent_team_elo_avg": [ - 2781 + 2529 ], "performance_multiplier": [ - 2781 + 2529 ], "player_name": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "player_team_elo_avg": [ - 2781 + 2529 ], "season_id": [ - 2781 + 2529 ], "series_multiplier": [ - 2781 + 2529 ], "team_avg_kda": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "updated_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -118667,67 +115895,67 @@ export default { }, "v_player_elo_stddev_order_by": { "actual_score": [ - 2781 + 2529 ], "assists": [ - 2781 + 2529 ], "current_elo": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_percent": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "elo_change": [ - 2781 + 2529 ], "expected_score": [ - 2781 + 2529 ], "impact": [ - 2781 + 2529 ], "k_factor": [ - 2781 + 2529 ], "kda": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "map_losses": [ - 2781 + 2529 ], "map_wins": [ - 2781 + 2529 ], "opponent_team_elo_avg": [ - 2781 + 2529 ], "performance_multiplier": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "player_team_elo_avg": [ - 2781 + 2529 ], "series_multiplier": [ - 2781 + 2529 ], "team_avg_kda": [ - 2781 + 2529 ], "updated_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -118803,67 +116031,67 @@ export default { }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 2781 + 2529 ], "assists": [ - 2781 + 2529 ], "current_elo": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_percent": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "elo_change": [ - 2781 + 2529 ], "expected_score": [ - 2781 + 2529 ], "impact": [ - 2781 + 2529 ], "k_factor": [ - 2781 + 2529 ], "kda": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "map_losses": [ - 2781 + 2529 ], "map_wins": [ - 2781 + 2529 ], "opponent_team_elo_avg": [ - 2781 + 2529 ], "performance_multiplier": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "player_team_elo_avg": [ - 2781 + 2529 ], "series_multiplier": [ - 2781 + 2529 ], "team_avg_kda": [ - 2781 + 2529 ], "updated_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -118939,67 +116167,67 @@ export default { }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 2781 + 2529 ], "assists": [ - 2781 + 2529 ], "current_elo": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_percent": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "elo_change": [ - 2781 + 2529 ], "expected_score": [ - 2781 + 2529 ], "impact": [ - 2781 + 2529 ], "k_factor": [ - 2781 + 2529 ], "kda": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "map_losses": [ - 2781 + 2529 ], "map_wins": [ - 2781 + 2529 ], "opponent_team_elo_avg": [ - 2781 + 2529 ], "performance_multiplier": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "player_team_elo_avg": [ - 2781 + 2529 ], "series_multiplier": [ - 2781 + 2529 ], "team_avg_kda": [ - 2781 + 2529 ], "updated_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -119007,7 +116235,7 @@ export default { }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 5181 + 4989 ], "ordering": [ 236 @@ -119018,7 +116246,7 @@ export default { }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1499 + 1248 ], "assists": [ 38 @@ -119030,7 +116258,7 @@ export default { 38 ], "damage_percent": [ - 1499 + 1248 ], "deaths": [ 38 @@ -119039,16 +116267,16 @@ export default { 38 ], "expected_score": [ - 1499 + 1248 ], "impact": [ - 1499 + 1248 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1248 ], "kills": [ 38 @@ -119060,19 +116288,19 @@ export default { 38 ], "match_created_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1499 + 1248 ], "performance_multiplier": [ - 1499 + 1248 ], "player_name": [ 78 @@ -119081,16 +116309,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1499 + 1248 ], "season_id": [ - 4762 + 4621 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1499 + 1248 ], "type": [ 78 @@ -119104,7 +116332,7 @@ export default { }, "v_player_elo_sum_fields": { "actual_score": [ - 1499 + 1248 ], "assists": [ 38 @@ -119116,7 +116344,7 @@ export default { 38 ], "damage_percent": [ - 1499 + 1248 ], "deaths": [ 38 @@ -119125,16 +116353,16 @@ export default { 38 ], "expected_score": [ - 1499 + 1248 ], "impact": [ - 1499 + 1248 ], "k_factor": [ 38 ], "kda": [ - 1499 + 1248 ], "kills": [ 38 @@ -119146,22 +116374,22 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1499 + 1248 ], "performance_multiplier": [ - 1499 + 1248 ], "player_steam_id": [ 180 ], "player_team_elo_avg": [ - 1499 + 1248 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1499 + 1248 ], "updated_elo": [ 38 @@ -119172,67 +116400,67 @@ export default { }, "v_player_elo_sum_order_by": { "actual_score": [ - 2781 + 2529 ], "assists": [ - 2781 + 2529 ], "current_elo": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_percent": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "elo_change": [ - 2781 + 2529 ], "expected_score": [ - 2781 + 2529 ], "impact": [ - 2781 + 2529 ], "k_factor": [ - 2781 + 2529 ], "kda": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "map_losses": [ - 2781 + 2529 ], "map_wins": [ - 2781 + 2529 ], "opponent_team_elo_avg": [ - 2781 + 2529 ], "performance_multiplier": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "player_team_elo_avg": [ - 2781 + 2529 ], "series_multiplier": [ - 2781 + 2529 ], "team_avg_kda": [ - 2781 + 2529 ], "updated_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -119308,67 +116536,67 @@ export default { }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 2781 + 2529 ], "assists": [ - 2781 + 2529 ], "current_elo": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_percent": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "elo_change": [ - 2781 + 2529 ], "expected_score": [ - 2781 + 2529 ], "impact": [ - 2781 + 2529 ], "k_factor": [ - 2781 + 2529 ], "kda": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "map_losses": [ - 2781 + 2529 ], "map_wins": [ - 2781 + 2529 ], "opponent_team_elo_avg": [ - 2781 + 2529 ], "performance_multiplier": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "player_team_elo_avg": [ - 2781 + 2529 ], "series_multiplier": [ - 2781 + 2529 ], "team_avg_kda": [ - 2781 + 2529 ], "updated_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -119444,67 +116672,67 @@ export default { }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 2781 + 2529 ], "assists": [ - 2781 + 2529 ], "current_elo": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_percent": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "elo_change": [ - 2781 + 2529 ], "expected_score": [ - 2781 + 2529 ], "impact": [ - 2781 + 2529 ], "k_factor": [ - 2781 + 2529 ], "kda": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "map_losses": [ - 2781 + 2529 ], "map_wins": [ - 2781 + 2529 ], "opponent_team_elo_avg": [ - 2781 + 2529 ], "performance_multiplier": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "player_team_elo_avg": [ - 2781 + 2529 ], "series_multiplier": [ - 2781 + 2529 ], "team_avg_kda": [ - 2781 + 2529 ], "updated_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -119580,67 +116808,67 @@ export default { }, "v_player_elo_variance_order_by": { "actual_score": [ - 2781 + 2529 ], "assists": [ - 2781 + 2529 ], "current_elo": [ - 2781 + 2529 ], "damage": [ - 2781 + 2529 ], "damage_percent": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "elo_change": [ - 2781 + 2529 ], "expected_score": [ - 2781 + 2529 ], "impact": [ - 2781 + 2529 ], "k_factor": [ - 2781 + 2529 ], "kda": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "map_losses": [ - 2781 + 2529 ], "map_wins": [ - 2781 + 2529 ], "opponent_team_elo_avg": [ - 2781 + 2529 ], "performance_multiplier": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "player_team_elo_avg": [ - 2781 + 2529 ], "series_multiplier": [ - 2781 + 2529 ], "team_avg_kda": [ - 2781 + 2529 ], "updated_elo": [ - 2781 + 2529 ], "__typename": [ 78 @@ -119648,19 +116876,19 @@ export default { }, "v_player_map_losses": { "map": [ - 2114 + 1862 ], "map_id": [ - 4762 + 4621 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "started_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -119671,10 +116899,10 @@ export default { }, "v_player_map_losses_aggregate": { "aggregate": [ - 5192 + 5000 ], "nodes": [ - 5190 + 4998 ], "__typename": [ 78 @@ -119682,13 +116910,13 @@ export default { }, "v_player_map_losses_aggregate_fields": { "avg": [ - 5193 + 5001 ], "count": [ 38, { "columns": [ - 5198, + 5006, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -119697,31 +116925,31 @@ export default { } ], "max": [ - 5195 + 5003 ], "min": [ - 5196 + 5004 ], "stddev": [ - 5199 + 5007 ], "stddev_pop": [ - 5200 + 5008 ], "stddev_samp": [ - 5201 + 5009 ], "sum": [ - 5204 + 5012 ], "var_pop": [ - 5205 + 5013 ], "var_samp": [ - 5206 + 5014 ], "variance": [ - 5207 + 5015 ], "__typename": [ 78 @@ -119737,28 +116965,28 @@ export default { }, "v_player_map_losses_bool_exp": { "_and": [ - 5194 + 5002 ], "_not": [ - 5194 + 5002 ], "_or": [ - 5194 + 5002 ], "map": [ - 2123 + 1871 ], "map_id": [ - 4764 + 4623 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "started_at": [ - 4325 + 4077 ], "steam_id": [ 182 @@ -119769,13 +116997,13 @@ export default { }, "v_player_map_losses_max_fields": { "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "started_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -119786,13 +117014,13 @@ export default { }, "v_player_map_losses_min_fields": { "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "started_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -119803,22 +117031,22 @@ export default { }, "v_player_map_losses_order_by": { "map": [ - 2133 + 1881 ], "map_id": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "started_at": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -119851,7 +117079,7 @@ export default { }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 5203 + 5011 ], "ordering": [ 236 @@ -119862,13 +117090,13 @@ export default { }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "started_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -119911,19 +117139,19 @@ export default { }, "v_player_map_wins": { "map": [ - 2114 + 1862 ], "map_id": [ - 4762 + 4621 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "started_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -119934,10 +117162,10 @@ export default { }, "v_player_map_wins_aggregate": { "aggregate": [ - 5210 + 5018 ], "nodes": [ - 5208 + 5016 ], "__typename": [ 78 @@ -119945,13 +117173,13 @@ export default { }, "v_player_map_wins_aggregate_fields": { "avg": [ - 5211 + 5019 ], "count": [ 38, { "columns": [ - 5216, + 5024, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -119960,31 +117188,31 @@ export default { } ], "max": [ - 5213 + 5021 ], "min": [ - 5214 + 5022 ], "stddev": [ - 5217 + 5025 ], "stddev_pop": [ - 5218 + 5026 ], "stddev_samp": [ - 5219 + 5027 ], "sum": [ - 5222 + 5030 ], "var_pop": [ - 5223 + 5031 ], "var_samp": [ - 5224 + 5032 ], "variance": [ - 5225 + 5033 ], "__typename": [ 78 @@ -120000,28 +117228,28 @@ export default { }, "v_player_map_wins_bool_exp": { "_and": [ - 5212 + 5020 ], "_not": [ - 5212 + 5020 ], "_or": [ - 5212 + 5020 ], "map": [ - 2123 + 1871 ], "map_id": [ - 4764 + 4623 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "started_at": [ - 4325 + 4077 ], "steam_id": [ 182 @@ -120032,13 +117260,13 @@ export default { }, "v_player_map_wins_max_fields": { "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "started_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -120049,13 +117277,13 @@ export default { }, "v_player_map_wins_min_fields": { "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "started_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -120066,22 +117294,22 @@ export default { }, "v_player_map_wins_order_by": { "map": [ - 2133 + 1881 ], "map_id": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "started_at": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -120114,7 +117342,7 @@ export default { }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 5221 + 5029 ], "ordering": [ 236 @@ -120125,13 +117353,13 @@ export default { }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "started_at": [ - 4324 + 4076 ], "steam_id": [ 180 @@ -120174,13 +117402,13 @@ export default { }, "v_player_match_head_to_head": { "attacked": [ - 3739 + 3487 ], "attacked_steam_id": [ 180 ], "attacker": [ - 3739 + 3487 ], "attacker_steam_id": [ 180 @@ -120201,10 +117429,10 @@ export default { 180 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -120212,10 +117440,10 @@ export default { }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 5228 + 5036 ], "nodes": [ - 5226 + 5034 ], "__typename": [ 78 @@ -120223,13 +117451,13 @@ export default { }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 5229 + 5037 ], "count": [ 38, { "columns": [ - 5234, + 5042, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -120238,31 +117466,31 @@ export default { } ], "max": [ - 5231 + 5039 ], "min": [ - 5232 + 5040 ], "stddev": [ - 5235 + 5043 ], "stddev_pop": [ - 5236 + 5044 ], "stddev_samp": [ - 5237 + 5045 ], "sum": [ - 5240 + 5048 ], "var_pop": [ - 5241 + 5049 ], "var_samp": [ - 5242 + 5050 ], "variance": [ - 5243 + 5051 ], "__typename": [ 78 @@ -120296,22 +117524,22 @@ export default { }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 5230 + 5038 ], "_not": [ - 5230 + 5038 ], "_or": [ - 5230 + 5038 ], "attacked": [ - 3743 + 3491 ], "attacked_steam_id": [ 182 ], "attacker": [ - 3743 + 3491 ], "attacker_steam_id": [ 182 @@ -120332,10 +117560,10 @@ export default { 182 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -120364,7 +117592,7 @@ export default { 180 ], "match_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -120393,7 +117621,7 @@ export default { 180 ], "match_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -120401,37 +117629,37 @@ export default { }, "v_player_match_head_to_head_order_by": { "attacked": [ - 3752 + 3500 ], "attacked_steam_id": [ - 2781 + 2529 ], "attacker": [ - 3752 + 3500 ], "attacker_steam_id": [ - 2781 + 2529 ], "damage_dealt": [ - 2781 + 2529 ], "flash_count": [ - 2781 + 2529 ], "headshot_kills": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -120518,7 +117746,7 @@ export default { }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 5239 + 5047 ], "ordering": [ 236 @@ -120550,7 +117778,7 @@ export default { 180 ], "match_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -120662,37 +117890,37 @@ export default { }, "v_player_match_map_hltv": { "adr": [ - 2779 + 2527 ], "apr": [ - 2779 + 2527 ], "dpr": [ - 2779 + 2527 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kpr": [ - 2779 + 2527 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3739 + 3487 ], "rounds_played": [ 38 @@ -120706,10 +117934,10 @@ export default { }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 5248 + 5056 ], "nodes": [ - 5244 + 5052 ], "__typename": [ 78 @@ -120717,7 +117945,7 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 5247 + 5055 ], "__typename": [ 78 @@ -120725,13 +117953,13 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 5262 + 5070 ], "distinct": [ 3 ], "filter": [ - 5253 + 5061 ], "predicate": [ 39 @@ -120742,13 +117970,13 @@ export default { }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 5251 + 5059 ], "count": [ 38, { "columns": [ - 5262, + 5070, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -120757,31 +117985,31 @@ export default { } ], "max": [ - 5256 + 5064 ], "min": [ - 5258 + 5066 ], "stddev": [ - 5264 + 5072 ], "stddev_pop": [ - 5266 + 5074 ], "stddev_samp": [ - 5268 + 5076 ], "sum": [ - 5272 + 5080 ], "var_pop": [ - 5275 + 5083 ], "var_samp": [ - 5277 + 5085 ], "variance": [ - 5279 + 5087 ], "__typename": [ 78 @@ -120789,37 +118017,37 @@ export default { }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 5252 + 5060 ], "count": [ - 2781 + 2529 ], "max": [ - 5257 + 5065 ], "min": [ - 5259 + 5067 ], "stddev": [ - 5265 + 5073 ], "stddev_pop": [ - 5267 + 5075 ], "stddev_samp": [ - 5269 + 5077 ], "sum": [ - 5273 + 5081 ], "var_pop": [ - 5276 + 5084 ], "var_samp": [ - 5278 + 5086 ], "variance": [ - 5280 + 5088 ], "__typename": [ 78 @@ -120827,7 +118055,7 @@ export default { }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 5255 + 5063 ], "__typename": [ 78 @@ -120864,28 +118092,28 @@ export default { }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 2781 + 2529 ], "apr": [ - 2781 + 2529 ], "dpr": [ - 2781 + 2529 ], "hltv_rating": [ - 2781 + 2529 ], "kast_pct": [ - 2781 + 2529 ], "kpr": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -120893,46 +118121,46 @@ export default { }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 5253 + 5061 ], "_not": [ - 5253 + 5061 ], "_or": [ - 5253 + 5061 ], "adr": [ - 2780 + 2528 ], "apr": [ - 2780 + 2528 ], "dpr": [ - 2780 + 2528 ], "hltv_rating": [ - 2780 + 2528 ], "kast_pct": [ - 2780 + 2528 ], "kpr": [ - 2780 + 2528 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "player": [ - 3743 + 3491 ], "rounds_played": [ 39 @@ -120946,22 +118174,22 @@ export default { }, "v_player_match_map_hltv_inc_input": { "adr": [ - 2779 + 2527 ], "apr": [ - 2779 + 2527 ], "dpr": [ - 2779 + 2527 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kpr": [ - 2779 + 2527 ], "rounds_played": [ 38 @@ -120975,37 +118203,37 @@ export default { }, "v_player_match_map_hltv_insert_input": { "adr": [ - 2779 + 2527 ], "apr": [ - 2779 + 2527 ], "dpr": [ - 2779 + 2527 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kpr": [ - 2779 + 2527 ], "match": [ - 2614 + 2362 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2452 + 2200 ], "match_map_id": [ - 4762 + 4621 ], "player": [ - 3750 + 3498 ], "rounds_played": [ 38 @@ -121019,28 +118247,28 @@ export default { }, "v_player_match_map_hltv_max_fields": { "adr": [ - 2779 + 2527 ], "apr": [ - 2779 + 2527 ], "dpr": [ - 2779 + 2527 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kpr": [ - 2779 + 2527 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "rounds_played": [ 38 @@ -121054,34 +118282,34 @@ export default { }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 2781 + 2529 ], "apr": [ - 2781 + 2529 ], "dpr": [ - 2781 + 2529 ], "hltv_rating": [ - 2781 + 2529 ], "kast_pct": [ - 2781 + 2529 ], "kpr": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -121089,28 +118317,28 @@ export default { }, "v_player_match_map_hltv_min_fields": { "adr": [ - 2779 + 2527 ], "apr": [ - 2779 + 2527 ], "dpr": [ - 2779 + 2527 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kpr": [ - 2779 + 2527 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "rounds_played": [ 38 @@ -121124,34 +118352,34 @@ export default { }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 2781 + 2529 ], "apr": [ - 2781 + 2529 ], "dpr": [ - 2781 + 2529 ], "hltv_rating": [ - 2781 + 2529 ], "kast_pct": [ - 2781 + 2529 ], "kpr": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_map_id": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -121162,7 +118390,7 @@ export default { 38 ], "returning": [ - 5244 + 5052 ], "__typename": [ 78 @@ -121170,43 +118398,43 @@ export default { }, "v_player_match_map_hltv_order_by": { "adr": [ - 2781 + 2529 ], "apr": [ - 2781 + 2529 ], "dpr": [ - 2781 + 2529 ], "hltv_rating": [ - 2781 + 2529 ], "kast_pct": [ - 2781 + 2529 ], "kpr": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "rounds_played": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -121215,28 +118443,28 @@ export default { "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 2779 + 2527 ], "apr": [ - 2779 + 2527 ], "dpr": [ - 2779 + 2527 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kpr": [ - 2779 + 2527 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "rounds_played": [ 38 @@ -121279,28 +118507,28 @@ export default { }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 2781 + 2529 ], "apr": [ - 2781 + 2529 ], "dpr": [ - 2781 + 2529 ], "hltv_rating": [ - 2781 + 2529 ], "kast_pct": [ - 2781 + 2529 ], "kpr": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -121337,28 +118565,28 @@ export default { }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 2781 + 2529 ], "apr": [ - 2781 + 2529 ], "dpr": [ - 2781 + 2529 ], "hltv_rating": [ - 2781 + 2529 ], "kast_pct": [ - 2781 + 2529 ], "kpr": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -121395,28 +118623,28 @@ export default { }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 2781 + 2529 ], "apr": [ - 2781 + 2529 ], "dpr": [ - 2781 + 2529 ], "hltv_rating": [ - 2781 + 2529 ], "kast_pct": [ - 2781 + 2529 ], "kpr": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -121424,7 +118652,7 @@ export default { }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 5271 + 5079 ], "ordering": [ 236 @@ -121435,28 +118663,28 @@ export default { }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 2779 + 2527 ], "apr": [ - 2779 + 2527 ], "dpr": [ - 2779 + 2527 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kpr": [ - 2779 + 2527 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "rounds_played": [ 38 @@ -121470,22 +118698,22 @@ export default { }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 2779 + 2527 ], "apr": [ - 2779 + 2527 ], "dpr": [ - 2779 + 2527 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kpr": [ - 2779 + 2527 ], "rounds_played": [ 38 @@ -121499,28 +118727,28 @@ export default { }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 2781 + 2529 ], "apr": [ - 2781 + 2529 ], "dpr": [ - 2781 + 2529 ], "hltv_rating": [ - 2781 + 2529 ], "kast_pct": [ - 2781 + 2529 ], "kpr": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -121528,13 +118756,13 @@ export default { }, "v_player_match_map_hltv_updates": { "_inc": [ - 5254 + 5062 ], "_set": [ - 5263 + 5071 ], "where": [ - 5253 + 5061 ], "__typename": [ 78 @@ -121571,28 +118799,28 @@ export default { }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 2781 + 2529 ], "apr": [ - 2781 + 2529 ], "dpr": [ - 2781 + 2529 ], "hltv_rating": [ - 2781 + 2529 ], "kast_pct": [ - 2781 + 2529 ], "kpr": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -121629,28 +118857,28 @@ export default { }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 2781 + 2529 ], "apr": [ - 2781 + 2529 ], "dpr": [ - 2781 + 2529 ], "hltv_rating": [ - 2781 + 2529 ], "kast_pct": [ - 2781 + 2529 ], "kpr": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -121687,28 +118915,28 @@ export default { }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 2781 + 2529 ], "apr": [ - 2781 + 2529 ], "dpr": [ - 2781 + 2529 ], "hltv_rating": [ - 2781 + 2529 ], "kast_pct": [ - 2781 + 2529 ], "kpr": [ - 2781 + 2529 ], "rounds_played": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -121716,52 +118944,52 @@ export default { }, "v_player_match_map_roles": { "adr": [ - 2779 + 2527 ], "awp_kills": [ 38 ], "awp_share": [ - 2779 + 2527 ], "deaths": [ 38 ], "dpr": [ - 2779 + 2527 ], "entry_rate": [ - 2779 + 2527 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kills": [ 38 ], "kpr": [ - 2779 + 2527 ], "lineup_id": [ - 4762 + 4621 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "match_map": [ - 2434 + 2182 ], "match_map_id": [ - 4762 + 4621 ], "open_deaths": [ 38 @@ -121773,7 +119001,7 @@ export default { 38 ], "player": [ - 3739 + 3487 ], "role": [ 78 @@ -121785,7 +119013,7 @@ export default { 180 ], "support_idx": [ - 2779 + 2527 ], "total_kills": [ 38 @@ -121805,10 +119033,10 @@ export default { }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 5283 + 5091 ], "nodes": [ - 5281 + 5089 ], "__typename": [ 78 @@ -121816,13 +119044,13 @@ export default { }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 5284 + 5092 ], "count": [ 38, { "columns": [ - 5289, + 5097, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -121831,31 +119059,31 @@ export default { } ], "max": [ - 5286 + 5094 ], "min": [ - 5287 + 5095 ], "stddev": [ - 5290 + 5098 ], "stddev_pop": [ - 5291 + 5099 ], "stddev_samp": [ - 5292 + 5100 ], "sum": [ - 5295 + 5103 ], "var_pop": [ - 5296 + 5104 ], "var_samp": [ - 5297 + 5105 ], "variance": [ - 5298 + 5106 ], "__typename": [ 78 @@ -121931,61 +119159,61 @@ export default { }, "v_player_match_map_roles_bool_exp": { "_and": [ - 5285 + 5093 ], "_not": [ - 5285 + 5093 ], "_or": [ - 5285 + 5093 ], "adr": [ - 2780 + 2528 ], "awp_kills": [ 39 ], "awp_share": [ - 2780 + 2528 ], "deaths": [ 39 ], "dpr": [ - 2780 + 2528 ], "entry_rate": [ - 2780 + 2528 ], "flash_assists": [ 39 ], "hltv_rating": [ - 2780 + 2528 ], "kast_pct": [ - 2780 + 2528 ], "kills": [ 39 ], "kpr": [ - 2780 + 2528 ], "lineup_id": [ - 4764 + 4623 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "match_map": [ - 2443 + 2191 ], "match_map_id": [ - 4764 + 4623 ], "open_deaths": [ 39 @@ -121997,7 +119225,7 @@ export default { 39 ], "player": [ - 3743 + 3491 ], "role": [ 80 @@ -122009,7 +119237,7 @@ export default { 182 ], "support_idx": [ - 2780 + 2528 ], "total_kills": [ 39 @@ -122029,46 +119257,46 @@ export default { }, "v_player_match_map_roles_max_fields": { "adr": [ - 2779 + 2527 ], "awp_kills": [ 38 ], "awp_share": [ - 2779 + 2527 ], "deaths": [ 38 ], "dpr": [ - 2779 + 2527 ], "entry_rate": [ - 2779 + 2527 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kills": [ 38 ], "kpr": [ - 2779 + 2527 ], "lineup_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "open_deaths": [ 38 @@ -122089,7 +119317,7 @@ export default { 180 ], "support_idx": [ - 2779 + 2527 ], "total_kills": [ 38 @@ -122109,46 +119337,46 @@ export default { }, "v_player_match_map_roles_min_fields": { "adr": [ - 2779 + 2527 ], "awp_kills": [ 38 ], "awp_share": [ - 2779 + 2527 ], "deaths": [ 38 ], "dpr": [ - 2779 + 2527 ], "entry_rate": [ - 2779 + 2527 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kills": [ 38 ], "kpr": [ - 2779 + 2527 ], "lineup_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "open_deaths": [ 38 @@ -122169,7 +119397,7 @@ export default { 180 ], "support_idx": [ - 2779 + 2527 ], "total_kills": [ 38 @@ -122189,88 +119417,88 @@ export default { }, "v_player_match_map_roles_order_by": { "adr": [ - 2781 + 2529 ], "awp_kills": [ - 2781 + 2529 ], "awp_share": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "dpr": [ - 2781 + 2529 ], "entry_rate": [ - 2781 + 2529 ], "flash_assists": [ - 2781 + 2529 ], "hltv_rating": [ - 2781 + 2529 ], "kast_pct": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "kpr": [ - 2781 + 2529 ], "lineup_id": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "match_map": [ - 2454 + 2202 ], "match_map_id": [ - 2781 + 2529 ], "open_deaths": [ - 2781 + 2529 ], "open_kills": [ - 2781 + 2529 ], "opening_attempts": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "role": [ - 2781 + 2529 ], "rounds": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "support_idx": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "trade_kill_successes": [ - 2781 + 2529 ], "traded_death_successes": [ - 2781 + 2529 ], "util_damage": [ - 2781 + 2529 ], "__typename": [ 78 @@ -122483,7 +119711,7 @@ export default { }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 5294 + 5102 ], "ordering": [ 236 @@ -122494,46 +119722,46 @@ export default { }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 2779 + 2527 ], "awp_kills": [ 38 ], "awp_share": [ - 2779 + 2527 ], "deaths": [ 38 ], "dpr": [ - 2779 + 2527 ], "entry_rate": [ - 2779 + 2527 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kills": [ 38 ], "kpr": [ - 2779 + 2527 ], "lineup_id": [ - 4762 + 4621 ], "match_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762 + 4621 ], "open_deaths": [ 38 @@ -122554,7 +119782,7 @@ export default { 180 ], "support_idx": [ - 2779 + 2527 ], "total_kills": [ 38 @@ -122574,37 +119802,37 @@ export default { }, "v_player_match_map_roles_sum_fields": { "adr": [ - 2779 + 2527 ], "awp_kills": [ 38 ], "awp_share": [ - 2779 + 2527 ], "deaths": [ 38 ], "dpr": [ - 2779 + 2527 ], "entry_rate": [ - 2779 + 2527 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kills": [ 38 ], "kpr": [ - 2779 + 2527 ], "open_deaths": [ 38 @@ -122622,7 +119850,7 @@ export default { 180 ], "support_idx": [ - 2779 + 2527 ], "total_kills": [ 38 @@ -122855,19 +120083,19 @@ export default { 38 ], "map": [ - 2114 + 1862 ], "map_id": [ - 4762 + 4621 ], "match": [ - 2596 + 2344 ], "match_created_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_result": [ 78 @@ -122887,10 +120115,10 @@ export default { }, "v_player_match_performance_aggregate": { "aggregate": [ - 5301 + 5109 ], "nodes": [ - 5299 + 5107 ], "__typename": [ 78 @@ -122898,13 +120126,13 @@ export default { }, "v_player_match_performance_aggregate_fields": { "avg": [ - 5302 + 5110 ], "count": [ 38, { "columns": [ - 5307, + 5115, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -122913,31 +120141,31 @@ export default { } ], "max": [ - 5304 + 5112 ], "min": [ - 5305 + 5113 ], "stddev": [ - 5308 + 5116 ], "stddev_pop": [ - 5309 + 5117 ], "stddev_samp": [ - 5310 + 5118 ], "sum": [ - 5313 + 5121 ], "var_pop": [ - 5314 + 5122 ], "var_samp": [ - 5315 + 5123 ], "variance": [ - 5316 + 5124 ], "__typename": [ 78 @@ -122962,13 +120190,13 @@ export default { }, "v_player_match_performance_bool_exp": { "_and": [ - 5303 + 5111 ], "_not": [ - 5303 + 5111 ], "_or": [ - 5303 + 5111 ], "assists": [ 39 @@ -122980,19 +120208,19 @@ export default { 39 ], "map": [ - 2123 + 1871 ], "map_id": [ - 4764 + 4623 ], "match": [ - 2605 + 2353 ], "match_created_at": [ - 4325 + 4077 ], "match_id": [ - 4764 + 4623 ], "match_result": [ 80 @@ -123021,13 +120249,13 @@ export default { 38 ], "map_id": [ - 4762 + 4621 ], "match_created_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_result": [ 78 @@ -123056,13 +120284,13 @@ export default { 38 ], "map_id": [ - 4762 + 4621 ], "match_created_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_result": [ 78 @@ -123082,40 +120310,40 @@ export default { }, "v_player_match_performance_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "map": [ - 2133 + 1881 ], "map_id": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_created_at": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "match_result": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "source": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "__typename": [ 78 @@ -123175,7 +120403,7 @@ export default { }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 5312 + 5120 ], "ordering": [ 236 @@ -123195,13 +120423,13 @@ export default { 38 ], "map_id": [ - 4762 + 4621 ], "match_created_at": [ - 4324 + 4076 ], "match_id": [ - 4762 + 4621 ], "match_result": [ 78 @@ -123289,28 +120517,28 @@ export default { }, "v_player_match_rating": { "adr": [ - 2779 + 2527 ], "dpr": [ - 2779 + 2527 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kpr": [ - 2779 + 2527 ], "match": [ - 2596 + 2344 ], "match_id": [ - 4762 + 4621 ], "player": [ - 3739 + 3487 ], "rounds_played": [ 38 @@ -123324,10 +120552,10 @@ export default { }, "v_player_match_rating_aggregate": { "aggregate": [ - 5319 + 5127 ], "nodes": [ - 5317 + 5125 ], "__typename": [ 78 @@ -123335,13 +120563,13 @@ export default { }, "v_player_match_rating_aggregate_fields": { "avg": [ - 5320 + 5128 ], "count": [ 38, { "columns": [ - 5325, + 5133, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -123350,31 +120578,31 @@ export default { } ], "max": [ - 5322 + 5130 ], "min": [ - 5323 + 5131 ], "stddev": [ - 5326 + 5134 ], "stddev_pop": [ - 5327 + 5135 ], "stddev_samp": [ - 5328 + 5136 ], "sum": [ - 5331 + 5139 ], "var_pop": [ - 5332 + 5140 ], "var_samp": [ - 5333 + 5141 ], "variance": [ - 5334 + 5142 ], "__typename": [ 78 @@ -123408,37 +120636,37 @@ export default { }, "v_player_match_rating_bool_exp": { "_and": [ - 5321 + 5129 ], "_not": [ - 5321 + 5129 ], "_or": [ - 5321 + 5129 ], "adr": [ - 2780 + 2528 ], "dpr": [ - 2780 + 2528 ], "hltv_rating": [ - 2780 + 2528 ], "kast_pct": [ - 2780 + 2528 ], "kpr": [ - 2780 + 2528 ], "match": [ - 2605 + 2353 ], "match_id": [ - 4764 + 4623 ], "player": [ - 3743 + 3491 ], "rounds_played": [ 39 @@ -123452,22 +120680,22 @@ export default { }, "v_player_match_rating_max_fields": { "adr": [ - 2779 + 2527 ], "dpr": [ - 2779 + 2527 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kpr": [ - 2779 + 2527 ], "match_id": [ - 4762 + 4621 ], "rounds_played": [ 38 @@ -123481,22 +120709,22 @@ export default { }, "v_player_match_rating_min_fields": { "adr": [ - 2779 + 2527 ], "dpr": [ - 2779 + 2527 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kpr": [ - 2779 + 2527 ], "match_id": [ - 4762 + 4621 ], "rounds_played": [ 38 @@ -123510,34 +120738,34 @@ export default { }, "v_player_match_rating_order_by": { "adr": [ - 2781 + 2529 ], "dpr": [ - 2781 + 2529 ], "hltv_rating": [ - 2781 + 2529 ], "kast_pct": [ - 2781 + 2529 ], "kpr": [ - 2781 + 2529 ], "match": [ - 2616 + 2364 ], "match_id": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "rounds_played": [ - 2781 + 2529 ], "steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -123624,7 +120852,7 @@ export default { }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 5330 + 5138 ], "ordering": [ 236 @@ -123635,22 +120863,22 @@ export default { }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 2779 + 2527 ], "dpr": [ - 2779 + 2527 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kpr": [ - 2779 + 2527 ], "match_id": [ - 4762 + 4621 ], "rounds_played": [ 38 @@ -123664,19 +120892,19 @@ export default { }, "v_player_match_rating_sum_fields": { "adr": [ - 2779 + 2527 ], "dpr": [ - 2779 + 2527 ], "hltv_rating": [ - 2779 + 2527 ], "kast_pct": [ - 2779 + 2527 ], "kpr": [ - 2779 + 2527 ], "rounds_played": [ 38 @@ -123774,7 +121002,7 @@ export default { 180 ], "match_id": [ - 4762 + 4621 ], "round": [ 38 @@ -123785,10 +121013,10 @@ export default { }, "v_player_multi_kills_aggregate": { "aggregate": [ - 5339 + 5147 ], "nodes": [ - 5335 + 5143 ], "__typename": [ 78 @@ -123796,7 +121024,7 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 5338 + 5146 ], "__typename": [ 78 @@ -123804,13 +121032,13 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5351 + 5159 ], "distinct": [ 3 ], "filter": [ - 5344 + 5152 ], "predicate": [ 39 @@ -123821,13 +121049,13 @@ export default { }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 5342 + 5150 ], "count": [ 38, { "columns": [ - 5351, + 5159, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -123836,31 +121064,31 @@ export default { } ], "max": [ - 5346 + 5154 ], "min": [ - 5348 + 5156 ], "stddev": [ - 5352 + 5160 ], "stddev_pop": [ - 5354 + 5162 ], "stddev_samp": [ - 5356 + 5164 ], "sum": [ - 5360 + 5168 ], "var_pop": [ - 5362 + 5170 ], "var_samp": [ - 5364 + 5172 ], "variance": [ - 5366 + 5174 ], "__typename": [ 78 @@ -123868,37 +121096,37 @@ export default { }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 5343 + 5151 ], "count": [ - 2781 + 2529 ], "max": [ - 5347 + 5155 ], "min": [ - 5349 + 5157 ], "stddev": [ - 5353 + 5161 ], "stddev_pop": [ - 5355 + 5163 ], "stddev_samp": [ - 5357 + 5165 ], "sum": [ - 5361 + 5169 ], "var_pop": [ - 5363 + 5171 ], "var_samp": [ - 5365 + 5173 ], "variance": [ - 5367 + 5175 ], "__typename": [ 78 @@ -123906,7 +121134,7 @@ export default { }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 5345 + 5153 ], "__typename": [ 78 @@ -123928,13 +121156,13 @@ export default { }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -123942,13 +121170,13 @@ export default { }, "v_player_multi_kills_bool_exp": { "_and": [ - 5344 + 5152 ], "_not": [ - 5344 + 5152 ], "_or": [ - 5344 + 5152 ], "attacker_steam_id": [ 182 @@ -123957,7 +121185,7 @@ export default { 182 ], "match_id": [ - 4764 + 4623 ], "round": [ 39 @@ -123974,7 +121202,7 @@ export default { 180 ], "match_id": [ - 4762 + 4621 ], "round": [ 38 @@ -123991,7 +121219,7 @@ export default { 180 ], "match_id": [ - 4762 + 4621 ], "round": [ 38 @@ -124002,16 +121230,16 @@ export default { }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -124025,7 +121253,7 @@ export default { 180 ], "match_id": [ - 4762 + 4621 ], "round": [ 38 @@ -124036,16 +121264,16 @@ export default { }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -124053,16 +121281,16 @@ export default { }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "match_id": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -124085,13 +121313,13 @@ export default { }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -124113,13 +121341,13 @@ export default { }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -124141,13 +121369,13 @@ export default { }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -124155,7 +121383,7 @@ export default { }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5359 + 5167 ], "ordering": [ 236 @@ -124172,7 +121400,7 @@ export default { 180 ], "match_id": [ - 4762 + 4621 ], "round": [ 38 @@ -124197,13 +121425,13 @@ export default { }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -124225,13 +121453,13 @@ export default { }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -124253,13 +121481,13 @@ export default { }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -124281,13 +121509,13 @@ export default { }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "round": [ - 2781 + 2529 ], "__typename": [ 78 @@ -124318,10 +121546,10 @@ export default { }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5370 + 5178 ], "nodes": [ - 5368 + 5176 ], "__typename": [ 78 @@ -124329,13 +121557,13 @@ export default { }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5371 + 5179 ], "count": [ 38, { "columns": [ - 5376, + 5184, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -124344,31 +121572,31 @@ export default { } ], "max": [ - 5373 + 5181 ], "min": [ - 5374 + 5182 ], "stddev": [ - 5377 + 5185 ], "stddev_pop": [ - 5378 + 5186 ], "stddev_samp": [ - 5379 + 5187 ], "sum": [ - 5382 + 5190 ], "var_pop": [ - 5383 + 5191 ], "var_samp": [ - 5384 + 5192 ], "variance": [ - 5385 + 5193 ], "__typename": [ 78 @@ -124390,13 +121618,13 @@ export default { }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5372 + 5180 ], "_not": [ - 5372 + 5180 ], "_or": [ - 5372 + 5180 ], "damage": [ 182 @@ -124468,22 +121696,22 @@ export default { }, "v_player_weapon_damage_order_by": { "damage": [ - 2781 + 2529 ], "hits": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "source": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "with": [ - 2781 + 2529 ], "__typename": [ 78 @@ -124534,7 +121762,7 @@ export default { }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5381 + 5189 ], "ordering": [ 236 @@ -124647,10 +121875,10 @@ export default { }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5388 + 5196 ], "nodes": [ - 5386 + 5194 ], "__typename": [ 78 @@ -124658,13 +121886,13 @@ export default { }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5389 + 5197 ], "count": [ 38, { "columns": [ - 5394, + 5202, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -124673,31 +121901,31 @@ export default { } ], "max": [ - 5391 + 5199 ], "min": [ - 5392 + 5200 ], "stddev": [ - 5395 + 5203 ], "stddev_pop": [ - 5396 + 5204 ], "stddev_samp": [ - 5397 + 5205 ], "sum": [ - 5400 + 5208 ], "var_pop": [ - 5401 + 5209 ], "var_samp": [ - 5402 + 5210 ], "variance": [ - 5403 + 5211 ], "__typename": [ 78 @@ -124719,13 +121947,13 @@ export default { }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5390 + 5198 ], "_not": [ - 5390 + 5198 ], "_or": [ - 5390 + 5198 ], "kill_count": [ 182 @@ -124797,22 +122025,22 @@ export default { }, "v_player_weapon_kills_order_by": { "kill_count": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "rounds": [ - 2781 + 2529 ], "source": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "with": [ - 2781 + 2529 ], "__typename": [ 78 @@ -124863,7 +122091,7 @@ export default { }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5399 + 5207 ], "ordering": [ 236 @@ -124956,16 +122184,16 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "label": [ 78 ], "map_pool": [ - 2095 + 1843 ], "map_pool_id": [ - 4762 + 4621 ], "name": [ 78 @@ -124988,10 +122216,10 @@ export default { }, "v_pool_maps_aggregate": { "aggregate": [ - 5410 + 5218 ], "nodes": [ - 5404 + 5212 ], "__typename": [ 78 @@ -124999,13 +122227,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5407 + 5215 ], "bool_or": [ - 5408 + 5216 ], "count": [ - 5409 + 5217 ], "__typename": [ 78 @@ -125013,13 +122241,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5422 + 5230 ], "distinct": [ 3 ], "filter": [ - 5413 + 5221 ], "predicate": [ 4 @@ -125030,13 +122258,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5423 + 5231 ], "distinct": [ 3 ], "filter": [ - 5413 + 5221 ], "predicate": [ 4 @@ -125047,13 +122275,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5421 + 5229 ], "distinct": [ 3 ], "filter": [ - 5413 + 5221 ], "predicate": [ 39 @@ -125067,7 +122295,7 @@ export default { 38, { "columns": [ - 5421, + 5229, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -125076,10 +122304,10 @@ export default { } ], "max": [ - 5415 + 5223 ], "min": [ - 5417 + 5225 ], "__typename": [ 78 @@ -125087,13 +122315,13 @@ export default { }, "v_pool_maps_aggregate_order_by": { "count": [ - 2781 + 2529 ], "max": [ - 5416 + 5224 ], "min": [ - 5418 + 5226 ], "__typename": [ 78 @@ -125101,7 +122329,7 @@ export default { }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5414 + 5222 ], "__typename": [ 78 @@ -125109,28 +122337,28 @@ export default { }, "v_pool_maps_bool_exp": { "_and": [ - 5413 + 5221 ], "_not": [ - 5413 + 5221 ], "_or": [ - 5413 + 5221 ], "active_pool": [ 4 ], "id": [ - 4764 + 4623 ], "label": [ 80 ], "map_pool": [ - 2098 + 1846 ], "map_pool_id": [ - 4764 + 4623 ], "name": [ 80 @@ -125156,16 +122384,16 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "label": [ 78 ], "map_pool": [ - 2104 + 1852 ], "map_pool_id": [ - 4762 + 4621 ], "name": [ 78 @@ -125188,13 +122416,13 @@ export default { }, "v_pool_maps_max_fields": { "id": [ - 4762 + 4621 ], "label": [ 78 ], "map_pool_id": [ - 4762 + 4621 ], "name": [ 78 @@ -125217,28 +122445,28 @@ export default { }, "v_pool_maps_max_order_by": { "id": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "map_pool_id": [ - 2781 + 2529 ], "name": [ - 2781 + 2529 ], "patch": [ - 2781 + 2529 ], "poster": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "workshop_map_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -125246,13 +122474,13 @@ export default { }, "v_pool_maps_min_fields": { "id": [ - 4762 + 4621 ], "label": [ 78 ], "map_pool_id": [ - 4762 + 4621 ], "name": [ 78 @@ -125275,28 +122503,28 @@ export default { }, "v_pool_maps_min_order_by": { "id": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "map_pool_id": [ - 2781 + 2529 ], "name": [ - 2781 + 2529 ], "patch": [ - 2781 + 2529 ], "poster": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "workshop_map_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -125307,7 +122535,7 @@ export default { 38 ], "returning": [ - 5404 + 5212 ], "__typename": [ 78 @@ -125315,34 +122543,34 @@ export default { }, "v_pool_maps_order_by": { "active_pool": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "label": [ - 2781 + 2529 ], "map_pool": [ - 2106 + 1854 ], "map_pool_id": [ - 2781 + 2529 ], "name": [ - 2781 + 2529 ], "patch": [ - 2781 + 2529 ], "poster": [ - 2781 + 2529 ], "type": [ - 2781 + 2529 ], "workshop_map_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -125356,13 +122584,13 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "label": [ 78 ], "map_pool_id": [ - 4762 + 4621 ], "name": [ 78 @@ -125385,7 +122613,7 @@ export default { }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5426 + 5234 ], "ordering": [ 236 @@ -125399,13 +122627,13 @@ export default { 3 ], "id": [ - 4762 + 4621 ], "label": [ 78 ], "map_pool_id": [ - 4762 + 4621 ], "name": [ 78 @@ -125428,10 +122656,10 @@ export default { }, "v_pool_maps_updates": { "_set": [ - 5424 + 5232 ], "where": [ - 5413 + 5221 ], "__typename": [ 78 @@ -125456,10 +122684,10 @@ export default { }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5430 + 5238 ], "nodes": [ - 5428 + 5236 ], "__typename": [ 78 @@ -125467,13 +122695,13 @@ export default { }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5431 + 5239 ], "count": [ 38, { "columns": [ - 5436, + 5244, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -125482,31 +122710,31 @@ export default { } ], "max": [ - 5433 + 5241 ], "min": [ - 5434 + 5242 ], "stddev": [ - 5437 + 5245 ], "stddev_pop": [ - 5438 + 5246 ], "stddev_samp": [ - 5439 + 5247 ], "sum": [ - 5442 + 5250 ], "var_pop": [ - 5443 + 5251 ], "var_samp": [ - 5444 + 5252 ], "variance": [ - 5445 + 5253 ], "__typename": [ 78 @@ -125531,13 +122759,13 @@ export default { }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5432 + 5240 ], "_not": [ - 5432 + 5240 ], "_or": [ - 5432 + 5240 ], "busy_accounts": [ 39 @@ -125591,16 +122819,16 @@ export default { }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 2781 + 2529 ], "free_accounts": [ - 2781 + 2529 ], "id": [ - 2781 + 2529 ], "total_accounts": [ - 2781 + 2529 ], "__typename": [ 78 @@ -125660,7 +122888,7 @@ export default { }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5441 + 5249 ], "ordering": [ 236 @@ -125762,7 +122990,7 @@ export default { 38 ], "avg_faceit_level": [ - 1499 + 1248 ], "avg_premier": [ 38 @@ -125777,10 +123005,10 @@ export default { 180 ], "team": [ - 4281 + 4029 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -125788,10 +123016,10 @@ export default { }, "v_team_ranks_aggregate": { "aggregate": [ - 5448 + 5256 ], "nodes": [ - 5446 + 5254 ], "__typename": [ 78 @@ -125799,13 +123027,13 @@ export default { }, "v_team_ranks_aggregate_fields": { "avg": [ - 5449 + 5257 ], "count": [ 38, { "columns": [ - 5456, + 5264, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -125814,31 +123042,31 @@ export default { } ], "max": [ - 5452 + 5260 ], "min": [ - 5453 + 5261 ], "stddev": [ - 5457 + 5265 ], "stddev_pop": [ - 5458 + 5266 ], "stddev_samp": [ - 5459 + 5267 ], "sum": [ - 5462 + 5270 ], "var_pop": [ - 5463 + 5271 ], "var_samp": [ - 5464 + 5272 ], "variance": [ - 5465 + 5273 ], "__typename": [ 78 @@ -125872,13 +123100,13 @@ export default { }, "v_team_ranks_bool_exp": { "_and": [ - 5450 + 5258 ], "_not": [ - 5450 + 5258 ], "_or": [ - 5450 + 5258 ], "avg_elo": [ 39 @@ -125887,7 +123115,7 @@ export default { 39 ], "avg_faceit_level": [ - 1500 + 1249 ], "avg_premier": [ 39 @@ -125902,10 +123130,10 @@ export default { 182 ], "team": [ - 4290 + 4040 ], "team_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -125919,7 +123147,7 @@ export default { 38 ], "avg_faceit_level": [ - 1499 + 1248 ], "avg_premier": [ 38 @@ -125934,10 +123162,10 @@ export default { 180 ], "team": [ - 4299 + 4049 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -125951,7 +123179,7 @@ export default { 38 ], "avg_faceit_level": [ - 1499 + 1248 ], "avg_premier": [ 38 @@ -125966,7 +123194,7 @@ export default { 180 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -125980,7 +123208,7 @@ export default { 38 ], "avg_faceit_level": [ - 1499 + 1248 ], "avg_premier": [ 38 @@ -125995,7 +123223,7 @@ export default { 180 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -126003,7 +123231,7 @@ export default { }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5451 + 5259 ], "__typename": [ 78 @@ -126011,31 +123239,31 @@ export default { }, "v_team_ranks_order_by": { "avg_elo": [ - 2781 + 2529 ], "avg_faceit_elo": [ - 2781 + 2529 ], "avg_faceit_level": [ - 2781 + 2529 ], "avg_premier": [ - 2781 + 2529 ], "max_elo": [ - 2781 + 2529 ], "min_elo": [ - 2781 + 2529 ], "roster_size": [ - 2781 + 2529 ], "team": [ - 4301 + 4051 ], "team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -126122,7 +123350,7 @@ export default { }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5461 + 5269 ], "ordering": [ 236 @@ -126139,7 +123367,7 @@ export default { 38 ], "avg_faceit_level": [ - 1499 + 1248 ], "avg_premier": [ 38 @@ -126154,7 +123382,7 @@ export default { 180 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -126168,7 +123396,7 @@ export default { 38 ], "avg_faceit_level": [ - 1499 + 1248 ], "avg_premier": [ 38 @@ -126272,16 +123500,16 @@ export default { 180 ], "reliability_pct": [ - 2779 + 2527 ], "scrims_completed": [ 180 ], "team": [ - 4281 + 4029 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -126289,10 +123517,10 @@ export default { }, "v_team_reputation_aggregate": { "aggregate": [ - 5468 + 5276 ], "nodes": [ - 5466 + 5274 ], "__typename": [ 78 @@ -126300,13 +123528,13 @@ export default { }, "v_team_reputation_aggregate_fields": { "avg": [ - 5469 + 5277 ], "count": [ 38, { "columns": [ - 5476, + 5284, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -126315,31 +123543,31 @@ export default { } ], "max": [ - 5472 + 5280 ], "min": [ - 5473 + 5281 ], "stddev": [ - 5477 + 5285 ], "stddev_pop": [ - 5478 + 5286 ], "stddev_samp": [ - 5479 + 5287 ], "sum": [ - 5482 + 5290 ], "var_pop": [ - 5483 + 5291 ], "var_samp": [ - 5484 + 5292 ], "variance": [ - 5485 + 5293 ], "__typename": [ 78 @@ -126364,13 +123592,13 @@ export default { }, "v_team_reputation_bool_exp": { "_and": [ - 5470 + 5278 ], "_not": [ - 5470 + 5278 ], "_or": [ - 5470 + 5278 ], "late_cancels": [ 182 @@ -126379,16 +123607,16 @@ export default { 182 ], "reliability_pct": [ - 2780 + 2528 ], "scrims_completed": [ 182 ], "team": [ - 4290 + 4040 ], "team_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -126402,16 +123630,16 @@ export default { 180 ], "reliability_pct": [ - 2779 + 2527 ], "scrims_completed": [ 180 ], "team": [ - 4299 + 4049 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -126425,13 +123653,13 @@ export default { 180 ], "reliability_pct": [ - 2779 + 2527 ], "scrims_completed": [ 180 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -126445,13 +123673,13 @@ export default { 180 ], "reliability_pct": [ - 2779 + 2527 ], "scrims_completed": [ 180 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -126459,7 +123687,7 @@ export default { }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5471 + 5279 ], "__typename": [ 78 @@ -126467,22 +123695,22 @@ export default { }, "v_team_reputation_order_by": { "late_cancels": [ - 2781 + 2529 ], "no_shows": [ - 2781 + 2529 ], "reliability_pct": [ - 2781 + 2529 ], "scrims_completed": [ - 2781 + 2529 ], "team": [ - 4301 + 4051 ], "team_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -126542,7 +123770,7 @@ export default { }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5481 + 5289 ], "ordering": [ 236 @@ -126559,13 +123787,13 @@ export default { 180 ], "reliability_pct": [ - 2779 + 2527 ], "scrims_completed": [ 180 ], "team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -126579,7 +123807,7 @@ export default { 180 ], "reliability_pct": [ - 2779 + 2527 ], "scrims_completed": [ 180 @@ -126677,13 +123905,13 @@ export default { 38 ], "stage": [ - 4454 + 4295 ], "team": [ - 4587 + 4428 ], "team_kdr": [ - 1499 + 1248 ], "total_deaths": [ 38 @@ -126692,10 +123920,10 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -126706,10 +123934,10 @@ export default { }, "v_team_stage_results_aggregate": { "aggregate": [ - 5500 + 5308 ], "nodes": [ - 5486 + 5294 ], "__typename": [ 78 @@ -126717,31 +123945,31 @@ export default { }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5489 + 5297 ], "corr": [ - 5490 + 5298 ], "count": [ - 5492 + 5300 ], "covar_samp": [ - 5493 + 5301 ], "max": [ - 5495 + 5303 ], "min": [ - 5496 + 5304 ], "stddev_samp": [ - 5497 + 5305 ], "sum": [ - 5498 + 5306 ], "var_samp": [ - 5499 + 5307 ], "__typename": [ 78 @@ -126749,16 +123977,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5519 + 5327 ], "distinct": [ 3 ], "filter": [ - 5505 + 5313 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -126766,16 +123994,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5491 + 5299 ], "distinct": [ 3 ], "filter": [ - 5505 + 5313 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -126783,10 +124011,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5520 + 5328 ], "Y": [ - 5520 + 5328 ], "__typename": [ 78 @@ -126794,13 +124022,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5518 + 5326 ], "distinct": [ 3 ], "filter": [ - 5505 + 5313 ], "predicate": [ 39 @@ -126811,16 +124039,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5494 + 5302 ], "distinct": [ 3 ], "filter": [ - 5505 + 5313 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -126828,10 +124056,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5521 + 5329 ], "Y": [ - 5521 + 5329 ], "__typename": [ 78 @@ -126839,16 +124067,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5522 + 5330 ], "distinct": [ 3 ], "filter": [ - 5505 + 5313 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -126856,16 +124084,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5523 + 5331 ], "distinct": [ 3 ], "filter": [ - 5505 + 5313 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -126873,16 +124101,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5524 + 5332 ], "distinct": [ 3 ], "filter": [ - 5505 + 5313 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -126890,16 +124118,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5525 + 5333 ], "distinct": [ 3 ], "filter": [ - 5505 + 5313 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -126907,16 +124135,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5526 + 5334 ], "distinct": [ 3 ], "filter": [ - 5505 + 5313 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -126924,13 +124152,13 @@ export default { }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5503 + 5311 ], "count": [ 38, { "columns": [ - 5518, + 5326, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -126939,31 +124167,31 @@ export default { } ], "max": [ - 5509 + 5317 ], "min": [ - 5511 + 5319 ], "stddev": [ - 5528 + 5336 ], "stddev_pop": [ - 5530 + 5338 ], "stddev_samp": [ - 5532 + 5340 ], "sum": [ - 5536 + 5344 ], "var_pop": [ - 5540 + 5348 ], "var_samp": [ - 5542 + 5350 ], "variance": [ - 5544 + 5352 ], "__typename": [ 78 @@ -126971,37 +124199,37 @@ export default { }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5504 + 5312 ], "count": [ - 2781 + 2529 ], "max": [ - 5510 + 5318 ], "min": [ - 5512 + 5320 ], "stddev": [ - 5529 + 5337 ], "stddev_pop": [ - 5531 + 5339 ], "stddev_samp": [ - 5533 + 5341 ], "sum": [ - 5537 + 5345 ], "var_pop": [ - 5541 + 5349 ], "var_samp": [ - 5543 + 5351 ], "variance": [ - 5545 + 5353 ], "__typename": [ 78 @@ -127009,10 +124237,10 @@ export default { }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5508 + 5316 ], "on_conflict": [ - 5515 + 5323 ], "__typename": [ 78 @@ -127073,52 +124301,52 @@ export default { }, "v_team_stage_results_avg_order_by": { "group_number": [ - 2781 + 2529 ], "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -127126,13 +124354,13 @@ export default { }, "v_team_stage_results_bool_exp": { "_and": [ - 5505 + 5313 ], "_not": [ - 5505 + 5313 ], "_or": [ - 5505 + 5313 ], "group_number": [ 39 @@ -127171,13 +124399,13 @@ export default { 39 ], "stage": [ - 4466 + 4307 ], "team": [ - 4596 + 4437 ], "team_kdr": [ - 1500 + 1249 ], "total_deaths": [ 39 @@ -127186,10 +124414,10 @@ export default { 39 ], "tournament_stage_id": [ - 4764 + 4623 ], "tournament_team_id": [ - 4764 + 4623 ], "wins": [ 39 @@ -127237,7 +124465,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1248 ], "total_deaths": [ 38 @@ -127290,13 +124518,13 @@ export default { 38 ], "stage": [ - 4478 + 4319 ], "team": [ - 4605 + 4446 ], "team_kdr": [ - 1499 + 1248 ], "total_deaths": [ 38 @@ -127305,10 +124533,10 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -127355,7 +124583,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1248 ], "total_deaths": [ 38 @@ -127364,10 +124592,10 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -127378,58 +124606,58 @@ export default { }, "v_team_stage_results_max_order_by": { "group_number": [ - 2781 + 2529 ], "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "tournament_stage_id": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -127473,7 +124701,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1248 ], "total_deaths": [ 38 @@ -127482,10 +124710,10 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -127496,58 +124724,58 @@ export default { }, "v_team_stage_results_min_order_by": { "group_number": [ - 2781 + 2529 ], "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "tournament_stage_id": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -127558,7 +124786,7 @@ export default { 38 ], "returning": [ - 5486 + 5294 ], "__typename": [ 78 @@ -127566,10 +124794,10 @@ export default { }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5508 + 5316 ], "on_conflict": [ - 5515 + 5323 ], "__typename": [ 78 @@ -127577,13 +124805,13 @@ export default { }, "v_team_stage_results_on_conflict": { "constraint": [ - 5506 + 5314 ], "update_columns": [ - 5538 + 5346 ], "where": [ - 5505 + 5313 ], "__typename": [ 78 @@ -127591,64 +124819,64 @@ export default { }, "v_team_stage_results_order_by": { "group_number": [ - 2781 + 2529 ], "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "stage": [ - 4480 + 4321 ], "team": [ - 4607 + 4448 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "tournament_stage_id": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -127656,10 +124884,10 @@ export default { }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -127712,7 +124940,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1248 ], "total_deaths": [ 38 @@ -127721,10 +124949,10 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -127788,52 +125016,52 @@ export default { }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 2781 + 2529 ], "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -127894,52 +125122,52 @@ export default { }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 2781 + 2529 ], "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -128000,52 +125228,52 @@ export default { }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 2781 + 2529 ], "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -128053,7 +125281,7 @@ export default { }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5535 + 5343 ], "ordering": [ 236 @@ -128100,7 +125328,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1248 ], "total_deaths": [ 38 @@ -128109,10 +125337,10 @@ export default { 38 ], "tournament_stage_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -128159,7 +125387,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1248 ], "total_deaths": [ 38 @@ -128176,52 +125404,52 @@ export default { }, "v_team_stage_results_sum_order_by": { "group_number": [ - 2781 + 2529 ], "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -128230,13 +125458,13 @@ export default { "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5507 + 5315 ], "_set": [ - 5527 + 5335 ], "where": [ - 5505 + 5313 ], "__typename": [ 78 @@ -128297,52 +125525,52 @@ export default { }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 2781 + 2529 ], "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -128403,52 +125631,52 @@ export default { }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 2781 + 2529 ], "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -128509,52 +125737,52 @@ export default { }, "v_team_stage_results_variance_order_by": { "group_number": [ - 2781 + 2529 ], "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "placement": [ - 2781 + 2529 ], "rank": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -128589,10 +125817,10 @@ export default { 38 ], "team": [ - 4587 + 4428 ], "team_kdr": [ - 1499 + 1248 ], "total_deaths": [ 38 @@ -128601,13 +125829,13 @@ export default { 38 ], "tournament": [ - 4716 + 4557 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -128618,10 +125846,10 @@ export default { }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5560 + 5368 ], "nodes": [ - 5546 + 5354 ], "__typename": [ 78 @@ -128629,31 +125857,31 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5549 + 5357 ], "corr": [ - 5550 + 5358 ], "count": [ - 5552 + 5360 ], "covar_samp": [ - 5553 + 5361 ], "max": [ - 5555 + 5363 ], "min": [ - 5556 + 5364 ], "stddev_samp": [ - 5557 + 5365 ], "sum": [ - 5558 + 5366 ], "var_samp": [ - 5559 + 5367 ], "__typename": [ 78 @@ -128661,16 +125889,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5573 + 5381 ], "distinct": [ 3 ], "filter": [ - 5565 + 5373 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -128678,16 +125906,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5551 + 5359 ], "distinct": [ 3 ], "filter": [ - 5565 + 5373 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -128695,10 +125923,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5574 + 5382 ], "Y": [ - 5574 + 5382 ], "__typename": [ 78 @@ -128706,13 +125934,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5572 + 5380 ], "distinct": [ 3 ], "filter": [ - 5565 + 5373 ], "predicate": [ 39 @@ -128723,16 +125951,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5554 + 5362 ], "distinct": [ 3 ], "filter": [ - 5565 + 5373 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -128740,10 +125968,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5575 + 5383 ], "Y": [ - 5575 + 5383 ], "__typename": [ 78 @@ -128751,16 +125979,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 5576 + 5384 ], "distinct": [ 3 ], "filter": [ - 5565 + 5373 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -128768,16 +125996,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 5577 + 5385 ], "distinct": [ 3 ], "filter": [ - 5565 + 5373 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -128785,16 +126013,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5578 + 5386 ], "distinct": [ 3 ], "filter": [ - 5565 + 5373 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -128802,16 +126030,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 5579 + 5387 ], "distinct": [ 3 ], "filter": [ - 5565 + 5373 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -128819,16 +126047,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5580 + 5388 ], "distinct": [ 3 ], "filter": [ - 5565 + 5373 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -128836,13 +126064,13 @@ export default { }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5563 + 5371 ], "count": [ 38, { "columns": [ - 5572, + 5380, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -128851,31 +126079,31 @@ export default { } ], "max": [ - 5567 + 5375 ], "min": [ - 5569 + 5377 ], "stddev": [ - 5581 + 5389 ], "stddev_pop": [ - 5583 + 5391 ], "stddev_samp": [ - 5585 + 5393 ], "sum": [ - 5589 + 5397 ], "var_pop": [ - 5591 + 5399 ], "var_samp": [ - 5593 + 5401 ], "variance": [ - 5595 + 5403 ], "__typename": [ 78 @@ -128883,37 +126111,37 @@ export default { }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5564 + 5372 ], "count": [ - 2781 + 2529 ], "max": [ - 5568 + 5376 ], "min": [ - 5570 + 5378 ], "stddev": [ - 5582 + 5390 ], "stddev_pop": [ - 5584 + 5392 ], "stddev_samp": [ - 5586 + 5394 ], "sum": [ - 5590 + 5398 ], "var_pop": [ - 5592 + 5400 ], "var_samp": [ - 5594 + 5402 ], "variance": [ - 5596 + 5404 ], "__typename": [ 78 @@ -128921,7 +126149,7 @@ export default { }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5566 + 5374 ], "__typename": [ 78 @@ -128973,43 +126201,43 @@ export default { }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -129017,13 +126245,13 @@ export default { }, "v_team_tournament_results_bool_exp": { "_and": [ - 5565 + 5373 ], "_not": [ - 5565 + 5373 ], "_or": [ - 5565 + 5373 ], "head_to_head_match_wins": [ 39 @@ -129053,10 +126281,10 @@ export default { 39 ], "team": [ - 4596 + 4437 ], "team_kdr": [ - 1500 + 1249 ], "total_deaths": [ 39 @@ -129065,13 +126293,13 @@ export default { 39 ], "tournament": [ - 4727 + 4578 ], "tournament_id": [ - 4764 + 4623 ], "tournament_team_id": [ - 4764 + 4623 ], "wins": [ 39 @@ -129109,10 +126337,10 @@ export default { 38 ], "team": [ - 4605 + 4446 ], "team_kdr": [ - 1499 + 1248 ], "total_deaths": [ 38 @@ -129121,13 +126349,13 @@ export default { 38 ], "tournament": [ - 4736 + 4587 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -129165,7 +126393,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1248 ], "total_deaths": [ 38 @@ -129174,10 +126402,10 @@ export default { 38 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -129188,49 +126416,49 @@ export default { }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -129265,7 +126493,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1248 ], "total_deaths": [ 38 @@ -129274,10 +126502,10 @@ export default { 38 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -129288,49 +126516,49 @@ export default { }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -129338,55 +126566,55 @@ export default { }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team": [ - 4607 + 4448 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "tournament": [ - 4738 + 4589 ], "tournament_id": [ - 2781 + 2529 ], "tournament_team_id": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -129447,43 +126675,43 @@ export default { }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -129535,43 +126763,43 @@ export default { }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -129623,43 +126851,43 @@ export default { }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -129667,7 +126895,7 @@ export default { }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 5588 + 5396 ], "ordering": [ 236 @@ -129705,7 +126933,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1248 ], "total_deaths": [ 38 @@ -129714,10 +126942,10 @@ export default { 38 ], "tournament_id": [ - 4762 + 4621 ], "tournament_team_id": [ - 4762 + 4621 ], "wins": [ 38 @@ -129755,7 +126983,7 @@ export default { 38 ], "team_kdr": [ - 1499 + 1248 ], "total_deaths": [ 38 @@ -129772,43 +127000,43 @@ export default { }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -129860,43 +127088,43 @@ export default { }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -129948,43 +127176,43 @@ export default { }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -130036,43 +127264,43 @@ export default { }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 2781 + 2529 ], "head_to_head_rounds_won": [ - 2781 + 2529 ], "losses": [ - 2781 + 2529 ], "maps_lost": [ - 2781 + 2529 ], "maps_won": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "matches_remaining": [ - 2781 + 2529 ], "rounds_lost": [ - 2781 + 2529 ], "rounds_won": [ - 2781 + 2529 ], "team_kdr": [ - 2781 + 2529 ], "total_deaths": [ - 2781 + 2529 ], "total_kills": [ - 2781 + 2529 ], "wins": [ - 2781 + 2529 ], "__typename": [ 78 @@ -130086,13 +127314,13 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1248 ], "kills": [ 38 @@ -130101,16 +127329,16 @@ export default { 38 ], "player": [ - 3739 + 3487 ], "player_steam_id": [ 180 ], "tournament": [ - 4716 + 4557 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -130118,10 +127346,10 @@ export default { }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 5611 + 5419 ], "nodes": [ - 5597 + 5405 ], "__typename": [ 78 @@ -130129,31 +127357,31 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 5600 + 5408 ], "corr": [ - 5601 + 5409 ], "count": [ - 5603 + 5411 ], "covar_samp": [ - 5604 + 5412 ], "max": [ - 5606 + 5414 ], "min": [ - 5607 + 5415 ], "stddev_samp": [ - 5608 + 5416 ], "sum": [ - 5609 + 5417 ], "var_samp": [ - 5610 + 5418 ], "__typename": [ 78 @@ -130161,16 +127389,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5624 + 5432 ], "distinct": [ 3 ], "filter": [ - 5616 + 5424 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -130178,16 +127406,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5602 + 5410 ], "distinct": [ 3 ], "filter": [ - 5616 + 5424 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -130195,10 +127423,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5625 + 5433 ], "Y": [ - 5625 + 5433 ], "__typename": [ 78 @@ -130206,13 +127434,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5623 + 5431 ], "distinct": [ 3 ], "filter": [ - 5616 + 5424 ], "predicate": [ 39 @@ -130223,16 +127451,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5605 + 5413 ], "distinct": [ 3 ], "filter": [ - 5616 + 5424 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -130240,10 +127468,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5626 + 5434 ], "Y": [ - 5626 + 5434 ], "__typename": [ 78 @@ -130251,16 +127479,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5627 + 5435 ], "distinct": [ 3 ], "filter": [ - 5616 + 5424 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -130268,16 +127496,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5628 + 5436 ], "distinct": [ 3 ], "filter": [ - 5616 + 5424 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -130285,16 +127513,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5629 + 5437 ], "distinct": [ 3 ], "filter": [ - 5616 + 5424 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -130302,16 +127530,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5630 + 5438 ], "distinct": [ 3 ], "filter": [ - 5616 + 5424 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -130319,16 +127547,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5631 + 5439 ], "distinct": [ 3 ], "filter": [ - 5616 + 5424 ], "predicate": [ - 1500 + 1249 ], "__typename": [ 78 @@ -130336,13 +127564,13 @@ export default { }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 5614 + 5422 ], "count": [ 38, { "columns": [ - 5623, + 5431, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -130351,31 +127579,31 @@ export default { } ], "max": [ - 5618 + 5426 ], "min": [ - 5620 + 5428 ], "stddev": [ - 5632 + 5440 ], "stddev_pop": [ - 5634 + 5442 ], "stddev_samp": [ - 5636 + 5444 ], "sum": [ - 5640 + 5448 ], "var_pop": [ - 5642 + 5450 ], "var_samp": [ - 5644 + 5452 ], "variance": [ - 5646 + 5454 ], "__typename": [ 78 @@ -130383,37 +127611,37 @@ export default { }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 5615 + 5423 ], "count": [ - 2781 + 2529 ], "max": [ - 5619 + 5427 ], "min": [ - 5621 + 5429 ], "stddev": [ - 5633 + 5441 ], "stddev_pop": [ - 5635 + 5443 ], "stddev_samp": [ - 5637 + 5445 ], "sum": [ - 5641 + 5449 ], "var_pop": [ - 5643 + 5451 ], "var_samp": [ - 5645 + 5453 ], "variance": [ - 5647 + 5455 ], "__typename": [ 78 @@ -130421,7 +127649,7 @@ export default { }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 5617 + 5425 ], "__typename": [ 78 @@ -130458,28 +127686,28 @@ export default { }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -130487,13 +127715,13 @@ export default { }, "v_tournament_player_stats_bool_exp": { "_and": [ - 5616 + 5424 ], "_not": [ - 5616 + 5424 ], "_or": [ - 5616 + 5424 ], "assists": [ 39 @@ -130502,13 +127730,13 @@ export default { 39 ], "headshot_percentage": [ - 1500 + 1249 ], "headshots": [ 39 ], "kdr": [ - 1500 + 1249 ], "kills": [ 39 @@ -130517,16 +127745,16 @@ export default { 39 ], "player": [ - 3743 + 3491 ], "player_steam_id": [ 182 ], "tournament": [ - 4727 + 4578 ], "tournament_id": [ - 4764 + 4623 ], "__typename": [ 78 @@ -130540,13 +127768,13 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1248 ], "kills": [ 38 @@ -130555,16 +127783,16 @@ export default { 38 ], "player": [ - 3750 + 3498 ], "player_steam_id": [ 180 ], "tournament": [ - 4736 + 4587 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -130578,13 +127806,13 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1248 ], "kills": [ 38 @@ -130596,7 +127824,7 @@ export default { 180 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -130604,31 +127832,31 @@ export default { }, "v_tournament_player_stats_max_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -130642,13 +127870,13 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1248 ], "kills": [ 38 @@ -130660,7 +127888,7 @@ export default { 180 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -130668,31 +127896,31 @@ export default { }, "v_tournament_player_stats_min_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -130700,37 +127928,37 @@ export default { }, "v_tournament_player_stats_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player": [ - 3752 + 3500 ], "player_steam_id": [ - 2781 + 2529 ], "tournament": [ - 4738 + 4589 ], "tournament_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -130776,28 +128004,28 @@ export default { }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -130834,28 +128062,28 @@ export default { }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -130892,28 +128120,28 @@ export default { }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -130921,7 +128149,7 @@ export default { }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 5639 + 5447 ], "ordering": [ 236 @@ -130938,13 +128166,13 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1248 ], "kills": [ 38 @@ -130956,7 +128184,7 @@ export default { 180 ], "tournament_id": [ - 4762 + 4621 ], "__typename": [ 78 @@ -130970,13 +128198,13 @@ export default { 38 ], "headshot_percentage": [ - 1499 + 1248 ], "headshots": [ 38 ], "kdr": [ - 1499 + 1248 ], "kills": [ 38 @@ -130993,28 +128221,28 @@ export default { }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -131051,28 +128279,28 @@ export default { }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -131109,28 +128337,28 @@ export default { }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -131167,28 +128395,28 @@ export default { }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 2781 + 2529 ], "deaths": [ - 2781 + 2529 ], "headshot_percentage": [ - 2781 + 2529 ], "headshots": [ - 2781 + 2529 ], "kdr": [ - 2781 + 2529 ], "kills": [ - 2781 + 2529 ], "matches_played": [ - 2781 + 2529 ], "player_steam_id": [ - 2781 + 2529 ], "__typename": [ 78 @@ -131243,11 +128471,11 @@ export default { 92, { "map_id": [ - 4762, + 4621, "uuid!" ], "map_pool_id": [ - 4762, + 4621, "uuid!" ] } @@ -131300,7 +128528,7 @@ export default { 111, { "id": [ - 4762, + 4621, "uuid!" ] } @@ -131353,7 +128581,7 @@ export default { 152, { "id": [ - 4762, + 4621, "uuid!" ] } @@ -131406,7 +128634,60 @@ export default { 185, { "id": [ - 4762, + 4621, + "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": [ + 4621, "uuid!" ] } @@ -131415,10 +128696,10 @@ export default { 17 ], "db_backups": [ - 237, + 264, { "distinct_on": [ - 251, + 278, "[db_backups_select_column!]" ], "limit": [ @@ -131428,19 +128709,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 +128731,28 @@ export default { 38 ], "order_by": [ - 249, + 276, "[db_backups_order_by!]" ], "where": [ - 241 + 268 ] } ], "db_backups_by_pk": [ - 237, + 264, { "id": [ - 4762, + 4621, "uuid!" ] } ], "draft_game_picks": [ - 264, + 291, { "distinct_on": [ - 287, + 314, "[draft_game_picks_select_column!]" ], "limit": [ @@ -131481,19 +128762,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 +128784,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, + 4621, "uuid!" ] } ], "draft_game_players": [ - 309, + 336, { "distinct_on": [ - 332, + 359, "[draft_game_players_select_column!]" ], "limit": [ @@ -131534,19 +128815,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 +128837,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, + 4621, "uuid!" ], "steam_id": [ @@ -131578,10 +128859,10 @@ export default { } ], "draft_games": [ - 354, + 381, { "distinct_on": [ - 378, + 405, "[draft_games_select_column!]" ], "limit": [ @@ -131591,19 +128872,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 +128894,28 @@ export default { 38 ], "order_by": [ - 376, + 403, "[draft_games_order_by!]" ], "where": [ - 365 + 392 ] } ], "draft_games_by_pk": [ - 354, + 381, { "id": [ - 4762, + 4621, "uuid!" ] } ], "e_check_in_settings": [ - 400, + 427, { "distinct_on": [ - 414, + 441, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -131644,19 +128925,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 +128947,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 +128965,10 @@ export default { } ], "e_draft_game_captain_selection": [ - 420, + 447, { "distinct_on": [ - 435, + 462, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -131697,19 +128978,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 +129000,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 +129018,10 @@ export default { } ], "e_draft_game_draft_order": [ - 441, + 468, { "distinct_on": [ - 456, + 483, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -131750,19 +129031,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 +129053,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 +129071,10 @@ export default { } ], "e_draft_game_mode": [ - 462, + 489, { "distinct_on": [ - 477, + 504, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -131803,19 +129084,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 +129106,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 +129124,10 @@ export default { } ], "e_draft_game_player_status": [ - 483, + 510, { "distinct_on": [ - 498, + 525, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -131856,19 +129137,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 +129159,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 +129177,10 @@ export default { } ], "e_draft_game_status": [ - 504, + 531, { "distinct_on": [ - 519, + 546, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -131909,19 +129190,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,122 +129212,16 @@ export default { 38 ], "order_by": [ - 517, + 544, "[e_draft_game_status_order_by!]" ], "where": [ - 507 + 534 ] } ], "e_draft_game_status_by_pk": [ - 504, - { - "value": [ - 78, - "String!" - ] - } - ], - "e_event_media_access": [ - 525, - { - "distinct_on": [ - 539, - "[e_event_media_access_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 537, - "[e_event_media_access_order_by!]" - ], - "where": [ - 528 - ] - } - ], - "e_event_media_access_aggregate": [ - 526, - { - "distinct_on": [ - 539, - "[e_event_media_access_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 537, - "[e_event_media_access_order_by!]" - ], - "where": [ - 528 - ] - } - ], - "e_event_media_access_by_pk": [ - 525, - { - "value": [ - 78, - "String!" - ] - } - ], - "e_event_visibility": [ - 545, - { - "distinct_on": [ - 559, - "[e_event_visibility_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 557, - "[e_event_visibility_order_by!]" - ], - "where": [ - 548 - ] - } - ], - "e_event_visibility_aggregate": [ - 546, - { - "distinct_on": [ - 559, - "[e_event_visibility_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 557, - "[e_event_visibility_order_by!]" - ], - "where": [ - 548 - ] - } - ], - "e_event_visibility_by_pk": [ - 545, + 531, { "value": [ 78, @@ -132055,10 +129230,10 @@ export default { } ], "e_friend_status": [ - 565, + 552, { "distinct_on": [ - 580, + 567, "[e_friend_status_select_column!]" ], "limit": [ @@ -132068,19 +129243,19 @@ export default { 38 ], "order_by": [ - 578, + 565, "[e_friend_status_order_by!]" ], "where": [ - 568 + 555 ] } ], "e_friend_status_aggregate": [ - 566, + 553, { "distinct_on": [ - 580, + 567, "[e_friend_status_select_column!]" ], "limit": [ @@ -132090,16 +129265,16 @@ export default { 38 ], "order_by": [ - 578, + 565, "[e_friend_status_order_by!]" ], "where": [ - 568 + 555 ] } ], "e_friend_status_by_pk": [ - 565, + 552, { "value": [ 78, @@ -132108,10 +129283,10 @@ export default { } ], "e_game_cfg_types": [ - 586, + 573, { "distinct_on": [ - 600, + 587, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -132121,19 +129296,19 @@ export default { 38 ], "order_by": [ - 598, + 585, "[e_game_cfg_types_order_by!]" ], "where": [ - 589 + 576 ] } ], "e_game_cfg_types_aggregate": [ - 587, + 574, { "distinct_on": [ - 600, + 587, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -132143,16 +129318,16 @@ export default { 38 ], "order_by": [ - 598, + 585, "[e_game_cfg_types_order_by!]" ], "where": [ - 589 + 576 ] } ], "e_game_cfg_types_by_pk": [ - 586, + 573, { "value": [ 78, @@ -132161,10 +129336,10 @@ export default { } ], "e_game_server_node_statuses": [ - 606, + 593, { "distinct_on": [ - 621, + 608, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -132174,19 +129349,19 @@ export default { 38 ], "order_by": [ - 619, + 606, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 609 + 596 ] } ], "e_game_server_node_statuses_aggregate": [ - 607, + 594, { "distinct_on": [ - 621, + 608, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -132196,16 +129371,16 @@ export default { 38 ], "order_by": [ - 619, + 606, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 609 + 596 ] } ], "e_game_server_node_statuses_by_pk": [ - 606, + 593, { "value": [ 78, @@ -132214,10 +129389,10 @@ export default { } ], "e_league_movement_types": [ - 627, + 614, { "distinct_on": [ - 642, + 629, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -132227,19 +129402,19 @@ export default { 38 ], "order_by": [ - 640, + 627, "[e_league_movement_types_order_by!]" ], "where": [ - 630 + 617 ] } ], "e_league_movement_types_aggregate": [ - 628, + 615, { "distinct_on": [ - 642, + 629, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -132249,16 +129424,16 @@ export default { 38 ], "order_by": [ - 640, + 627, "[e_league_movement_types_order_by!]" ], "where": [ - 630 + 617 ] } ], "e_league_movement_types_by_pk": [ - 627, + 614, { "value": [ 78, @@ -132267,10 +129442,10 @@ export default { } ], "e_league_proposal_statuses": [ - 648, + 635, { "distinct_on": [ - 663, + 650, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -132280,19 +129455,19 @@ export default { 38 ], "order_by": [ - 661, + 648, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 651 + 638 ] } ], "e_league_proposal_statuses_aggregate": [ - 649, + 636, { "distinct_on": [ - 663, + 650, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -132302,16 +129477,16 @@ export default { 38 ], "order_by": [ - 661, + 648, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 651 + 638 ] } ], "e_league_proposal_statuses_by_pk": [ - 648, + 635, { "value": [ 78, @@ -132320,10 +129495,10 @@ export default { } ], "e_league_registration_statuses": [ - 669, + 656, { "distinct_on": [ - 684, + 671, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -132333,19 +129508,19 @@ export default { 38 ], "order_by": [ - 682, + 669, "[e_league_registration_statuses_order_by!]" ], "where": [ - 672 + 659 ] } ], "e_league_registration_statuses_aggregate": [ - 670, + 657, { "distinct_on": [ - 684, + 671, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -132355,16 +129530,16 @@ export default { 38 ], "order_by": [ - 682, + 669, "[e_league_registration_statuses_order_by!]" ], "where": [ - 672 + 659 ] } ], "e_league_registration_statuses_by_pk": [ - 669, + 656, { "value": [ 78, @@ -132373,10 +129548,10 @@ export default { } ], "e_league_season_statuses": [ - 690, + 677, { "distinct_on": [ - 705, + 692, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -132386,19 +129561,19 @@ export default { 38 ], "order_by": [ - 703, + 690, "[e_league_season_statuses_order_by!]" ], "where": [ - 693 + 680 ] } ], "e_league_season_statuses_aggregate": [ - 691, + 678, { "distinct_on": [ - 705, + 692, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -132408,16 +129583,16 @@ export default { 38 ], "order_by": [ - 703, + 690, "[e_league_season_statuses_order_by!]" ], "where": [ - 693 + 680 ] } ], "e_league_season_statuses_by_pk": [ - 690, + 677, { "value": [ 78, @@ -132426,10 +129601,10 @@ export default { } ], "e_lobby_access": [ - 711, + 698, { "distinct_on": [ - 726, + 713, "[e_lobby_access_select_column!]" ], "limit": [ @@ -132439,19 +129614,19 @@ export default { 38 ], "order_by": [ - 724, + 711, "[e_lobby_access_order_by!]" ], "where": [ - 714 + 701 ] } ], "e_lobby_access_aggregate": [ - 712, + 699, { "distinct_on": [ - 726, + 713, "[e_lobby_access_select_column!]" ], "limit": [ @@ -132461,16 +129636,16 @@ export default { 38 ], "order_by": [ - 724, + 711, "[e_lobby_access_order_by!]" ], "where": [ - 714 + 701 ] } ], "e_lobby_access_by_pk": [ - 711, + 698, { "value": [ 78, @@ -132479,10 +129654,10 @@ export default { } ], "e_lobby_player_status": [ - 732, + 719, { "distinct_on": [ - 746, + 733, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -132492,19 +129667,19 @@ export default { 38 ], "order_by": [ - 744, + 731, "[e_lobby_player_status_order_by!]" ], "where": [ - 735 + 722 ] } ], "e_lobby_player_status_aggregate": [ - 733, + 720, { "distinct_on": [ - 746, + 733, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -132514,16 +129689,16 @@ export default { 38 ], "order_by": [ - 744, + 731, "[e_lobby_player_status_order_by!]" ], "where": [ - 735 + 722 ] } ], "e_lobby_player_status_by_pk": [ - 732, + 719, { "value": [ 78, @@ -132532,10 +129707,10 @@ export default { } ], "e_map_pool_types": [ - 752, + 739, { "distinct_on": [ - 767, + 754, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -132545,19 +129720,19 @@ export default { 38 ], "order_by": [ - 765, + 752, "[e_map_pool_types_order_by!]" ], "where": [ - 755 + 742 ] } ], "e_map_pool_types_aggregate": [ - 753, + 740, { "distinct_on": [ - 767, + 754, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -132567,16 +129742,16 @@ export default { 38 ], "order_by": [ - 765, + 752, "[e_map_pool_types_order_by!]" ], "where": [ - 755 + 742 ] } ], "e_map_pool_types_by_pk": [ - 752, + 739, { "value": [ 78, @@ -132585,10 +129760,10 @@ export default { } ], "e_match_clip_visibility": [ - 773, + 760, { "distinct_on": [ - 787, + 774, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -132598,19 +129773,19 @@ export default { 38 ], "order_by": [ - 785, + 772, "[e_match_clip_visibility_order_by!]" ], "where": [ - 776 + 763 ] } ], "e_match_clip_visibility_aggregate": [ - 774, + 761, { "distinct_on": [ - 787, + 774, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -132620,16 +129795,16 @@ export default { 38 ], "order_by": [ - 785, + 772, "[e_match_clip_visibility_order_by!]" ], "where": [ - 776 + 763 ] } ], "e_match_clip_visibility_by_pk": [ - 773, + 760, { "value": [ 78, @@ -132638,10 +129813,10 @@ export default { } ], "e_match_map_status": [ - 793, + 780, { "distinct_on": [ - 808, + 795, "[e_match_map_status_select_column!]" ], "limit": [ @@ -132651,19 +129826,19 @@ export default { 38 ], "order_by": [ - 806, + 793, "[e_match_map_status_order_by!]" ], "where": [ - 796 + 783 ] } ], "e_match_map_status_aggregate": [ - 794, + 781, { "distinct_on": [ - 808, + 795, "[e_match_map_status_select_column!]" ], "limit": [ @@ -132673,16 +129848,16 @@ export default { 38 ], "order_by": [ - 806, + 793, "[e_match_map_status_order_by!]" ], "where": [ - 796 + 783 ] } ], "e_match_map_status_by_pk": [ - 793, + 780, { "value": [ 78, @@ -132691,10 +129866,10 @@ export default { } ], "e_match_mode": [ - 814, + 801, { "distinct_on": [ - 828, + 815, "[e_match_mode_select_column!]" ], "limit": [ @@ -132704,19 +129879,19 @@ export default { 38 ], "order_by": [ - 826, + 813, "[e_match_mode_order_by!]" ], "where": [ - 817 + 804 ] } ], "e_match_mode_aggregate": [ - 815, + 802, { "distinct_on": [ - 828, + 815, "[e_match_mode_select_column!]" ], "limit": [ @@ -132726,16 +129901,16 @@ export default { 38 ], "order_by": [ - 826, + 813, "[e_match_mode_order_by!]" ], "where": [ - 817 + 804 ] } ], "e_match_mode_by_pk": [ - 814, + 801, { "value": [ 78, @@ -132744,10 +129919,10 @@ export default { } ], "e_match_status": [ - 834, + 821, { "distinct_on": [ - 849, + 836, "[e_match_status_select_column!]" ], "limit": [ @@ -132757,19 +129932,19 @@ export default { 38 ], "order_by": [ - 847, + 834, "[e_match_status_order_by!]" ], "where": [ - 837 + 824 ] } ], "e_match_status_aggregate": [ - 835, + 822, { "distinct_on": [ - 849, + 836, "[e_match_status_select_column!]" ], "limit": [ @@ -132779,16 +129954,16 @@ export default { 38 ], "order_by": [ - 847, + 834, "[e_match_status_order_by!]" ], "where": [ - 837 + 824 ] } ], "e_match_status_by_pk": [ - 834, + 821, { "value": [ 78, @@ -132797,10 +129972,10 @@ export default { } ], "e_match_types": [ - 855, + 842, { "distinct_on": [ - 870, + 857, "[e_match_types_select_column!]" ], "limit": [ @@ -132810,19 +129985,19 @@ export default { 38 ], "order_by": [ - 868, + 855, "[e_match_types_order_by!]" ], "where": [ - 858 + 845 ] } ], "e_match_types_aggregate": [ - 856, + 843, { "distinct_on": [ - 870, + 857, "[e_match_types_select_column!]" ], "limit": [ @@ -132832,16 +130007,16 @@ export default { 38 ], "order_by": [ - 868, + 855, "[e_match_types_order_by!]" ], "where": [ - 858 + 845 ] } ], "e_match_types_by_pk": [ - 855, + 842, { "value": [ 78, @@ -132850,10 +130025,10 @@ export default { } ], "e_notification_types": [ - 876, + 863, { "distinct_on": [ - 890, + 877, "[e_notification_types_select_column!]" ], "limit": [ @@ -132863,19 +130038,19 @@ export default { 38 ], "order_by": [ - 888, + 875, "[e_notification_types_order_by!]" ], "where": [ - 879 + 866 ] } ], "e_notification_types_aggregate": [ - 877, + 864, { "distinct_on": [ - 890, + 877, "[e_notification_types_select_column!]" ], "limit": [ @@ -132885,16 +130060,16 @@ export default { 38 ], "order_by": [ - 888, + 875, "[e_notification_types_order_by!]" ], "where": [ - 879 + 866 ] } ], "e_notification_types_by_pk": [ - 876, + 863, { "value": [ 78, @@ -132903,10 +130078,10 @@ export default { } ], "e_objective_types": [ - 896, + 883, { "distinct_on": [ - 910, + 897, "[e_objective_types_select_column!]" ], "limit": [ @@ -132916,19 +130091,19 @@ export default { 38 ], "order_by": [ - 908, + 895, "[e_objective_types_order_by!]" ], "where": [ - 899 + 886 ] } ], "e_objective_types_aggregate": [ - 897, + 884, { "distinct_on": [ - 910, + 897, "[e_objective_types_select_column!]" ], "limit": [ @@ -132938,16 +130113,16 @@ export default { 38 ], "order_by": [ - 908, + 895, "[e_objective_types_order_by!]" ], "where": [ - 899 + 886 ] } ], "e_objective_types_by_pk": [ - 896, + 883, { "value": [ 78, @@ -132956,10 +130131,10 @@ export default { } ], "e_player_roles": [ - 916, + 903, { "distinct_on": [ - 930, + 917, "[e_player_roles_select_column!]" ], "limit": [ @@ -132969,19 +130144,19 @@ export default { 38 ], "order_by": [ - 928, + 915, "[e_player_roles_order_by!]" ], "where": [ - 919 + 906 ] } ], "e_player_roles_aggregate": [ - 917, + 904, { "distinct_on": [ - 930, + 917, "[e_player_roles_select_column!]" ], "limit": [ @@ -132991,16 +130166,16 @@ export default { 38 ], "order_by": [ - 928, + 915, "[e_player_roles_order_by!]" ], "where": [ - 919 + 906 ] } ], "e_player_roles_by_pk": [ - 916, + 903, { "value": [ 78, @@ -133009,10 +130184,10 @@ export default { } ], "e_plugin_runtimes": [ - 936, + 923, { "distinct_on": [ - 950, + 937, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -133022,19 +130197,19 @@ export default { 38 ], "order_by": [ - 948, + 935, "[e_plugin_runtimes_order_by!]" ], "where": [ - 939 + 926 ] } ], "e_plugin_runtimes_aggregate": [ - 937, + 924, { "distinct_on": [ - 950, + 937, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -133044,16 +130219,16 @@ export default { 38 ], "order_by": [ - 948, + 935, "[e_plugin_runtimes_order_by!]" ], "where": [ - 939 + 926 ] } ], "e_plugin_runtimes_by_pk": [ - 936, + 923, { "value": [ 78, @@ -133062,10 +130237,10 @@ export default { } ], "e_ready_settings": [ - 956, + 943, { "distinct_on": [ - 970, + 957, "[e_ready_settings_select_column!]" ], "limit": [ @@ -133075,19 +130250,19 @@ export default { 38 ], "order_by": [ - 968, + 955, "[e_ready_settings_order_by!]" ], "where": [ - 959 + 946 ] } ], "e_ready_settings_aggregate": [ - 957, + 944, { "distinct_on": [ - 970, + 957, "[e_ready_settings_select_column!]" ], "limit": [ @@ -133097,16 +130272,16 @@ export default { 38 ], "order_by": [ - 968, + 955, "[e_ready_settings_order_by!]" ], "where": [ - 959 + 946 ] } ], "e_ready_settings_by_pk": [ - 956, + 943, { "value": [ 78, @@ -133115,10 +130290,10 @@ export default { } ], "e_sanction_types": [ - 976, + 963, { "distinct_on": [ - 991, + 978, "[e_sanction_types_select_column!]" ], "limit": [ @@ -133128,19 +130303,19 @@ export default { 38 ], "order_by": [ - 989, + 976, "[e_sanction_types_order_by!]" ], "where": [ - 979 + 966 ] } ], "e_sanction_types_aggregate": [ - 977, + 964, { "distinct_on": [ - 991, + 978, "[e_sanction_types_select_column!]" ], "limit": [ @@ -133150,16 +130325,16 @@ export default { 38 ], "order_by": [ - 989, + 976, "[e_sanction_types_order_by!]" ], "where": [ - 979 + 966 ] } ], "e_sanction_types_by_pk": [ - 976, + 963, { "value": [ 78, @@ -133168,10 +130343,10 @@ export default { } ], "e_scrim_request_statuses": [ - 997, + 984, { "distinct_on": [ - 1011, + 998, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -133181,19 +130356,19 @@ export default { 38 ], "order_by": [ - 1009, + 996, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1000 + 987 ] } ], "e_scrim_request_statuses_aggregate": [ - 998, + 985, { "distinct_on": [ - 1011, + 998, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -133203,16 +130378,16 @@ export default { 38 ], "order_by": [ - 1009, + 996, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1000 + 987 ] } ], "e_scrim_request_statuses_by_pk": [ - 997, + 984, { "value": [ 78, @@ -133221,10 +130396,10 @@ export default { } ], "e_server_types": [ - 1017, + 1004, { "distinct_on": [ - 1031, + 1018, "[e_server_types_select_column!]" ], "limit": [ @@ -133234,19 +130409,19 @@ export default { 38 ], "order_by": [ - 1029, + 1016, "[e_server_types_order_by!]" ], "where": [ - 1020 + 1007 ] } ], "e_server_types_aggregate": [ - 1018, + 1005, { "distinct_on": [ - 1031, + 1018, "[e_server_types_select_column!]" ], "limit": [ @@ -133256,16 +130431,16 @@ export default { 38 ], "order_by": [ - 1029, + 1016, "[e_server_types_order_by!]" ], "where": [ - 1020 + 1007 ] } ], "e_server_types_by_pk": [ - 1017, + 1004, { "value": [ 78, @@ -133274,10 +130449,10 @@ export default { } ], "e_sides": [ - 1037, + 1024, { "distinct_on": [ - 1051, + 1038, "[e_sides_select_column!]" ], "limit": [ @@ -133287,19 +130462,19 @@ export default { 38 ], "order_by": [ - 1049, + 1036, "[e_sides_order_by!]" ], "where": [ - 1040 + 1027 ] } ], "e_sides_aggregate": [ - 1038, + 1025, { "distinct_on": [ - 1051, + 1038, "[e_sides_select_column!]" ], "limit": [ @@ -133309,16 +130484,16 @@ export default { 38 ], "order_by": [ - 1049, + 1036, "[e_sides_order_by!]" ], "where": [ - 1040 + 1027 ] } ], "e_sides_by_pk": [ - 1037, + 1024, { "value": [ 78, @@ -133327,10 +130502,10 @@ export default { } ], "e_system_alert_types": [ - 1057, + 1044, { "distinct_on": [ - 1071, + 1058, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -133340,19 +130515,19 @@ export default { 38 ], "order_by": [ - 1069, + 1056, "[e_system_alert_types_order_by!]" ], "where": [ - 1060 + 1047 ] } ], "e_system_alert_types_aggregate": [ - 1058, + 1045, { "distinct_on": [ - 1071, + 1058, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -133362,16 +130537,16 @@ export default { 38 ], "order_by": [ - 1069, + 1056, "[e_system_alert_types_order_by!]" ], "where": [ - 1060 + 1047 ] } ], "e_system_alert_types_by_pk": [ - 1057, + 1044, { "value": [ 78, @@ -133380,10 +130555,10 @@ export default { } ], "e_team_roles": [ - 1077, + 1064, { "distinct_on": [ - 1092, + 1079, "[e_team_roles_select_column!]" ], "limit": [ @@ -133393,19 +130568,19 @@ export default { 38 ], "order_by": [ - 1090, + 1077, "[e_team_roles_order_by!]" ], "where": [ - 1080 + 1067 ] } ], "e_team_roles_aggregate": [ - 1078, + 1065, { "distinct_on": [ - 1092, + 1079, "[e_team_roles_select_column!]" ], "limit": [ @@ -133415,16 +130590,16 @@ export default { 38 ], "order_by": [ - 1090, + 1077, "[e_team_roles_order_by!]" ], "where": [ - 1080 + 1067 ] } ], "e_team_roles_by_pk": [ - 1077, + 1064, { "value": [ 78, @@ -133433,10 +130608,10 @@ export default { } ], "e_team_roster_statuses": [ - 1098, + 1085, { "distinct_on": [ - 1112, + 1099, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -133446,19 +130621,19 @@ export default { 38 ], "order_by": [ - 1110, + 1097, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1101 + 1088 ] } ], "e_team_roster_statuses_aggregate": [ - 1099, + 1086, { "distinct_on": [ - 1112, + 1099, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -133468,16 +130643,16 @@ export default { 38 ], "order_by": [ - 1110, + 1097, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1101 + 1088 ] } ], "e_team_roster_statuses_by_pk": [ - 1098, + 1085, { "value": [ 78, @@ -133486,10 +130661,10 @@ export default { } ], "e_timeout_settings": [ - 1118, + 1105, { "distinct_on": [ - 1132, + 1119, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -133499,19 +130674,19 @@ export default { 38 ], "order_by": [ - 1130, + 1117, "[e_timeout_settings_order_by!]" ], "where": [ - 1121 + 1108 ] } ], "e_timeout_settings_aggregate": [ - 1119, + 1106, { "distinct_on": [ - 1132, + 1119, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -133521,16 +130696,69 @@ export default { 38 ], "order_by": [ - 1130, + 1117, "[e_timeout_settings_order_by!]" ], "where": [ - 1121 + 1108 ] } ], "e_timeout_settings_by_pk": [ - 1118, + 1105, + { + "value": [ + 78, + "String!" + ] + } + ], + "e_tournament_categories": [ + 1125, + { + "distinct_on": [ + 1140, + "[e_tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1138, + "[e_tournament_categories_order_by!]" + ], + "where": [ + 1128 + ] + } + ], + "e_tournament_categories_aggregate": [ + 1126, + { + "distinct_on": [ + 1140, + "[e_tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1138, + "[e_tournament_categories_order_by!]" + ], + "where": [ + 1128 + ] + } + ], + "e_tournament_categories_by_pk": [ + 1125, { "value": [ 78, @@ -133539,10 +130767,10 @@ export default { } ], "e_tournament_stage_types": [ - 1138, + 1146, { "distinct_on": [ - 1153, + 1161, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -133552,19 +130780,19 @@ export default { 38 ], "order_by": [ - 1151, + 1159, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1141 + 1149 ] } ], "e_tournament_stage_types_aggregate": [ - 1139, + 1147, { "distinct_on": [ - 1153, + 1161, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -133574,16 +130802,16 @@ export default { 38 ], "order_by": [ - 1151, + 1159, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1141 + 1149 ] } ], "e_tournament_stage_types_by_pk": [ - 1138, + 1146, { "value": [ 78, @@ -133592,10 +130820,10 @@ export default { } ], "e_tournament_status": [ - 1159, + 1167, { "distinct_on": [ - 1174, + 1182, "[e_tournament_status_select_column!]" ], "limit": [ @@ -133605,19 +130833,19 @@ export default { 38 ], "order_by": [ - 1172, + 1180, "[e_tournament_status_order_by!]" ], "where": [ - 1162 + 1170 ] } ], "e_tournament_status_aggregate": [ - 1160, + 1168, { "distinct_on": [ - 1174, + 1182, "[e_tournament_status_select_column!]" ], "limit": [ @@ -133627,16 +130855,16 @@ export default { 38 ], "order_by": [ - 1172, + 1180, "[e_tournament_status_order_by!]" ], "where": [ - 1162 + 1170 ] } ], "e_tournament_status_by_pk": [ - 1159, + 1167, { "value": [ 78, @@ -133645,10 +130873,10 @@ export default { } ], "e_utility_types": [ - 1180, + 1188, { "distinct_on": [ - 1194, + 1202, "[e_utility_types_select_column!]" ], "limit": [ @@ -133658,19 +130886,19 @@ export default { 38 ], "order_by": [ - 1192, + 1200, "[e_utility_types_order_by!]" ], "where": [ - 1183 + 1191 ] } ], "e_utility_types_aggregate": [ - 1181, + 1189, { "distinct_on": [ - 1194, + 1202, "[e_utility_types_select_column!]" ], "limit": [ @@ -133680,16 +130908,16 @@ export default { 38 ], "order_by": [ - 1192, + 1200, "[e_utility_types_order_by!]" ], "where": [ - 1183 + 1191 ] } ], "e_utility_types_by_pk": [ - 1180, + 1188, { "value": [ 78, @@ -133698,10 +130926,10 @@ export default { } ], "e_veto_pick_types": [ - 1200, + 1208, { "distinct_on": [ - 1214, + 1222, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -133711,19 +130939,19 @@ export default { 38 ], "order_by": [ - 1212, + 1220, "[e_veto_pick_types_order_by!]" ], "where": [ - 1203 + 1211 ] } ], "e_veto_pick_types_aggregate": [ - 1201, + 1209, { "distinct_on": [ - 1214, + 1222, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -133733,16 +130961,16 @@ export default { 38 ], "order_by": [ - 1212, + 1220, "[e_veto_pick_types_order_by!]" ], "where": [ - 1203 + 1211 ] } ], "e_veto_pick_types_by_pk": [ - 1200, + 1208, { "value": [ 78, @@ -133751,10 +130979,10 @@ export default { } ], "e_winning_reasons": [ - 1220, + 1228, { "distinct_on": [ - 1234, + 1242, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -133764,19 +130992,19 @@ export default { 38 ], "order_by": [ - 1232, + 1240, "[e_winning_reasons_order_by!]" ], "where": [ - 1223 + 1231 ] } ], "e_winning_reasons_aggregate": [ - 1221, + 1229, { "distinct_on": [ - 1234, + 1242, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -133786,16 +131014,16 @@ export default { 38 ], "order_by": [ - 1232, + 1240, "[e_winning_reasons_order_by!]" ], "where": [ - 1223 + 1231 ] } ], "e_winning_reasons_by_pk": [ - 1220, + 1228, { "value": [ 78, @@ -133803,459 +131031,11 @@ export default { ] } ], - "event_match_links": [ - 1240, - { - "distinct_on": [ - 1252, - "[event_match_links_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1250, - "[event_match_links_order_by!]" - ], - "where": [ - 1243 - ] - } - ], - "event_match_links_aggregate": [ - 1241, - { - "distinct_on": [ - 1252, - "[event_match_links_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1250, - "[event_match_links_order_by!]" - ], - "where": [ - 1243 - ] - } - ], - "event_match_links_by_pk": [ - 1240, - { - "event_id": [ - 4762, - "uuid!" - ], - "match_id": [ - 4762, - "uuid!" - ] - } - ], - "event_media": [ - 1258, - { - "distinct_on": [ - 1321, - "[event_media_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1278, - "[event_media_order_by!]" - ], - "where": [ - 1267 - ] - } - ], - "event_media_aggregate": [ - 1259, - { - "distinct_on": [ - 1321, - "[event_media_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1278, - "[event_media_order_by!]" - ], - "where": [ - 1267 - ] - } - ], - "event_media_by_pk": [ - 1258, - { - "id": [ - 4762, - "uuid!" - ] - } - ], - "event_media_players": [ - 1280, - { - "distinct_on": [ - 1301, - "[event_media_players_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1299, - "[event_media_players_order_by!]" - ], - "where": [ - 1289 - ] - } - ], - "event_media_players_aggregate": [ - 1281, - { - "distinct_on": [ - 1301, - "[event_media_players_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1299, - "[event_media_players_order_by!]" - ], - "where": [ - 1289 - ] - } - ], - "event_media_players_by_pk": [ - 1280, - { - "media_id": [ - 4762, - "uuid!" - ], - "steam_id": [ - 180, - "bigint!" - ] - } - ], - "event_organizers": [ - 1341, - { - "distinct_on": [ - 1362, - "[event_organizers_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1360, - "[event_organizers_order_by!]" - ], - "where": [ - 1350 - ] - } - ], - "event_organizers_aggregate": [ - 1342, - { - "distinct_on": [ - 1362, - "[event_organizers_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1360, - "[event_organizers_order_by!]" - ], - "where": [ - 1350 - ] - } - ], - "event_organizers_by_pk": [ - 1341, - { - "event_id": [ - 4762, - "uuid!" - ], - "steam_id": [ - 180, - "bigint!" - ] - } - ], - "event_players": [ - 1382, - { - "distinct_on": [ - 1403, - "[event_players_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1401, - "[event_players_order_by!]" - ], - "where": [ - 1391 - ] - } - ], - "event_players_aggregate": [ - 1383, - { - "distinct_on": [ - 1403, - "[event_players_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1401, - "[event_players_order_by!]" - ], - "where": [ - 1391 - ] - } - ], - "event_players_by_pk": [ - 1382, - { - "event_id": [ - 4762, - "uuid!" - ], - "steam_id": [ - 180, - "bigint!" - ] - } - ], - "event_teams": [ - 1423, - { - "distinct_on": [ - 1441, - "[event_teams_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1439, - "[event_teams_order_by!]" - ], - "where": [ - 1430 - ] - } - ], - "event_teams_aggregate": [ - 1424, - { - "distinct_on": [ - 1441, - "[event_teams_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1439, - "[event_teams_order_by!]" - ], - "where": [ - 1430 - ] - } - ], - "event_teams_by_pk": [ - 1423, - { - "event_id": [ - 4762, - "uuid!" - ], - "team_id": [ - 4762, - "uuid!" - ] - } - ], - "event_tournaments": [ - 1447, - { - "distinct_on": [ - 1465, - "[event_tournaments_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1463, - "[event_tournaments_order_by!]" - ], - "where": [ - 1454 - ] - } - ], - "event_tournaments_aggregate": [ - 1448, - { - "distinct_on": [ - 1465, - "[event_tournaments_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1463, - "[event_tournaments_order_by!]" - ], - "where": [ - 1454 - ] - } - ], - "event_tournaments_by_pk": [ - 1447, - { - "event_id": [ - 4762, - "uuid!" - ], - "tournament_id": [ - 4762, - "uuid!" - ] - } - ], - "events": [ - 1471, - { - "distinct_on": [ - 1486, - "[events_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1484, - "[events_order_by!]" - ], - "where": [ - 1475 - ] - } - ], - "events_aggregate": [ - 1472, - { - "distinct_on": [ - 1486, - "[events_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1484, - "[events_order_by!]" - ], - "where": [ - 1475 - ] - } - ], - "events_by_pk": [ - 1471, - { - "id": [ - 4762, - "uuid!" - ] - } - ], "friends": [ - 1501, + 1250, { "distinct_on": [ - 1515, + 1264, "[friends_select_column!]" ], "limit": [ @@ -134265,19 +131045,19 @@ export default { 38 ], "order_by": [ - 1513, + 1262, "[friends_order_by!]" ], "where": [ - 1505 + 1254 ] } ], "friends_aggregate": [ - 1502, + 1251, { "distinct_on": [ - 1515, + 1264, "[friends_select_column!]" ], "limit": [ @@ -134287,16 +131067,16 @@ export default { 38 ], "order_by": [ - 1513, + 1262, "[friends_order_by!]" ], "where": [ - 1505 + 1254 ] } ], "friends_by_pk": [ - 1501, + 1250, { "other_player_steam_id": [ 180, @@ -134309,10 +131089,10 @@ export default { } ], "game_server_nodes": [ - 1528, + 1277, { "distinct_on": [ - 1557, + 1306, "[game_server_nodes_select_column!]" ], "limit": [ @@ -134322,19 +131102,19 @@ export default { 38 ], "order_by": [ - 1554, + 1303, "[game_server_nodes_order_by!]" ], "where": [ - 1540 + 1289 ] } ], "game_server_nodes_aggregate": [ - 1529, + 1278, { "distinct_on": [ - 1557, + 1306, "[game_server_nodes_select_column!]" ], "limit": [ @@ -134344,16 +131124,16 @@ export default { 38 ], "order_by": [ - 1554, + 1303, "[game_server_nodes_order_by!]" ], "where": [ - 1540 + 1289 ] } ], "game_server_nodes_by_pk": [ - 1528, + 1277, { "id": [ 78, @@ -134362,10 +131142,10 @@ export default { } ], "game_versions": [ - 1579, + 1328, { "distinct_on": [ - 1599, + 1348, "[game_versions_select_column!]" ], "limit": [ @@ -134375,19 +131155,19 @@ export default { 38 ], "order_by": [ - 1596, + 1345, "[game_versions_order_by!]" ], "where": [ - 1584 + 1333 ] } ], "game_versions_aggregate": [ - 1580, + 1329, { "distinct_on": [ - 1599, + 1348, "[game_versions_select_column!]" ], "limit": [ @@ -134397,16 +131177,16 @@ export default { 38 ], "order_by": [ - 1596, + 1345, "[game_versions_order_by!]" ], "where": [ - 1584 + 1333 ] } ], "game_versions_by_pk": [ - 1579, + 1328, { "build_id": [ 38, @@ -134415,10 +131195,10 @@ export default { } ], "gamedata_signature_validations": [ - 1612, + 1361, { "distinct_on": [ - 1631, + 1380, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -134428,19 +131208,19 @@ export default { 38 ], "order_by": [ - 1628, + 1377, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1617 + 1366 ] } ], "gamedata_signature_validations_aggregate": [ - 1613, + 1362, { "distinct_on": [ - 1631, + 1380, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -134450,19 +131230,19 @@ export default { 38 ], "order_by": [ - 1628, + 1377, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1617 + 1366 ] } ], "gamedata_signature_validations_by_pk": [ - 1612, + 1361, { "id": [ - 4762, + 4621, "uuid!" ] } @@ -134498,7 +131278,7 @@ export default { 34, { "match_map_id": [ - 4762, + 4621, "uuid!" ], "target_steam_id": [ @@ -134582,67 +131362,15 @@ export default { "getTimescaleStats": [ 89 ], - "get_event_leaderboard": [ - 1655, - { - "args": [ - 1644, - "get_event_leaderboard_args!" - ], - "distinct_on": [ - 1666, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1665, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 1659 - ] - } - ], - "get_event_leaderboard_aggregate": [ - 1656, - { - "args": [ - 1644, - "get_event_leaderboard_args!" - ], - "distinct_on": [ - 1666, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1665, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 1659 - ] - } - ], "get_leaderboard": [ - 1655, + 1403, { "args": [ - 1645, + 1393, "get_leaderboard_args!" ], "distinct_on": [ - 1666, + 1414, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134652,23 +131380,23 @@ export default { 38 ], "order_by": [ - 1665, + 1413, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1407 ] } ], "get_leaderboard_aggregate": [ - 1656, + 1404, { "args": [ - 1645, + 1393, "get_leaderboard_args!" ], "distinct_on": [ - 1666, + 1414, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134678,23 +131406,23 @@ export default { 38 ], "order_by": [ - 1665, + 1413, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1407 ] } ], "get_league_season_leaderboard": [ - 1655, + 1403, { "args": [ - 1646, + 1394, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1666, + 1414, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134704,23 +131432,23 @@ export default { 38 ], "order_by": [ - 1665, + 1413, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1407 ] } ], "get_league_season_leaderboard_aggregate": [ - 1656, + 1404, { "args": [ - 1646, + 1394, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1666, + 1414, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134730,23 +131458,23 @@ export default { 38 ], "order_by": [ - 1665, + 1413, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1407 ] } ], "get_player_leaderboard_rank": [ - 3222, + 2970, { "args": [ - 1647, + 1395, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3233, + 2981, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -134756,23 +131484,23 @@ export default { 38 ], "order_by": [ - 3232, + 2980, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 2974 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3223, + 2971, { "args": [ - 1647, + 1395, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3233, + 2981, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -134782,19 +131510,19 @@ export default { 38 ], "order_by": [ - 3232, + 2980, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 2974 ] } ], "leaderboard_entries": [ - 1655, + 1403, { "distinct_on": [ - 1666, + 1414, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134804,19 +131532,19 @@ export default { 38 ], "order_by": [ - 1665, + 1413, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1407 ] } ], "leaderboard_entries_aggregate": [ - 1656, + 1404, { "distinct_on": [ - 1666, + 1414, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134826,19 +131554,19 @@ export default { 38 ], "order_by": [ - 1665, + 1413, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1407 ] } ], "league_divisions": [ - 1679, + 1427, { "distinct_on": [ - 1694, + 1442, "[league_divisions_select_column!]" ], "limit": [ @@ -134848,19 +131576,19 @@ export default { 38 ], "order_by": [ - 1692, + 1440, "[league_divisions_order_by!]" ], "where": [ - 1683 + 1431 ] } ], "league_divisions_aggregate": [ - 1680, + 1428, { "distinct_on": [ - 1694, + 1442, "[league_divisions_select_column!]" ], "limit": [ @@ -134870,28 +131598,28 @@ export default { 38 ], "order_by": [ - 1692, + 1440, "[league_divisions_order_by!]" ], "where": [ - 1683 + 1431 ] } ], "league_divisions_by_pk": [ - 1679, + 1427, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_match_weeks": [ - 1707, + 1455, { "distinct_on": [ - 1728, + 1476, "[league_match_weeks_select_column!]" ], "limit": [ @@ -134901,19 +131629,19 @@ export default { 38 ], "order_by": [ - 1726, + 1474, "[league_match_weeks_order_by!]" ], "where": [ - 1716 + 1464 ] } ], "league_match_weeks_aggregate": [ - 1708, + 1456, { "distinct_on": [ - 1728, + 1476, "[league_match_weeks_select_column!]" ], "limit": [ @@ -134923,28 +131651,28 @@ export default { 38 ], "order_by": [ - 1726, + 1474, "[league_match_weeks_order_by!]" ], "where": [ - 1716 + 1464 ] } ], "league_match_weeks_by_pk": [ - 1707, + 1455, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_relegation_playoffs": [ - 1748, + 1496, { "distinct_on": [ - 1769, + 1517, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -134954,19 +131682,19 @@ export default { 38 ], "order_by": [ - 1767, + 1515, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1757 + 1505 ] } ], "league_relegation_playoffs_aggregate": [ - 1749, + 1497, { "distinct_on": [ - 1769, + 1517, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -134976,28 +131704,28 @@ export default { 38 ], "order_by": [ - 1767, + 1515, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1757 + 1505 ] } ], "league_relegation_playoffs_by_pk": [ - 1748, + 1496, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_scheduling_proposals": [ - 1789, + 1537, { "distinct_on": [ - 1810, + 1558, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -135007,19 +131735,19 @@ export default { 38 ], "order_by": [ - 1808, + 1556, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1798 + 1546 ] } ], "league_scheduling_proposals_aggregate": [ - 1790, + 1538, { "distinct_on": [ - 1810, + 1558, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -135029,28 +131757,28 @@ export default { 38 ], "order_by": [ - 1808, + 1556, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1798 + 1546 ] } ], "league_scheduling_proposals_by_pk": [ - 1789, + 1537, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_season_divisions": [ - 1830, + 1578, { "distinct_on": [ - 1849, + 1597, "[league_season_divisions_select_column!]" ], "limit": [ @@ -135060,19 +131788,19 @@ export default { 38 ], "order_by": [ - 1847, + 1595, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1585 ] } ], "league_season_divisions_aggregate": [ - 1831, + 1579, { "distinct_on": [ - 1849, + 1597, "[league_season_divisions_select_column!]" ], "limit": [ @@ -135082,28 +131810,28 @@ export default { 38 ], "order_by": [ - 1847, + 1595, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1585 ] } ], "league_season_divisions_by_pk": [ - 1830, + 1578, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_seasons": [ - 1855, + 1603, { "distinct_on": [ - 1875, + 1623, "[league_seasons_select_column!]" ], "limit": [ @@ -135113,19 +131841,19 @@ export default { 38 ], "order_by": [ - 1872, + 1620, "[league_seasons_order_by!]" ], "where": [ - 1860 + 1608 ] } ], "league_seasons_aggregate": [ - 1856, + 1604, { "distinct_on": [ - 1875, + 1623, "[league_seasons_select_column!]" ], "limit": [ @@ -135135,28 +131863,28 @@ export default { 38 ], "order_by": [ - 1872, + 1620, "[league_seasons_order_by!]" ], "where": [ - 1860 + 1608 ] } ], "league_seasons_by_pk": [ - 1855, + 1603, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_team_movements": [ - 1888, + 1636, { "distinct_on": [ - 1909, + 1657, "[league_team_movements_select_column!]" ], "limit": [ @@ -135166,19 +131894,19 @@ export default { 38 ], "order_by": [ - 1907, + 1655, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1645 ] } ], "league_team_movements_aggregate": [ - 1889, + 1637, { "distinct_on": [ - 1909, + 1657, "[league_team_movements_select_column!]" ], "limit": [ @@ -135188,28 +131916,28 @@ export default { 38 ], "order_by": [ - 1907, + 1655, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1645 ] } ], "league_team_movements_by_pk": [ - 1888, + 1636, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_team_rosters": [ - 1929, + 1677, { "distinct_on": [ - 1950, + 1698, "[league_team_rosters_select_column!]" ], "limit": [ @@ -135219,19 +131947,19 @@ export default { 38 ], "order_by": [ - 1948, + 1696, "[league_team_rosters_order_by!]" ], "where": [ - 1938 + 1686 ] } ], "league_team_rosters_aggregate": [ - 1930, + 1678, { "distinct_on": [ - 1950, + 1698, "[league_team_rosters_select_column!]" ], "limit": [ @@ -135241,19 +131969,19 @@ export default { 38 ], "order_by": [ - 1948, + 1696, "[league_team_rosters_order_by!]" ], "where": [ - 1938 + 1686 ] } ], "league_team_rosters_by_pk": [ - 1929, + 1677, { "league_team_season_id": [ - 4762, + 4621, "uuid!" ], "player_steam_id": [ @@ -135263,10 +131991,10 @@ export default { } ], "league_team_seasons": [ - 1970, + 1718, { "distinct_on": [ - 1992, + 1740, "[league_team_seasons_select_column!]" ], "limit": [ @@ -135276,19 +132004,19 @@ export default { 38 ], "order_by": [ - 1990, + 1738, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 1727 ] } ], "league_team_seasons_aggregate": [ - 1971, + 1719, { "distinct_on": [ - 1992, + 1740, "[league_team_seasons_select_column!]" ], "limit": [ @@ -135298,28 +132026,28 @@ export default { 38 ], "order_by": [ - 1990, + 1738, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 1727 ] } ], "league_team_seasons_by_pk": [ - 1970, + 1718, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_teams": [ - 2012, + 1760, { "distinct_on": [ - 2025, + 1773, "[league_teams_select_column!]" ], "limit": [ @@ -135329,19 +132057,19 @@ export default { 38 ], "order_by": [ - 2023, + 1771, "[league_teams_order_by!]" ], "where": [ - 2015 + 1763 ] } ], "league_teams_aggregate": [ - 2013, + 1761, { "distinct_on": [ - 2025, + 1773, "[league_teams_select_column!]" ], "limit": [ @@ -135351,19 +132079,19 @@ export default { 38 ], "order_by": [ - 2023, + 1771, "[league_teams_order_by!]" ], "where": [ - 2015 + 1763 ] } ], "league_teams_by_pk": [ - 2012, + 1760, { "id": [ - 4762, + 4621, "uuid!" ] } @@ -135384,10 +132112,10 @@ export default { } ], "lobbies": [ - 2031, + 1779, { "distinct_on": [ - 2044, + 1792, "[lobbies_select_column!]" ], "limit": [ @@ -135397,19 +132125,19 @@ export default { 38 ], "order_by": [ - 2042, + 1790, "[lobbies_order_by!]" ], "where": [ - 2034 + 1782 ] } ], "lobbies_aggregate": [ - 2032, + 1780, { "distinct_on": [ - 2044, + 1792, "[lobbies_select_column!]" ], "limit": [ @@ -135419,28 +132147,28 @@ export default { 38 ], "order_by": [ - 2042, + 1790, "[lobbies_order_by!]" ], "where": [ - 2034 + 1782 ] } ], "lobbies_by_pk": [ - 2031, + 1779, { "id": [ - 4762, + 4621, "uuid!" ] } ], "lobby_players": [ - 2050, + 1798, { "distinct_on": [ - 2073, + 1821, "[lobby_players_select_column!]" ], "limit": [ @@ -135450,19 +132178,19 @@ export default { 38 ], "order_by": [ - 2071, + 1819, "[lobby_players_order_by!]" ], "where": [ - 2061 + 1809 ] } ], "lobby_players_aggregate": [ - 2051, + 1799, { "distinct_on": [ - 2073, + 1821, "[lobby_players_select_column!]" ], "limit": [ @@ -135472,19 +132200,19 @@ export default { 38 ], "order_by": [ - 2071, + 1819, "[lobby_players_order_by!]" ], "where": [ - 2061 + 1809 ] } ], "lobby_players_by_pk": [ - 2050, + 1798, { "lobby_id": [ - 4762, + 4621, "uuid!" ], "steam_id": [ @@ -135494,10 +132222,10 @@ export default { } ], "map_pools": [ - 2095, + 1843, { "distinct_on": [ - 2108, + 1856, "[map_pools_select_column!]" ], "limit": [ @@ -135507,19 +132235,19 @@ export default { 38 ], "order_by": [ - 2106, + 1854, "[map_pools_order_by!]" ], "where": [ - 2098 + 1846 ] } ], "map_pools_aggregate": [ - 2096, + 1844, { "distinct_on": [ - 2108, + 1856, "[map_pools_select_column!]" ], "limit": [ @@ -135529,28 +132257,28 @@ export default { 38 ], "order_by": [ - 2106, + 1854, "[map_pools_order_by!]" ], "where": [ - 2098 + 1846 ] } ], "map_pools_by_pk": [ - 2095, + 1843, { "id": [ - 4762, + 4621, "uuid!" ] } ], "maps": [ - 2114, + 1862, { "distinct_on": [ - 2135, + 1883, "[maps_select_column!]" ], "limit": [ @@ -135560,19 +132288,19 @@ export default { 38 ], "order_by": [ - 2133, + 1881, "[maps_order_by!]" ], "where": [ - 2123 + 1871 ] } ], "maps_aggregate": [ - 2115, + 1863, { "distinct_on": [ - 2135, + 1883, "[maps_select_column!]" ], "limit": [ @@ -135582,28 +132310,28 @@ export default { 38 ], "order_by": [ - 2133, + 1881, "[maps_order_by!]" ], "where": [ - 2123 + 1871 ] } ], "maps_by_pk": [ - 2114, + 1862, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_clips": [ - 2143, + 1891, { "distinct_on": [ - 2165, + 1913, "[match_clips_select_column!]" ], "limit": [ @@ -135613,19 +132341,19 @@ export default { 38 ], "order_by": [ - 2163, + 1911, "[match_clips_order_by!]" ], "where": [ - 2152 + 1900 ] } ], "match_clips_aggregate": [ - 2144, + 1892, { "distinct_on": [ - 2165, + 1913, "[match_clips_select_column!]" ], "limit": [ @@ -135635,28 +132363,28 @@ export default { 38 ], "order_by": [ - 2163, + 1911, "[match_clips_order_by!]" ], "where": [ - 2152 + 1900 ] } ], "match_clips_by_pk": [ - 2143, + 1891, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_demo_sessions": [ - 2185, + 1933, { "distinct_on": [ - 2211, + 1959, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -135666,19 +132394,19 @@ export default { 38 ], "order_by": [ - 2208, + 1956, "[match_demo_sessions_order_by!]" ], "where": [ - 2195 + 1943 ] } ], "match_demo_sessions_aggregate": [ - 2186, + 1934, { "distinct_on": [ - 2211, + 1959, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -135688,28 +132416,28 @@ export default { 38 ], "order_by": [ - 2208, + 1956, "[match_demo_sessions_order_by!]" ], "where": [ - 2195 + 1943 ] } ], "match_demo_sessions_by_pk": [ - 2185, + 1933, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_lineup_players": [ - 2231, + 1979, { "distinct_on": [ - 2254, + 2002, "[match_lineup_players_select_column!]" ], "limit": [ @@ -135719,19 +132447,19 @@ export default { 38 ], "order_by": [ - 2252, + 2000, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 1990 ] } ], "match_lineup_players_aggregate": [ - 2232, + 1980, { "distinct_on": [ - 2254, + 2002, "[match_lineup_players_select_column!]" ], "limit": [ @@ -135741,28 +132469,28 @@ export default { 38 ], "order_by": [ - 2252, + 2000, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 1990 ] } ], "match_lineup_players_by_pk": [ - 2231, + 1979, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_lineups": [ - 2276, + 2024, { "distinct_on": [ - 2298, + 2046, "[match_lineups_select_column!]" ], "limit": [ @@ -135772,19 +132500,19 @@ export default { 38 ], "order_by": [ - 2296, + 2044, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2033 ] } ], "match_lineups_aggregate": [ - 2277, + 2025, { "distinct_on": [ - 2298, + 2046, "[match_lineups_select_column!]" ], "limit": [ @@ -135794,28 +132522,28 @@ export default { 38 ], "order_by": [ - 2296, + 2044, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2033 ] } ], "match_lineups_by_pk": [ - 2276, + 2024, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_map_demos": [ - 2318, + 2066, { "distinct_on": [ - 2347, + 2095, "[match_map_demos_select_column!]" ], "limit": [ @@ -135825,19 +132553,19 @@ export default { 38 ], "order_by": [ - 2344, + 2092, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2078 ] } ], "match_map_demos_aggregate": [ - 2319, + 2067, { "distinct_on": [ - 2347, + 2095, "[match_map_demos_select_column!]" ], "limit": [ @@ -135847,28 +132575,28 @@ export default { 38 ], "order_by": [ - 2344, + 2092, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2078 ] } ], "match_map_demos_by_pk": [ - 2318, + 2066, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_map_rounds": [ - 2369, + 2117, { "distinct_on": [ - 2390, + 2138, "[match_map_rounds_select_column!]" ], "limit": [ @@ -135878,19 +132606,19 @@ export default { 38 ], "order_by": [ - 2388, + 2136, "[match_map_rounds_order_by!]" ], "where": [ - 2378 + 2126 ] } ], "match_map_rounds_aggregate": [ - 2370, + 2118, { "distinct_on": [ - 2390, + 2138, "[match_map_rounds_select_column!]" ], "limit": [ @@ -135900,28 +132628,28 @@ export default { 38 ], "order_by": [ - 2388, + 2136, "[match_map_rounds_order_by!]" ], "where": [ - 2378 + 2126 ] } ], "match_map_rounds_by_pk": [ - 2369, + 2117, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_map_veto_picks": [ - 2410, + 2158, { "distinct_on": [ - 2428, + 2176, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -135931,19 +132659,19 @@ export default { 38 ], "order_by": [ - 2426, + 2174, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2165 ] } ], "match_map_veto_picks_aggregate": [ - 2411, + 2159, { "distinct_on": [ - 2428, + 2176, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -135953,28 +132681,28 @@ export default { 38 ], "order_by": [ - 2426, + 2174, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2165 ] } ], "match_map_veto_picks_by_pk": [ - 2410, + 2158, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_maps": [ - 2434, + 2182, { "distinct_on": [ - 2456, + 2204, "[match_maps_select_column!]" ], "limit": [ @@ -135984,19 +132712,19 @@ export default { 38 ], "order_by": [ - 2454, + 2202, "[match_maps_order_by!]" ], "where": [ - 2443 + 2191 ] } ], "match_maps_aggregate": [ - 2435, + 2183, { "distinct_on": [ - 2456, + 2204, "[match_maps_select_column!]" ], "limit": [ @@ -136006,28 +132734,28 @@ export default { 38 ], "order_by": [ - 2454, + 2202, "[match_maps_order_by!]" ], "where": [ - 2443 + 2191 ] } ], "match_maps_by_pk": [ - 2434, + 2182, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_options": [ - 2476, + 2224, { "distinct_on": [ - 2491, + 2239, "[match_options_select_column!]" ], "limit": [ @@ -136037,19 +132765,19 @@ export default { 38 ], "order_by": [ - 2489, + 2237, "[match_options_order_by!]" ], "where": [ - 2480 + 2228 ] } ], "match_options_aggregate": [ - 2477, + 2225, { "distinct_on": [ - 2491, + 2239, "[match_options_select_column!]" ], "limit": [ @@ -136059,28 +132787,28 @@ export default { 38 ], "order_by": [ - 2489, + 2237, "[match_options_order_by!]" ], "where": [ - 2480 + 2228 ] } ], "match_options_by_pk": [ - 2476, + 2224, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_region_veto_picks": [ - 2504, + 2252, { "distinct_on": [ - 2522, + 2270, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -136090,19 +132818,19 @@ export default { 38 ], "order_by": [ - 2520, + 2268, "[match_region_veto_picks_order_by!]" ], "where": [ - 2511 + 2259 ] } ], "match_region_veto_picks_aggregate": [ - 2505, + 2253, { "distinct_on": [ - 2522, + 2270, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -136112,28 +132840,28 @@ export default { 38 ], "order_by": [ - 2520, + 2268, "[match_region_veto_picks_order_by!]" ], "where": [ - 2511 + 2259 ] } ], "match_region_veto_picks_by_pk": [ - 2504, + 2252, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_streams": [ - 2528, + 2276, { "distinct_on": [ - 2556, + 2304, "[match_streams_select_column!]" ], "limit": [ @@ -136143,19 +132871,19 @@ export default { 38 ], "order_by": [ - 2553, + 2301, "[match_streams_order_by!]" ], "where": [ - 2540 + 2288 ] } ], "match_streams_aggregate": [ - 2529, + 2277, { "distinct_on": [ - 2556, + 2304, "[match_streams_select_column!]" ], "limit": [ @@ -136165,28 +132893,28 @@ export default { 38 ], "order_by": [ - 2553, + 2301, "[match_streams_order_by!]" ], "where": [ - 2540 + 2288 ] } ], "match_streams_by_pk": [ - 2528, + 2276, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_type_cfgs": [ - 2578, + 2326, { "distinct_on": [ - 2590, + 2338, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -136196,19 +132924,19 @@ export default { 38 ], "order_by": [ - 2588, + 2336, "[match_type_cfgs_order_by!]" ], "where": [ - 2581 + 2329 ] } ], "match_type_cfgs_aggregate": [ - 2579, + 2327, { "distinct_on": [ - 2590, + 2338, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -136218,28 +132946,28 @@ export default { 38 ], "order_by": [ - 2588, + 2336, "[match_type_cfgs_order_by!]" ], "where": [ - 2581 + 2329 ] } ], "match_type_cfgs_by_pk": [ - 2578, + 2326, { "type": [ - 591, + 578, "e_game_cfg_types_enum!" ] } ], "matches": [ - 2596, + 2344, { "distinct_on": [ - 2618, + 2366, "[matches_select_column!]" ], "limit": [ @@ -136249,19 +132977,19 @@ export default { 38 ], "order_by": [ - 2616, + 2364, "[matches_order_by!]" ], "where": [ - 2605 + 2353 ] } ], "matches_aggregate": [ - 2597, + 2345, { "distinct_on": [ - 2618, + 2366, "[matches_select_column!]" ], "limit": [ @@ -136271,19 +132999,19 @@ export default { 38 ], "order_by": [ - 2616, + 2364, "[matches_order_by!]" ], "where": [ - 2605 + 2353 ] } ], "matches_by_pk": [ - 2596, + 2344, { "id": [ - 4762, + 4621, "uuid!" ] } @@ -136292,10 +133020,10 @@ export default { 45 ], "migration_hashes_hashes": [ - 2638, + 2386, { "distinct_on": [ - 2650, + 2398, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -136305,19 +133033,19 @@ export default { 38 ], "order_by": [ - 2648, + 2396, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2641 + 2389 ] } ], "migration_hashes_hashes_aggregate": [ - 2639, + 2387, { "distinct_on": [ - 2650, + 2398, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -136327,16 +133055,16 @@ export default { 38 ], "order_by": [ - 2648, + 2396, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2641 + 2389 ] } ], "migration_hashes_hashes_by_pk": [ - 2638, + 2386, { "name": [ 78, @@ -136345,10 +133073,10 @@ export default { } ], "my_friends": [ - 2656, + 2404, { "distinct_on": [ - 2681, + 2429, "[my_friends_select_column!]" ], "limit": [ @@ -136358,19 +133086,19 @@ export default { 38 ], "order_by": [ - 2679, + 2427, "[my_friends_order_by!]" ], "where": [ - 2668 + 2416 ] } ], "my_friends_aggregate": [ - 2657, + 2405, { "distinct_on": [ - 2681, + 2429, "[my_friends_select_column!]" ], "limit": [ @@ -136380,11 +133108,11 @@ export default { 38 ], "order_by": [ - 2679, + 2427, "[my_friends_order_by!]" ], "where": [ - 2668 + 2416 ] } ], @@ -136392,7 +133120,7 @@ export default { 48, { "id": [ - 4762, + 4621, "uuid!" ] } @@ -136401,10 +133129,10 @@ export default { 48 ], "news_articles": [ - 2702, + 2450, { "distinct_on": [ - 2716, + 2464, "[news_articles_select_column!]" ], "limit": [ @@ -136414,19 +133142,19 @@ export default { 38 ], "order_by": [ - 2714, + 2462, "[news_articles_order_by!]" ], "where": [ - 2706 + 2454 ] } ], "news_articles_aggregate": [ - 2703, + 2451, { "distinct_on": [ - 2716, + 2464, "[news_articles_select_column!]" ], "limit": [ @@ -136436,28 +133164,28 @@ export default { 38 ], "order_by": [ - 2714, + 2462, "[news_articles_order_by!]" ], "where": [ - 2706 + 2454 ] } ], "news_articles_by_pk": [ - 2702, + 2450, { "id": [ - 4762, + 4621, "uuid!" ] } ], "notifications": [ - 2729, + 2477, { "distinct_on": [ - 2757, + 2505, "[notifications_select_column!]" ], "limit": [ @@ -136467,19 +133195,19 @@ export default { 38 ], "order_by": [ - 2754, + 2502, "[notifications_order_by!]" ], "where": [ - 2741 + 2489 ] } ], "notifications_aggregate": [ - 2730, + 2478, { "distinct_on": [ - 2757, + 2505, "[notifications_select_column!]" ], "limit": [ @@ -136489,28 +133217,28 @@ export default { 38 ], "order_by": [ - 2754, + 2502, "[notifications_order_by!]" ], "where": [ - 2741 + 2489 ] } ], "notifications_by_pk": [ - 2729, + 2477, { "id": [ - 4762, + 4621, "uuid!" ] } ], "pending_match_import_players": [ - 2782, + 2530, { "distinct_on": [ - 2803, + 2551, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -136520,19 +133248,19 @@ export default { 38 ], "order_by": [ - 2801, + 2549, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2539 ] } ], "pending_match_import_players_aggregate": [ - 2783, + 2531, { "distinct_on": [ - 2803, + 2551, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -136542,32 +133270,32 @@ export default { 38 ], "order_by": [ - 2801, + 2549, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2539 ] } ], "pending_match_import_players_by_pk": [ - 2782, + 2530, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2779, + 2527, "numeric!" ] } ], "pending_match_imports": [ - 2823, + 2571, { "distinct_on": [ - 2838, + 2586, "[pending_match_imports_select_column!]" ], "limit": [ @@ -136577,19 +133305,19 @@ export default { 38 ], "order_by": [ - 2836, + 2584, "[pending_match_imports_order_by!]" ], "where": [ - 2827 + 2575 ] } ], "pending_match_imports_aggregate": [ - 2824, + 2572, { "distinct_on": [ - 2838, + 2586, "[pending_match_imports_select_column!]" ], "limit": [ @@ -136599,28 +133327,28 @@ export default { 38 ], "order_by": [ - 2836, + 2584, "[pending_match_imports_order_by!]" ], "where": [ - 2827 + 2575 ] } ], "pending_match_imports_by_pk": [ - 2823, + 2571, { "valve_match_id": [ - 2779, + 2527, "numeric!" ] } ], "player_aim_stats_demo": [ - 2851, + 2599, { "distinct_on": [ - 2865, + 2613, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -136630,19 +133358,19 @@ export default { 38 ], "order_by": [ - 2863, + 2611, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2855 + 2603 ] } ], "player_aim_stats_demo_aggregate": [ - 2852, + 2600, { "distinct_on": [ - 2865, + 2613, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -136652,32 +133380,32 @@ export default { 38 ], "order_by": [ - 2863, + 2611, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2855 + 2603 ] } ], "player_aim_stats_demo_by_pk": [ - 2851, + 2599, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ] } ], "player_aim_weapon_stats": [ - 2878, + 2626, { "distinct_on": [ - 2899, + 2647, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -136687,19 +133415,19 @@ export default { 38 ], "order_by": [ - 2897, + 2645, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2887 + 2635 ] } ], "player_aim_weapon_stats_aggregate": [ - 2879, + 2627, { "distinct_on": [ - 2899, + 2647, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -136709,19 +133437,19 @@ export default { 38 ], "order_by": [ - 2897, + 2645, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2887 + 2635 ] } ], "player_aim_weapon_stats_by_pk": [ - 2878, + 2626, { "match_map_id": [ - 4762, + 4621, "uuid!" ], "steam_id": [ @@ -136735,10 +133463,10 @@ export default { } ], "player_assists": [ - 2919, + 2667, { "distinct_on": [ - 2942, + 2690, "[player_assists_select_column!]" ], "limit": [ @@ -136748,19 +133476,19 @@ export default { 38 ], "order_by": [ - 2940, + 2688, "[player_assists_order_by!]" ], "where": [ - 2930 + 2678 ] } ], "player_assists_aggregate": [ - 2920, + 2668, { "distinct_on": [ - 2942, + 2690, "[player_assists_select_column!]" ], "limit": [ @@ -136770,16 +133498,16 @@ export default { 38 ], "order_by": [ - 2940, + 2688, "[player_assists_order_by!]" ], "where": [ - 2930 + 2678 ] } ], "player_assists_by_pk": [ - 2919, + 2667, { "attacked_steam_id": [ 180, @@ -136790,20 +133518,20 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "player_career_stats_v": [ - 2964, + 2712, { "distinct_on": [ - 2972, + 2720, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -136813,19 +133541,19 @@ export default { 38 ], "order_by": [ - 2971, + 2719, "[player_career_stats_v_order_by!]" ], "where": [ - 2968 + 2716 ] } ], "player_career_stats_v_aggregate": [ - 2965, + 2713, { "distinct_on": [ - 2972, + 2720, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -136835,19 +133563,19 @@ export default { 38 ], "order_by": [ - 2971, + 2719, "[player_career_stats_v_order_by!]" ], "where": [ - 2968 + 2716 ] } ], "player_damages": [ - 2982, + 2730, { "distinct_on": [ - 3003, + 2751, "[player_damages_select_column!]" ], "limit": [ @@ -136857,19 +133585,19 @@ export default { 38 ], "order_by": [ - 3001, + 2749, "[player_damages_order_by!]" ], "where": [ - 2991 + 2739 ] } ], "player_damages_aggregate": [ - 2983, + 2731, { "distinct_on": [ - 3003, + 2751, "[player_damages_select_column!]" ], "limit": [ @@ -136879,36 +133607,36 @@ export default { 38 ], "order_by": [ - 3001, + 2749, "[player_damages_order_by!]" ], "where": [ - 2991 + 2739 ] } ], "player_damages_by_pk": [ - 2982, + 2730, { "id": [ - 4762, + 4621, "uuid!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "player_elo": [ - 3023, + 2771, { "distinct_on": [ - 3037, + 2785, "[player_elo_select_column!]" ], "limit": [ @@ -136918,19 +133646,19 @@ export default { 38 ], "order_by": [ - 3035, + 2783, "[player_elo_order_by!]" ], "where": [ - 3027 + 2775 ] } ], "player_elo_aggregate": [ - 3024, + 2772, { "distinct_on": [ - 3037, + 2785, "[player_elo_select_column!]" ], "limit": [ @@ -136940,19 +133668,19 @@ export default { 38 ], "order_by": [ - 3035, + 2783, "[player_elo_order_by!]" ], "where": [ - 3027 + 2775 ] } ], "player_elo_by_pk": [ - 3023, + 2771, { "match_id": [ - 4762, + 4621, "uuid!" ], "steam_id": [ @@ -136960,16 +133688,16 @@ export default { "bigint!" ], "type": [ - 860, + 847, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 3050, + 2798, { "distinct_on": [ - 3071, + 2819, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -136979,19 +133707,19 @@ export default { 38 ], "order_by": [ - 3069, + 2817, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3059 + 2807 ] } ], "player_faceit_rank_history_aggregate": [ - 3051, + 2799, { "distinct_on": [ - 3071, + 2819, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -137001,28 +133729,28 @@ export default { 38 ], "order_by": [ - 3069, + 2817, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3059 + 2807 ] } ], "player_faceit_rank_history_by_pk": [ - 3050, + 2798, { "id": [ - 4762, + 4621, "uuid!" ] } ], "player_flashes": [ - 3091, + 2839, { "distinct_on": [ - 3114, + 2862, "[player_flashes_select_column!]" ], "limit": [ @@ -137032,19 +133760,19 @@ export default { 38 ], "order_by": [ - 3112, + 2860, "[player_flashes_order_by!]" ], "where": [ - 3102 + 2850 ] } ], "player_flashes_aggregate": [ - 3092, + 2840, { "distinct_on": [ - 3114, + 2862, "[player_flashes_select_column!]" ], "limit": [ @@ -137054,16 +133782,16 @@ export default { 38 ], "order_by": [ - 3112, + 2860, "[player_flashes_order_by!]" ], "where": [ - 3102 + 2850 ] } ], "player_flashes_by_pk": [ - 3091, + 2839, { "attacked_steam_id": [ 180, @@ -137074,20 +133802,20 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "player_kills": [ - 3136, + 2884, { "distinct_on": [ - 3200, + 2948, "[player_kills_select_column!]" ], "limit": [ @@ -137097,19 +133825,19 @@ export default { 38 ], "order_by": [ - 3198, + 2946, "[player_kills_order_by!]" ], "where": [ - 3147 + 2895 ] } ], "player_kills_aggregate": [ - 3137, + 2885, { "distinct_on": [ - 3200, + 2948, "[player_kills_select_column!]" ], "limit": [ @@ -137119,16 +133847,16 @@ export default { 38 ], "order_by": [ - 3198, + 2946, "[player_kills_order_by!]" ], "where": [ - 3147 + 2895 ] } ], "player_kills_by_pk": [ - 3136, + 2884, { "attacked_steam_id": [ 180, @@ -137139,20 +133867,20 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3148, + 2896, { "distinct_on": [ - 3169, + 2917, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -137162,19 +133890,19 @@ export default { 38 ], "order_by": [ - 3167, + 2915, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3157 + 2905 ] } ], "player_kills_by_weapon_aggregate": [ - 3149, + 2897, { "distinct_on": [ - 3169, + 2917, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -137184,16 +133912,16 @@ export default { 38 ], "order_by": [ - 3167, + 2915, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3157 + 2905 ] } ], "player_kills_by_weapon_by_pk": [ - 3148, + 2896, { "player_steam_id": [ 180, @@ -137206,10 +133934,10 @@ export default { } ], "player_leaderboard_rank": [ - 3222, + 2970, { "distinct_on": [ - 3233, + 2981, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -137219,19 +133947,19 @@ export default { 38 ], "order_by": [ - 3232, + 2980, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 2974 ] } ], "player_leaderboard_rank_aggregate": [ - 3223, + 2971, { "distinct_on": [ - 3233, + 2981, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -137241,19 +133969,19 @@ export default { 38 ], "order_by": [ - 3232, + 2980, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 2974 ] } ], "player_match_map_stats": [ - 3245, + 2993, { "distinct_on": [ - 3266, + 3014, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -137263,19 +133991,19 @@ export default { 38 ], "order_by": [ - 3264, + 3012, "[player_match_map_stats_order_by!]" ], "where": [ - 3254 + 3002 ] } ], "player_match_map_stats_aggregate": [ - 3246, + 2994, { "distinct_on": [ - 3266, + 3014, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -137285,19 +134013,19 @@ export default { 38 ], "order_by": [ - 3264, + 3012, "[player_match_map_stats_order_by!]" ], "where": [ - 3254 + 3002 ] } ], "player_match_map_stats_by_pk": [ - 3245, + 2993, { "match_map_id": [ - 4762, + 4621, "uuid!" ], "steam_id": [ @@ -137307,10 +134035,10 @@ export default { } ], "player_match_performance_v": [ - 3286, + 3034, { "distinct_on": [ - 3294, + 3042, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -137320,19 +134048,19 @@ export default { 38 ], "order_by": [ - 3293, + 3041, "[player_match_performance_v_order_by!]" ], "where": [ - 3290 + 3038 ] } ], "player_match_performance_v_aggregate": [ - 3287, + 3035, { "distinct_on": [ - 3294, + 3042, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -137342,19 +134070,19 @@ export default { 38 ], "order_by": [ - 3293, + 3041, "[player_match_performance_v_order_by!]" ], "where": [ - 3290 + 3038 ] } ], "player_match_stats_v": [ - 3304, + 3052, { "distinct_on": [ - 3320, + 3068, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -137364,19 +134092,19 @@ export default { 38 ], "order_by": [ - 3319, + 3067, "[player_match_stats_v_order_by!]" ], "where": [ - 3313 + 3061 ] } ], "player_match_stats_v_aggregate": [ - 3305, + 3053, { "distinct_on": [ - 3320, + 3068, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -137386,19 +134114,19 @@ export default { 38 ], "order_by": [ - 3319, + 3067, "[player_match_stats_v_order_by!]" ], "where": [ - 3313 + 3061 ] } ], "player_objectives": [ - 3337, + 3085, { "distinct_on": [ - 3358, + 3106, "[player_objectives_select_column!]" ], "limit": [ @@ -137408,19 +134136,19 @@ export default { 38 ], "order_by": [ - 3356, + 3104, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3094 ] } ], "player_objectives_aggregate": [ - 3338, + 3086, { "distinct_on": [ - 3358, + 3106, "[player_objectives_select_column!]" ], "limit": [ @@ -137430,19 +134158,19 @@ export default { 38 ], "order_by": [ - 3356, + 3104, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3094 ] } ], "player_objectives_by_pk": [ - 3337, + 3085, { "match_map_id": [ - 4762, + 4621, "uuid!" ], "player_steam_id": [ @@ -137450,16 +134178,16 @@ export default { "bigint!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "player_performance_v": [ - 3378, + 3126, { "distinct_on": [ - 3386, + 3134, "[player_performance_v_select_column!]" ], "limit": [ @@ -137469,19 +134197,19 @@ export default { 38 ], "order_by": [ - 3385, + 3133, "[player_performance_v_order_by!]" ], "where": [ - 3382 + 3130 ] } ], "player_performance_v_aggregate": [ - 3379, + 3127, { "distinct_on": [ - 3386, + 3134, "[player_performance_v_select_column!]" ], "limit": [ @@ -137491,19 +134219,19 @@ export default { 38 ], "order_by": [ - 3385, + 3133, "[player_performance_v_order_by!]" ], "where": [ - 3382 + 3130 ] } ], "player_premier_rank_history": [ - 3396, + 3144, { "distinct_on": [ - 3417, + 3165, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -137513,19 +134241,19 @@ export default { 38 ], "order_by": [ - 3415, + 3163, "[player_premier_rank_history_order_by!]" ], "where": [ - 3405 + 3153 ] } ], "player_premier_rank_history_aggregate": [ - 3397, + 3145, { "distinct_on": [ - 3417, + 3165, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -137535,28 +134263,28 @@ export default { 38 ], "order_by": [ - 3415, + 3163, "[player_premier_rank_history_order_by!]" ], "where": [ - 3405 + 3153 ] } ], "player_premier_rank_history_by_pk": [ - 3396, + 3144, { "id": [ - 4762, + 4621, "uuid!" ] } ], "player_sanctions": [ - 3437, + 3185, { "distinct_on": [ - 3458, + 3206, "[player_sanctions_select_column!]" ], "limit": [ @@ -137566,19 +134294,19 @@ export default { 38 ], "order_by": [ - 3456, + 3204, "[player_sanctions_order_by!]" ], "where": [ - 3446 + 3194 ] } ], "player_sanctions_aggregate": [ - 3438, + 3186, { "distinct_on": [ - 3458, + 3206, "[player_sanctions_select_column!]" ], "limit": [ @@ -137588,32 +134316,32 @@ export default { 38 ], "order_by": [ - 3456, + 3204, "[player_sanctions_order_by!]" ], "where": [ - 3446 + 3194 ] } ], "player_sanctions_by_pk": [ - 3437, + 3185, { "created_at": [ - 4324, + 4076, "timestamptz!" ], "id": [ - 4762, + 4621, "uuid!" ] } ], "player_season_stats": [ - 3478, + 3226, { "distinct_on": [ - 3509, + 3257, "[player_season_stats_select_column!]" ], "limit": [ @@ -137623,19 +134351,19 @@ export default { 38 ], "order_by": [ - 3507, + 3255, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3245 ] } ], "player_season_stats_aggregate": [ - 3479, + 3227, { "distinct_on": [ - 3509, + 3257, "[player_season_stats_select_column!]" ], "limit": [ @@ -137645,32 +134373,32 @@ export default { 38 ], "order_by": [ - 3507, + 3255, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3245 ] } ], "player_season_stats_by_pk": [ - 3478, + 3226, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4762, + 4621, "uuid!" ] } ], "player_stats": [ - 3537, + 3285, { "distinct_on": [ - 3552, + 3300, "[player_stats_select_column!]" ], "limit": [ @@ -137680,19 +134408,19 @@ export default { 38 ], "order_by": [ - 3550, + 3298, "[player_stats_order_by!]" ], "where": [ - 3541 + 3289 ] } ], "player_stats_aggregate": [ - 3538, + 3286, { "distinct_on": [ - 3552, + 3300, "[player_stats_select_column!]" ], "limit": [ @@ -137702,16 +134430,16 @@ export default { 38 ], "order_by": [ - 3550, + 3298, "[player_stats_order_by!]" ], "where": [ - 3541 + 3289 ] } ], "player_stats_by_pk": [ - 3537, + 3285, { "player_steam_id": [ 180, @@ -137720,10 +134448,10 @@ export default { } ], "player_steam_bot_friend": [ - 3565, + 3313, { "distinct_on": [ - 3584, + 3332, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -137733,19 +134461,19 @@ export default { 38 ], "order_by": [ - 3581, + 3329, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3570 + 3318 ] } ], "player_steam_bot_friend_aggregate": [ - 3566, + 3314, { "distinct_on": [ - 3584, + 3332, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -137755,16 +134483,16 @@ export default { 38 ], "order_by": [ - 3581, + 3329, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3570 + 3318 ] } ], "player_steam_bot_friend_by_pk": [ - 3565, + 3313, { "steam_id": [ 180, @@ -137773,10 +134501,10 @@ export default { } ], "player_steam_match_auth": [ - 3597, + 3345, { "distinct_on": [ - 3611, + 3359, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -137786,19 +134514,19 @@ export default { 38 ], "order_by": [ - 3609, + 3357, "[player_steam_match_auth_order_by!]" ], "where": [ - 3601 + 3349 ] } ], "player_steam_match_auth_aggregate": [ - 3598, + 3346, { "distinct_on": [ - 3611, + 3359, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -137808,16 +134536,16 @@ export default { 38 ], "order_by": [ - 3609, + 3357, "[player_steam_match_auth_order_by!]" ], "where": [ - 3601 + 3349 ] } ], "player_steam_match_auth_by_pk": [ - 3597, + 3345, { "steam_id": [ 180, @@ -137826,10 +134554,10 @@ export default { } ], "player_unused_utility": [ - 3624, + 3372, { "distinct_on": [ - 3645, + 3393, "[player_unused_utility_select_column!]" ], "limit": [ @@ -137839,19 +134567,19 @@ export default { 38 ], "order_by": [ - 3643, + 3391, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3381 ] } ], "player_unused_utility_aggregate": [ - 3625, + 3373, { "distinct_on": [ - 3645, + 3393, "[player_unused_utility_select_column!]" ], "limit": [ @@ -137861,19 +134589,19 @@ export default { 38 ], "order_by": [ - 3643, + 3391, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3381 ] } ], "player_unused_utility_by_pk": [ - 3624, + 3372, { "match_map_id": [ - 4762, + 4621, "uuid!" ], "player_steam_id": [ @@ -137883,10 +134611,10 @@ export default { } ], "player_utility": [ - 3665, + 3413, { "distinct_on": [ - 3686, + 3434, "[player_utility_select_column!]" ], "limit": [ @@ -137896,19 +134624,19 @@ export default { 38 ], "order_by": [ - 3684, + 3432, "[player_utility_order_by!]" ], "where": [ - 3674 + 3422 ] } ], "player_utility_aggregate": [ - 3666, + 3414, { "distinct_on": [ - 3686, + 3434, "[player_utility_select_column!]" ], "limit": [ @@ -137918,36 +134646,36 @@ export default { 38 ], "order_by": [ - 3684, + 3432, "[player_utility_order_by!]" ], "where": [ - 3674 + 3422 ] } ], "player_utility_by_pk": [ - 3665, + 3413, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 3706, + 3454, { "distinct_on": [ - 3722, + 3470, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -137957,19 +134685,19 @@ export default { 38 ], "order_by": [ - 3721, + 3469, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3715 + 3463 ] } ], "player_weapon_stats_v_aggregate": [ - 3707, + 3455, { "distinct_on": [ - 3722, + 3470, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -137979,19 +134707,19 @@ export default { 38 ], "order_by": [ - 3721, + 3469, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3715 + 3463 ] } ], "players": [ - 3739, + 3487, { "distinct_on": [ - 3754, + 3502, "[players_select_column!]" ], "limit": [ @@ -138001,19 +134729,19 @@ export default { 38 ], "order_by": [ - 3752, + 3500, "[players_order_by!]" ], "where": [ - 3743 + 3491 ] } ], "players_aggregate": [ - 3740, + 3488, { "distinct_on": [ - 3754, + 3502, "[players_select_column!]" ], "limit": [ @@ -138023,16 +134751,16 @@ export default { 38 ], "order_by": [ - 3752, + 3500, "[players_order_by!]" ], "where": [ - 3743 + 3491 ] } ], "players_by_pk": [ - 3739, + 3487, { "steam_id": [ 180, @@ -138041,10 +134769,10 @@ export default { } ], "plugin_versions": [ - 3767, + 3515, { "distinct_on": [ - 3781, + 3529, "[plugin_versions_select_column!]" ], "limit": [ @@ -138054,19 +134782,19 @@ export default { 38 ], "order_by": [ - 3779, + 3527, "[plugin_versions_order_by!]" ], "where": [ - 3771 + 3519 ] } ], "plugin_versions_aggregate": [ - 3768, + 3516, { "distinct_on": [ - 3781, + 3529, "[plugin_versions_select_column!]" ], "limit": [ @@ -138076,19 +134804,19 @@ export default { 38 ], "order_by": [ - 3779, + 3527, "[plugin_versions_order_by!]" ], "where": [ - 3771 + 3519 ] } ], "plugin_versions_by_pk": [ - 3767, + 3515, { "runtime": [ - 941, + 928, "e_plugin_runtimes_enum!" ], "version": [ @@ -138114,10 +134842,10 @@ export default { } ], "seasons": [ - 3798, + 3546, { "distinct_on": [ - 3813, + 3561, "[seasons_select_column!]" ], "limit": [ @@ -138127,19 +134855,19 @@ export default { 38 ], "order_by": [ - 3811, + 3559, "[seasons_order_by!]" ], "where": [ - 3802 + 3550 ] } ], "seasons_aggregate": [ - 3799, + 3547, { "distinct_on": [ - 3813, + 3561, "[seasons_select_column!]" ], "limit": [ @@ -138149,28 +134877,28 @@ export default { 38 ], "order_by": [ - 3811, + 3559, "[seasons_order_by!]" ], "where": [ - 3802 + 3550 ] } ], "seasons_by_pk": [ - 3798, + 3546, { "id": [ - 4762, + 4621, "uuid!" ] } ], "server_regions": [ - 3826, + 3574, { "distinct_on": [ - 3840, + 3588, "[server_regions_select_column!]" ], "limit": [ @@ -138180,19 +134908,19 @@ export default { 38 ], "order_by": [ - 3838, + 3586, "[server_regions_order_by!]" ], "where": [ - 3830 + 3578 ] } ], "server_regions_aggregate": [ - 3827, + 3575, { "distinct_on": [ - 3840, + 3588, "[server_regions_select_column!]" ], "limit": [ @@ -138202,16 +134930,16 @@ export default { 38 ], "order_by": [ - 3838, + 3586, "[server_regions_order_by!]" ], "where": [ - 3830 + 3578 ] } ], "server_regions_by_pk": [ - 3826, + 3574, { "value": [ 78, @@ -138220,10 +134948,10 @@ export default { } ], "servers": [ - 3853, + 3601, { "distinct_on": [ - 3877, + 3625, "[servers_select_column!]" ], "limit": [ @@ -138233,19 +134961,19 @@ export default { 38 ], "order_by": [ - 3875, + 3623, "[servers_order_by!]" ], "where": [ - 3864 + 3612 ] } ], "servers_aggregate": [ - 3854, + 3602, { "distinct_on": [ - 3877, + 3625, "[servers_select_column!]" ], "limit": [ @@ -138255,28 +134983,28 @@ export default { 38 ], "order_by": [ - 3875, + 3623, "[servers_order_by!]" ], "where": [ - 3864 + 3612 ] } ], "servers_by_pk": [ - 3853, + 3601, { "id": [ - 4762, + 4621, "uuid!" ] } ], "settings": [ - 3899, + 3647, { "distinct_on": [ - 3911, + 3659, "[settings_select_column!]" ], "limit": [ @@ -138286,19 +135014,19 @@ export default { 38 ], "order_by": [ - 3909, + 3657, "[settings_order_by!]" ], "where": [ - 3902 + 3650 ] } ], "settings_aggregate": [ - 3900, + 3648, { "distinct_on": [ - 3911, + 3659, "[settings_select_column!]" ], "limit": [ @@ -138308,16 +135036,16 @@ export default { 38 ], "order_by": [ - 3909, + 3657, "[settings_order_by!]" ], "where": [ - 3902 + 3650 ] } ], "settings_by_pk": [ - 3899, + 3647, { "name": [ 78, @@ -138329,10 +135057,10 @@ export default { 72 ], "steam_account_claims": [ - 3919, + 3667, { "distinct_on": [ - 3937, + 3685, "[steam_account_claims_select_column!]" ], "limit": [ @@ -138342,19 +135070,19 @@ export default { 38 ], "order_by": [ - 3935, + 3683, "[steam_account_claims_order_by!]" ], "where": [ - 3926 + 3674 ] } ], "steam_account_claims_aggregate": [ - 3920, + 3668, { "distinct_on": [ - 3937, + 3685, "[steam_account_claims_select_column!]" ], "limit": [ @@ -138364,28 +135092,28 @@ export default { 38 ], "order_by": [ - 3935, + 3683, "[steam_account_claims_order_by!]" ], "where": [ - 3926 + 3674 ] } ], "steam_account_claims_by_pk": [ - 3919, + 3667, { "id": [ - 4762, + 4621, "uuid!" ] } ], "steam_accounts": [ - 3943, + 3691, { "distinct_on": [ - 3958, + 3706, "[steam_accounts_select_column!]" ], "limit": [ @@ -138395,19 +135123,19 @@ export default { 38 ], "order_by": [ - 3956, + 3704, "[steam_accounts_order_by!]" ], "where": [ - 3947 + 3695 ] } ], "steam_accounts_aggregate": [ - 3944, + 3692, { "distinct_on": [ - 3958, + 3706, "[steam_accounts_select_column!]" ], "limit": [ @@ -138417,28 +135145,28 @@ export default { 38 ], "order_by": [ - 3956, + 3704, "[steam_accounts_order_by!]" ], "where": [ - 3947 + 3695 ] } ], "steam_accounts_by_pk": [ - 3943, + 3691, { "id": [ - 4762, + 4621, "uuid!" ] } ], "system_alerts": [ - 3971, + 3719, { "distinct_on": [ - 3985, + 3733, "[system_alerts_select_column!]" ], "limit": [ @@ -138448,19 +135176,19 @@ export default { 38 ], "order_by": [ - 3983, + 3731, "[system_alerts_order_by!]" ], "where": [ - 3975 + 3723 ] } ], "system_alerts_aggregate": [ - 3972, + 3720, { "distinct_on": [ - 3985, + 3733, "[system_alerts_select_column!]" ], "limit": [ @@ -138470,19 +135198,19 @@ export default { 38 ], "order_by": [ - 3983, + 3731, "[system_alerts_order_by!]" ], "where": [ - 3975 + 3723 ] } ], "system_alerts_by_pk": [ - 3971, + 3719, { "id": [ - 4762, + 4621, "uuid!" ] } @@ -138491,16 +135219,16 @@ export default { 85, { "team_id": [ - 4762, + 4621, "uuid!" ] } ], "team_invites": [ - 3998, + 3746, { "distinct_on": [ - 4019, + 3767, "[team_invites_select_column!]" ], "limit": [ @@ -138510,19 +135238,19 @@ export default { 38 ], "order_by": [ - 4017, + 3765, "[team_invites_order_by!]" ], "where": [ - 4007 + 3755 ] } ], "team_invites_aggregate": [ - 3999, + 3747, { "distinct_on": [ - 4019, + 3767, "[team_invites_select_column!]" ], "limit": [ @@ -138532,28 +135260,28 @@ export default { 38 ], "order_by": [ - 4017, + 3765, "[team_invites_order_by!]" ], "where": [ - 4007 + 3755 ] } ], "team_invites_by_pk": [ - 3998, + 3746, { "id": [ - 4762, + 4621, "uuid!" ] } ], "team_roster": [ - 4039, + 3787, { "distinct_on": [ - 4062, + 3810, "[team_roster_select_column!]" ], "limit": [ @@ -138563,19 +135291,19 @@ export default { 38 ], "order_by": [ - 4060, + 3808, "[team_roster_order_by!]" ], "where": [ - 4050 + 3798 ] } ], "team_roster_aggregate": [ - 4040, + 3788, { "distinct_on": [ - 4062, + 3810, "[team_roster_select_column!]" ], "limit": [ @@ -138585,32 +135313,32 @@ export default { 38 ], "order_by": [ - 4060, + 3808, "[team_roster_order_by!]" ], "where": [ - 4050 + 3798 ] } ], "team_roster_by_pk": [ - 4039, + 3787, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4762, + 4621, "uuid!" ] } ], "team_scrim_alerts": [ - 4084, + 3832, { "distinct_on": [ - 4098, + 3846, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -138620,19 +135348,19 @@ export default { 38 ], "order_by": [ - 4096, + 3844, "[team_scrim_alerts_order_by!]" ], "where": [ - 4088 + 3836 ] } ], "team_scrim_alerts_aggregate": [ - 4085, + 3833, { "distinct_on": [ - 4098, + 3846, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -138642,28 +135370,28 @@ export default { 38 ], "order_by": [ - 4096, + 3844, "[team_scrim_alerts_order_by!]" ], "where": [ - 4088 + 3836 ] } ], "team_scrim_alerts_by_pk": [ - 4084, + 3832, { "id": [ - 4762, + 4621, "uuid!" ] } ], "team_scrim_availability": [ - 4111, + 3859, { "distinct_on": [ - 4131, + 3879, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -138673,19 +135401,19 @@ export default { 38 ], "order_by": [ - 4129, + 3877, "[team_scrim_availability_order_by!]" ], "where": [ - 4120 + 3868 ] } ], "team_scrim_availability_aggregate": [ - 4112, + 3860, { "distinct_on": [ - 4131, + 3879, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -138695,28 +135423,28 @@ export default { 38 ], "order_by": [ - 4129, + 3877, "[team_scrim_availability_order_by!]" ], "where": [ - 4120 + 3868 ] } ], "team_scrim_availability_by_pk": [ - 4111, + 3859, { "id": [ - 4762, + 4621, "uuid!" ] } ], "team_scrim_request_proposals": [ - 4139, + 3887, { "distinct_on": [ - 4160, + 3908, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -138726,19 +135454,19 @@ export default { 38 ], "order_by": [ - 4158, + 3906, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4148 + 3896 ] } ], "team_scrim_request_proposals_aggregate": [ - 4140, + 3888, { "distinct_on": [ - 4160, + 3908, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -138748,28 +135476,28 @@ export default { 38 ], "order_by": [ - 4158, + 3906, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4148 + 3896 ] } ], "team_scrim_request_proposals_by_pk": [ - 4139, + 3887, { "id": [ - 4762, + 4621, "uuid!" ] } ], "team_scrim_requests": [ - 4180, + 3928, { "distinct_on": [ - 4204, + 3952, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -138779,19 +135507,19 @@ export default { 38 ], "order_by": [ - 4202, + 3950, "[team_scrim_requests_order_by!]" ], "where": [ - 4191 + 3939 ] } ], "team_scrim_requests_aggregate": [ - 4181, + 3929, { "distinct_on": [ - 4204, + 3952, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -138801,28 +135529,28 @@ export default { 38 ], "order_by": [ - 4202, + 3950, "[team_scrim_requests_order_by!]" ], "where": [ - 4191 + 3939 ] } ], "team_scrim_requests_by_pk": [ - 4180, + 3928, { "id": [ - 4762, + 4621, "uuid!" ] } ], "team_scrim_settings": [ - 4226, + 3974, { "distinct_on": [ - 4241, + 3989, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -138832,19 +135560,19 @@ export default { 38 ], "order_by": [ - 4239, + 3987, "[team_scrim_settings_order_by!]" ], "where": [ - 4230 + 3978 ] } ], "team_scrim_settings_aggregate": [ - 4227, + 3975, { "distinct_on": [ - 4241, + 3989, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -138854,28 +135582,28 @@ export default { 38 ], "order_by": [ - 4239, + 3987, "[team_scrim_settings_order_by!]" ], "where": [ - 4230 + 3978 ] } ], "team_scrim_settings_by_pk": [ - 4226, + 3974, { "id": [ - 4762, + 4621, "uuid!" ] } ], "team_suggestions": [ - 4254, + 4002, { "distinct_on": [ - 4268, + 4016, "[team_suggestions_select_column!]" ], "limit": [ @@ -138885,19 +135613,19 @@ export default { 38 ], "order_by": [ - 4266, + 4014, "[team_suggestions_order_by!]" ], "where": [ - 4258 + 4006 ] } ], "team_suggestions_aggregate": [ - 4255, + 4003, { "distinct_on": [ - 4268, + 4016, "[team_suggestions_select_column!]" ], "limit": [ @@ -138907,28 +135635,28 @@ export default { 38 ], "order_by": [ - 4266, + 4014, "[team_suggestions_order_by!]" ], "where": [ - 4258 + 4006 ] } ], "team_suggestions_by_pk": [ - 4254, + 4002, { "id": [ - 4762, + 4621, "uuid!" ] } ], "teams": [ - 4281, + 4029, { "distinct_on": [ - 4303, + 4053, "[teams_select_column!]" ], "limit": [ @@ -138938,19 +135666,19 @@ export default { 38 ], "order_by": [ - 4301, + 4051, "[teams_order_by!]" ], "where": [ - 4290 + 4040 ] } ], "teams_aggregate": [ - 4282, + 4030, { "distinct_on": [ - 4303, + 4053, "[teams_select_column!]" ], "limit": [ @@ -138960,19 +135688,19 @@ export default { 38 ], "order_by": [ - 4301, + 4051, "[teams_order_by!]" ], "where": [ - 4290 + 4040 ] } ], "teams_by_pk": [ - 4281, + 4029, { "id": [ - 4762, + 4621, "uuid!" ] } @@ -138981,10 +135709,10 @@ export default { 86 ], "tournament_brackets": [ - 4326, + 4078, { "distinct_on": [ - 4350, + 4102, "[tournament_brackets_select_column!]" ], "limit": [ @@ -138994,19 +135722,19 @@ export default { 38 ], "order_by": [ - 4348, + 4100, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4089 ] } ], "tournament_brackets_aggregate": [ - 4327, + 4079, { "distinct_on": [ - 4350, + 4102, "[tournament_brackets_select_column!]" ], "limit": [ @@ -139016,28 +135744,142 @@ export default { 38 ], "order_by": [ - 4348, + 4100, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4089 ] } ], "tournament_brackets_by_pk": [ - 4326, + 4078, { "id": [ - 4762, + 4621, + "uuid!" + ] + } + ], + "tournament_categories": [ + 4124, + { + "distinct_on": [ + 4142, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4140, + "[tournament_categories_order_by!]" + ], + "where": [ + 4131 + ] + } + ], + "tournament_categories_aggregate": [ + 4125, + { + "distinct_on": [ + 4142, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4140, + "[tournament_categories_order_by!]" + ], + "where": [ + 4131 + ] + } + ], + "tournament_categories_by_pk": [ + 4124, + { + "category": [ + 1130, + "e_tournament_categories_enum!" + ], + "tournament_id": [ + 4621, + "uuid!" + ] + } + ], + "tournament_organizer_teams": [ + 4148, + { + "distinct_on": [ + 4166, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4164, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 4155 + ] + } + ], + "tournament_organizer_teams_aggregate": [ + 4149, + { + "distinct_on": [ + 4166, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4164, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 4155 + ] + } + ], + "tournament_organizer_teams_by_pk": [ + 4148, + { + "team_id": [ + 4621, + "uuid!" + ], + "tournament_id": [ + 4621, "uuid!" ] } ], "tournament_organizers": [ - 4372, + 4172, { "distinct_on": [ - 4393, + 4193, "[tournament_organizers_select_column!]" ], "limit": [ @@ -139047,19 +135889,19 @@ export default { 38 ], "order_by": [ - 4391, + 4191, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4181 ] } ], "tournament_organizers_aggregate": [ - 4373, + 4173, { "distinct_on": [ - 4393, + 4193, "[tournament_organizers_select_column!]" ], "limit": [ @@ -139069,32 +135911,85 @@ export default { 38 ], "order_by": [ - 4391, + 4191, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4181 ] } ], "tournament_organizers_by_pk": [ - 4372, + 4172, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4762, + 4621, + "uuid!" + ] + } + ], + "tournament_prizes": [ + 4213, + { + "distinct_on": [ + 4234, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4232, + "[tournament_prizes_order_by!]" + ], + "where": [ + 4222 + ] + } + ], + "tournament_prizes_aggregate": [ + 4214, + { + "distinct_on": [ + 4234, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4232, + "[tournament_prizes_order_by!]" + ], + "where": [ + 4222 + ] + } + ], + "tournament_prizes_by_pk": [ + 4213, + { + "id": [ + 4621, "uuid!" ] } ], "tournament_stage_windows": [ - 4413, + 4254, { "distinct_on": [ - 4434, + 4275, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -139104,19 +135999,19 @@ export default { 38 ], "order_by": [ - 4432, + 4273, "[tournament_stage_windows_order_by!]" ], "where": [ - 4422 + 4263 ] } ], "tournament_stage_windows_aggregate": [ - 4414, + 4255, { "distinct_on": [ - 4434, + 4275, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -139126,28 +136021,28 @@ export default { 38 ], "order_by": [ - 4432, + 4273, "[tournament_stage_windows_order_by!]" ], "where": [ - 4422 + 4263 ] } ], "tournament_stage_windows_by_pk": [ - 4413, + 4254, { "id": [ - 4762, + 4621, "uuid!" ] } ], "tournament_stages": [ - 4454, + 4295, { "distinct_on": [ - 4483, + 4324, "[tournament_stages_select_column!]" ], "limit": [ @@ -139157,19 +136052,19 @@ export default { 38 ], "order_by": [ - 4480, + 4321, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4307 ] } ], "tournament_stages_aggregate": [ - 4455, + 4296, { "distinct_on": [ - 4483, + 4324, "[tournament_stages_select_column!]" ], "limit": [ @@ -139179,28 +136074,28 @@ export default { 38 ], "order_by": [ - 4480, + 4321, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4307 ] } ], "tournament_stages_by_pk": [ - 4454, + 4295, { "id": [ - 4762, + 4621, "uuid!" ] } ], "tournament_team_invites": [ - 4505, + 4346, { "distinct_on": [ - 4526, + 4367, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -139210,19 +136105,19 @@ export default { 38 ], "order_by": [ - 4524, + 4365, "[tournament_team_invites_order_by!]" ], "where": [ - 4514 + 4355 ] } ], "tournament_team_invites_aggregate": [ - 4506, + 4347, { "distinct_on": [ - 4526, + 4367, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -139232,28 +136127,28 @@ export default { 38 ], "order_by": [ - 4524, + 4365, "[tournament_team_invites_order_by!]" ], "where": [ - 4514 + 4355 ] } ], "tournament_team_invites_by_pk": [ - 4505, + 4346, { "id": [ - 4762, + 4621, "uuid!" ] } ], "tournament_team_roster": [ - 4546, + 4387, { "distinct_on": [ - 4567, + 4408, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -139263,19 +136158,19 @@ export default { 38 ], "order_by": [ - 4565, + 4406, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4396 ] } ], "tournament_team_roster_aggregate": [ - 4547, + 4388, { "distinct_on": [ - 4567, + 4408, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -139285,32 +136180,32 @@ export default { 38 ], "order_by": [ - 4565, + 4406, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4396 ] } ], "tournament_team_roster_by_pk": [ - 4546, + 4387, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4762, + 4621, "uuid!" ] } ], "tournament_teams": [ - 4587, + 4428, { "distinct_on": [ - 4609, + 4450, "[tournament_teams_select_column!]" ], "limit": [ @@ -139320,19 +136215,19 @@ export default { 38 ], "order_by": [ - 4607, + 4448, "[tournament_teams_order_by!]" ], "where": [ - 4596 + 4437 ] } ], "tournament_teams_aggregate": [ - 4588, + 4429, { "distinct_on": [ - 4609, + 4450, "[tournament_teams_select_column!]" ], "limit": [ @@ -139342,28 +136237,28 @@ export default { 38 ], "order_by": [ - 4607, + 4448, "[tournament_teams_order_by!]" ], "where": [ - 4596 + 4437 ] } ], "tournament_teams_by_pk": [ - 4587, + 4428, { "id": [ - 4762, + 4621, "uuid!" ] } ], "tournament_trophies": [ - 4629, + 4470, { "distinct_on": [ - 4652, + 4493, "[tournament_trophies_select_column!]" ], "limit": [ @@ -139373,19 +136268,19 @@ export default { 38 ], "order_by": [ - 4650, + 4491, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4481 ] } ], "tournament_trophies_aggregate": [ - 4630, + 4471, { "distinct_on": [ - 4652, + 4493, "[tournament_trophies_select_column!]" ], "limit": [ @@ -139395,28 +136290,28 @@ export default { 38 ], "order_by": [ - 4650, + 4491, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4481 ] } ], "tournament_trophies_by_pk": [ - 4629, + 4470, { "id": [ - 4762, + 4621, "uuid!" ] } ], "tournament_trophy_configs": [ - 4674, + 4515, { "distinct_on": [ - 4696, + 4537, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -139426,19 +136321,19 @@ export default { 38 ], "order_by": [ - 4694, + 4535, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4683 + 4524 ] } ], "tournament_trophy_configs_aggregate": [ - 4675, + 4516, { "distinct_on": [ - 4696, + 4537, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -139448,28 +136343,28 @@ export default { 38 ], "order_by": [ - 4694, + 4535, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4683 + 4524 ] } ], "tournament_trophy_configs_by_pk": [ - 4674, + 4515, { "id": [ - 4762, + 4621, "uuid!" ] } ], "tournaments": [ - 4716, + 4557, { "distinct_on": [ - 4740, + 4591, "[tournaments_select_column!]" ], "limit": [ @@ -139479,19 +136374,19 @@ export default { 38 ], "order_by": [ - 4738, + 4589, "[tournaments_order_by!]" ], "where": [ - 4727 + 4578 ] } ], "tournaments_aggregate": [ - 4717, + 4558, { "distinct_on": [ - 4740, + 4591, "[tournaments_select_column!]" ], "limit": [ @@ -139501,72 +136396,28 @@ export default { 38 ], "order_by": [ - 4738, + 4589, "[tournaments_order_by!]" ], "where": [ - 4727 + 4578 ] } ], "tournaments_by_pk": [ - 4716, + 4557, { "id": [ - 4762, + 4621, "uuid!" ] } ], - "v_event_player_stats": [ - 4765, - { - "distinct_on": [ - 4791, - "[v_event_player_stats_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4790, - "[v_event_player_stats_order_by!]" - ], - "where": [ - 4784 - ] - } - ], - "v_event_player_stats_aggregate": [ - 4766, - { - "distinct_on": [ - 4791, - "[v_event_player_stats_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4790, - "[v_event_player_stats_order_by!]" - ], - "where": [ - 4784 - ] - } - ], "v_gpu_pool_status": [ - 4816, + 4624, { "distinct_on": [ - 4824, + 4632, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -139576,19 +136427,19 @@ export default { 38 ], "order_by": [ - 4823, + 4631, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4820 + 4628 ] } ], "v_gpu_pool_status_aggregate": [ - 4817, + 4625, { "distinct_on": [ - 4824, + 4632, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -139598,19 +136449,19 @@ export default { 38 ], "order_by": [ - 4823, + 4631, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4820 + 4628 ] } ], "v_league_division_standings": [ - 4834, + 4642, { "distinct_on": [ - 4850, + 4658, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -139620,19 +136471,19 @@ export default { 38 ], "order_by": [ - 4849, + 4657, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 4651 ] } ], "v_league_division_standings_aggregate": [ - 4835, + 4643, { "distinct_on": [ - 4850, + 4658, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -139642,19 +136493,19 @@ export default { 38 ], "order_by": [ - 4849, + 4657, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 4651 ] } ], "v_league_season_player_stats": [ - 4867, + 4675, { "distinct_on": [ - 4893, + 4701, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -139664,19 +136515,19 @@ export default { 38 ], "order_by": [ - 4892, + 4700, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4886 + 4694 ] } ], "v_league_season_player_stats_aggregate": [ - 4868, + 4676, { "distinct_on": [ - 4893, + 4701, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -139686,19 +136537,19 @@ export default { 38 ], "order_by": [ - 4892, + 4700, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4886 + 4694 ] } ], "v_match_captains": [ - 4918, + 4726, { "distinct_on": [ - 4930, + 4738, "[v_match_captains_select_column!]" ], "limit": [ @@ -139708,19 +136559,19 @@ export default { 38 ], "order_by": [ - 4929, + 4737, "[v_match_captains_order_by!]" ], "where": [ - 4922 + 4730 ] } ], "v_match_captains_aggregate": [ - 4919, + 4727, { "distinct_on": [ - 4930, + 4738, "[v_match_captains_select_column!]" ], "limit": [ @@ -139730,19 +136581,19 @@ export default { 38 ], "order_by": [ - 4929, + 4737, "[v_match_captains_order_by!]" ], "where": [ - 4922 + 4730 ] } ], "v_match_clutches": [ - 4942, + 4750, { "distinct_on": [ - 4958, + 4766, "[v_match_clutches_select_column!]" ], "limit": [ @@ -139752,19 +136603,19 @@ export default { 38 ], "order_by": [ - 4957, + 4765, "[v_match_clutches_order_by!]" ], "where": [ - 4951 + 4759 ] } ], "v_match_clutches_aggregate": [ - 4943, + 4751, { "distinct_on": [ - 4958, + 4766, "[v_match_clutches_select_column!]" ], "limit": [ @@ -139774,19 +136625,19 @@ export default { 38 ], "order_by": [ - 4957, + 4765, "[v_match_clutches_order_by!]" ], "where": [ - 4951 + 4759 ] } ], "v_match_kill_pairs": [ - 4975, + 4783, { "distinct_on": [ - 4983, + 4791, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -139796,19 +136647,19 @@ export default { 38 ], "order_by": [ - 4982, + 4790, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4979 + 4787 ] } ], "v_match_kill_pairs_aggregate": [ - 4976, + 4784, { "distinct_on": [ - 4983, + 4791, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -139818,19 +136669,19 @@ export default { 38 ], "order_by": [ - 4982, + 4790, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4979 + 4787 ] } ], "v_match_lineup_buy_types": [ - 4993, + 4801, { "distinct_on": [ - 5001, + 4809, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -139840,19 +136691,19 @@ export default { 38 ], "order_by": [ - 5000, + 4808, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4997 + 4805 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4994, + 4802, { "distinct_on": [ - 5001, + 4809, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -139862,19 +136713,19 @@ export default { 38 ], "order_by": [ - 5000, + 4808, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4997 + 4805 ] } ], "v_match_lineup_map_stats": [ - 5011, + 4819, { "distinct_on": [ - 5019, + 4827, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -139884,19 +136735,19 @@ export default { 38 ], "order_by": [ - 5018, + 4826, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5015 + 4823 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5012, + 4820, { "distinct_on": [ - 5019, + 4827, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -139906,19 +136757,19 @@ export default { 38 ], "order_by": [ - 5018, + 4826, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5015 + 4823 ] } ], "v_match_map_backup_rounds": [ - 5029, + 4837, { "distinct_on": [ - 5040, + 4848, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -139928,19 +136779,19 @@ export default { 38 ], "order_by": [ - 5039, + 4847, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5033 + 4841 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5030, + 4838, { "distinct_on": [ - 5040, + 4848, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -139950,19 +136801,19 @@ export default { 38 ], "order_by": [ - 5039, + 4847, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5033 + 4841 ] } ], "v_match_player_buy_types": [ - 5052, + 4860, { "distinct_on": [ - 5060, + 4868, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -139972,19 +136823,19 @@ export default { 38 ], "order_by": [ - 5059, + 4867, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5056 + 4864 ] } ], "v_match_player_buy_types_aggregate": [ - 5053, + 4861, { "distinct_on": [ - 5060, + 4868, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -139994,19 +136845,19 @@ export default { 38 ], "order_by": [ - 5059, + 4867, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5056 + 4864 ] } ], "v_match_player_opening_duels": [ - 5070, + 4878, { "distinct_on": [ - 5086, + 4894, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -140016,19 +136867,19 @@ export default { 38 ], "order_by": [ - 5085, + 4893, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5079 + 4887 ] } ], "v_match_player_opening_duels_aggregate": [ - 5071, + 4879, { "distinct_on": [ - 5086, + 4894, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -140038,19 +136889,19 @@ export default { 38 ], "order_by": [ - 5085, + 4893, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5079 + 4887 ] } ], "v_player_arch_nemesis": [ - 5103, + 4911, { "distinct_on": [ - 5111, + 4919, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -140060,19 +136911,19 @@ export default { 38 ], "order_by": [ - 5110, + 4918, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5107 + 4915 ] } ], "v_player_arch_nemesis_aggregate": [ - 5104, + 4912, { "distinct_on": [ - 5111, + 4919, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -140082,19 +136933,19 @@ export default { 38 ], "order_by": [ - 5110, + 4918, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5107 + 4915 ] } ], "v_player_damage": [ - 5121, + 4929, { "distinct_on": [ - 5129, + 4937, "[v_player_damage_select_column!]" ], "limit": [ @@ -140104,19 +136955,19 @@ export default { 38 ], "order_by": [ - 5128, + 4936, "[v_player_damage_order_by!]" ], "where": [ - 5125 + 4933 ] } ], "v_player_damage_aggregate": [ - 5122, + 4930, { "distinct_on": [ - 5129, + 4937, "[v_player_damage_select_column!]" ], "limit": [ @@ -140126,19 +136977,19 @@ export default { 38 ], "order_by": [ - 5128, + 4936, "[v_player_damage_order_by!]" ], "where": [ - 5125 + 4933 ] } ], "v_player_elo": [ - 5139, + 4947, { "distinct_on": [ - 5165, + 4973, "[v_player_elo_select_column!]" ], "limit": [ @@ -140148,19 +136999,19 @@ export default { 38 ], "order_by": [ - 5164, + 4972, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 4966 ] } ], "v_player_elo_aggregate": [ - 5140, + 4948, { "distinct_on": [ - 5165, + 4973, "[v_player_elo_select_column!]" ], "limit": [ @@ -140170,19 +137021,19 @@ export default { 38 ], "order_by": [ - 5164, + 4972, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 4966 ] } ], "v_player_map_losses": [ - 5190, + 4998, { "distinct_on": [ - 5198, + 5006, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -140192,19 +137043,19 @@ export default { 38 ], "order_by": [ - 5197, + 5005, "[v_player_map_losses_order_by!]" ], "where": [ - 5194 + 5002 ] } ], "v_player_map_losses_aggregate": [ - 5191, + 4999, { "distinct_on": [ - 5198, + 5006, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -140214,19 +137065,19 @@ export default { 38 ], "order_by": [ - 5197, + 5005, "[v_player_map_losses_order_by!]" ], "where": [ - 5194 + 5002 ] } ], "v_player_map_wins": [ - 5208, + 5016, { "distinct_on": [ - 5216, + 5024, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -140236,19 +137087,19 @@ export default { 38 ], "order_by": [ - 5215, + 5023, "[v_player_map_wins_order_by!]" ], "where": [ - 5212 + 5020 ] } ], "v_player_map_wins_aggregate": [ - 5209, + 5017, { "distinct_on": [ - 5216, + 5024, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -140258,19 +137109,19 @@ export default { 38 ], "order_by": [ - 5215, + 5023, "[v_player_map_wins_order_by!]" ], "where": [ - 5212 + 5020 ] } ], "v_player_match_head_to_head": [ - 5226, + 5034, { "distinct_on": [ - 5234, + 5042, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -140280,19 +137131,19 @@ export default { 38 ], "order_by": [ - 5233, + 5041, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5230 + 5038 ] } ], "v_player_match_head_to_head_aggregate": [ - 5227, + 5035, { "distinct_on": [ - 5234, + 5042, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -140302,19 +137153,19 @@ export default { 38 ], "order_by": [ - 5233, + 5041, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5230 + 5038 ] } ], "v_player_match_map_hltv": [ - 5244, + 5052, { "distinct_on": [ - 5262, + 5070, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -140324,19 +137175,19 @@ export default { 38 ], "order_by": [ - 5261, + 5069, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5253 + 5061 ] } ], "v_player_match_map_hltv_aggregate": [ - 5245, + 5053, { "distinct_on": [ - 5262, + 5070, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -140346,19 +137197,19 @@ export default { 38 ], "order_by": [ - 5261, + 5069, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5253 + 5061 ] } ], "v_player_match_map_roles": [ - 5281, + 5089, { "distinct_on": [ - 5289, + 5097, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -140368,19 +137219,19 @@ export default { 38 ], "order_by": [ - 5288, + 5096, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5285 + 5093 ] } ], "v_player_match_map_roles_aggregate": [ - 5282, + 5090, { "distinct_on": [ - 5289, + 5097, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -140390,19 +137241,19 @@ export default { 38 ], "order_by": [ - 5288, + 5096, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5285 + 5093 ] } ], "v_player_match_performance": [ - 5299, + 5107, { "distinct_on": [ - 5307, + 5115, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -140412,19 +137263,19 @@ export default { 38 ], "order_by": [ - 5306, + 5114, "[v_player_match_performance_order_by!]" ], "where": [ - 5303 + 5111 ] } ], "v_player_match_performance_aggregate": [ - 5300, + 5108, { "distinct_on": [ - 5307, + 5115, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -140434,19 +137285,19 @@ export default { 38 ], "order_by": [ - 5306, + 5114, "[v_player_match_performance_order_by!]" ], "where": [ - 5303 + 5111 ] } ], "v_player_match_rating": [ - 5317, + 5125, { "distinct_on": [ - 5325, + 5133, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -140456,19 +137307,19 @@ export default { 38 ], "order_by": [ - 5324, + 5132, "[v_player_match_rating_order_by!]" ], "where": [ - 5321 + 5129 ] } ], "v_player_match_rating_aggregate": [ - 5318, + 5126, { "distinct_on": [ - 5325, + 5133, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -140478,19 +137329,19 @@ export default { 38 ], "order_by": [ - 5324, + 5132, "[v_player_match_rating_order_by!]" ], "where": [ - 5321 + 5129 ] } ], "v_player_multi_kills": [ - 5335, + 5143, { "distinct_on": [ - 5351, + 5159, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -140500,19 +137351,19 @@ export default { 38 ], "order_by": [ - 5350, + 5158, "[v_player_multi_kills_order_by!]" ], "where": [ - 5344 + 5152 ] } ], "v_player_multi_kills_aggregate": [ - 5336, + 5144, { "distinct_on": [ - 5351, + 5159, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -140522,19 +137373,19 @@ export default { 38 ], "order_by": [ - 5350, + 5158, "[v_player_multi_kills_order_by!]" ], "where": [ - 5344 + 5152 ] } ], "v_player_weapon_damage": [ - 5368, + 5176, { "distinct_on": [ - 5376, + 5184, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -140544,19 +137395,19 @@ export default { 38 ], "order_by": [ - 5375, + 5183, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5372 + 5180 ] } ], "v_player_weapon_damage_aggregate": [ - 5369, + 5177, { "distinct_on": [ - 5376, + 5184, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -140566,19 +137417,19 @@ export default { 38 ], "order_by": [ - 5375, + 5183, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5372 + 5180 ] } ], "v_player_weapon_kills": [ - 5386, + 5194, { "distinct_on": [ - 5394, + 5202, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -140588,19 +137439,19 @@ export default { 38 ], "order_by": [ - 5393, + 5201, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5390 + 5198 ] } ], "v_player_weapon_kills_aggregate": [ - 5387, + 5195, { "distinct_on": [ - 5394, + 5202, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -140610,19 +137461,19 @@ export default { 38 ], "order_by": [ - 5393, + 5201, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5390 + 5198 ] } ], "v_pool_maps": [ - 5404, + 5212, { "distinct_on": [ - 5421, + 5229, "[v_pool_maps_select_column!]" ], "limit": [ @@ -140632,19 +137483,19 @@ export default { 38 ], "order_by": [ - 5420, + 5228, "[v_pool_maps_order_by!]" ], "where": [ - 5413 + 5221 ] } ], "v_pool_maps_aggregate": [ - 5405, + 5213, { "distinct_on": [ - 5421, + 5229, "[v_pool_maps_select_column!]" ], "limit": [ @@ -140654,19 +137505,19 @@ export default { 38 ], "order_by": [ - 5420, + 5228, "[v_pool_maps_order_by!]" ], "where": [ - 5413 + 5221 ] } ], "v_steam_account_pool_status": [ - 5428, + 5236, { "distinct_on": [ - 5436, + 5244, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -140676,19 +137527,19 @@ export default { 38 ], "order_by": [ - 5435, + 5243, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5432 + 5240 ] } ], "v_steam_account_pool_status_aggregate": [ - 5429, + 5237, { "distinct_on": [ - 5436, + 5244, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -140698,19 +137549,19 @@ export default { 38 ], "order_by": [ - 5435, + 5243, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5432 + 5240 ] } ], "v_team_ranks": [ - 5446, + 5254, { "distinct_on": [ - 5456, + 5264, "[v_team_ranks_select_column!]" ], "limit": [ @@ -140720,19 +137571,19 @@ export default { 38 ], "order_by": [ - 5455, + 5263, "[v_team_ranks_order_by!]" ], "where": [ - 5450 + 5258 ] } ], "v_team_ranks_aggregate": [ - 5447, + 5255, { "distinct_on": [ - 5456, + 5264, "[v_team_ranks_select_column!]" ], "limit": [ @@ -140742,19 +137593,19 @@ export default { 38 ], "order_by": [ - 5455, + 5263, "[v_team_ranks_order_by!]" ], "where": [ - 5450 + 5258 ] } ], "v_team_reputation": [ - 5466, + 5274, { "distinct_on": [ - 5476, + 5284, "[v_team_reputation_select_column!]" ], "limit": [ @@ -140764,19 +137615,19 @@ export default { 38 ], "order_by": [ - 5475, + 5283, "[v_team_reputation_order_by!]" ], "where": [ - 5470 + 5278 ] } ], "v_team_reputation_aggregate": [ - 5467, + 5275, { "distinct_on": [ - 5476, + 5284, "[v_team_reputation_select_column!]" ], "limit": [ @@ -140786,19 +137637,19 @@ export default { 38 ], "order_by": [ - 5475, + 5283, "[v_team_reputation_order_by!]" ], "where": [ - 5470 + 5278 ] } ], "v_team_stage_results": [ - 5486, + 5294, { "distinct_on": [ - 5518, + 5326, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -140808,19 +137659,19 @@ export default { 38 ], "order_by": [ - 5516, + 5324, "[v_team_stage_results_order_by!]" ], "where": [ - 5505 + 5313 ] } ], "v_team_stage_results_aggregate": [ - 5487, + 5295, { "distinct_on": [ - 5518, + 5326, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -140830,32 +137681,32 @@ export default { 38 ], "order_by": [ - 5516, + 5324, "[v_team_stage_results_order_by!]" ], "where": [ - 5505 + 5313 ] } ], "v_team_stage_results_by_pk": [ - 5486, + 5294, { "tournament_stage_id": [ - 4762, + 4621, "uuid!" ], "tournament_team_id": [ - 4762, + 4621, "uuid!" ] } ], "v_team_tournament_results": [ - 5546, + 5354, { "distinct_on": [ - 5572, + 5380, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -140865,19 +137716,19 @@ export default { 38 ], "order_by": [ - 5571, + 5379, "[v_team_tournament_results_order_by!]" ], "where": [ - 5565 + 5373 ] } ], "v_team_tournament_results_aggregate": [ - 5547, + 5355, { "distinct_on": [ - 5572, + 5380, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -140887,19 +137738,19 @@ export default { 38 ], "order_by": [ - 5571, + 5379, "[v_team_tournament_results_order_by!]" ], "where": [ - 5565 + 5373 ] } ], "v_tournament_player_stats": [ - 5597, + 5405, { "distinct_on": [ - 5623, + 5431, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -140909,19 +137760,19 @@ export default { 38 ], "order_by": [ - 5622, + 5430, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5616 + 5424 ] } ], "v_tournament_player_stats_aggregate": [ - 5598, + 5406, { "distinct_on": [ - 5623, + 5431, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -140931,11 +137782,11 @@ export default { 38 ], "order_by": [ - 5622, + 5430, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5616 + 5424 ] } ], @@ -140948,7 +137799,7 @@ export default { 55, { "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -140957,17 +137808,17 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ], "reset_status": [ 78 ], "scheduled_at": [ - 4324 + 4076 ], "winning_lineup_id": [ - 4762 + 4621 ] } ], @@ -140975,7 +137826,7 @@ export default { 81, { "invite_id": [ - 4762, + 4621, "uuid!" ], "type": [ @@ -140988,7 +137839,7 @@ export default { 81, { "draftGameId": [ - 4762, + 4621, "uuid!" ], "steamId": [ @@ -141027,14 +137878,14 @@ export default { } ], "approve_league_season_movements": [ - 1888, + 1636, { "args": [ 179, "approve_league_season_movements_args!" ], "distinct_on": [ - 1909, + 1657, "[league_team_movements_select_column!]" ], "limit": [ @@ -141044,11 +137895,11 @@ export default { 38 ], "order_by": [ - 1907, + 1655, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1645 ] } ], @@ -141074,7 +137925,7 @@ export default { 81, { "game_server_node_id": [ - 4762, + 4621, "uuid!" ] } @@ -141095,7 +137946,7 @@ export default { 81, { "game_server_node_id": [ - 4762, + 4621, "uuid!" ] } @@ -141104,7 +137955,7 @@ export default { 81, { "job_id": [ - 4762, + 4621, "uuid!" ] } @@ -141113,7 +137964,7 @@ export default { 81, { "match_map_id": [ - 4762, + 4621, "uuid!" ] } @@ -141122,7 +137973,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -141140,7 +137991,7 @@ export default { 81, { "request_id": [ - 4762, + 4621, "uuid!" ] } @@ -141149,7 +138000,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -141158,7 +138009,7 @@ export default { 81, { "match_map_id": [ - 4762, + 4621, "uuid!" ] } @@ -141176,14 +138027,14 @@ export default { } ], "clone_league_season": [ - 1855, + 1603, { "args": [ 235, "clone_league_season_args!" ], "distinct_on": [ - 1875, + 1623, "[league_seasons_select_column!]" ], "limit": [ @@ -141193,11 +138044,11 @@ export default { 38 ], "order_by": [ - 1872, + 1620, "[league_seasons_order_by!]" ], "where": [ - 1860 + 1608 ] } ], @@ -141205,11 +138056,11 @@ export default { 81, { "proposed_scheduled_at": [ - 4324, + 4076, "timestamptz!" ], "request_id": [ - 4762, + 4621, "uuid!" ] } @@ -141230,7 +138081,7 @@ export default { 38 ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "preset": [ @@ -141265,7 +138116,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -141274,7 +138125,7 @@ export default { 14, { "settings": [ - 1652, + 1400, "jsonb!" ] } @@ -141291,7 +138142,7 @@ export default { "ScheduledLineupInput!" ], "options": [ - 1652, + 1400, "jsonb!" ], "scheduled_at": [ @@ -141320,7 +138171,7 @@ export default { 81, { "clip_id": [ - 4762, + 4621, "uuid!" ] } @@ -141338,7 +138189,7 @@ export default { 81, { "id": [ - 4762, + 4621, "uuid!" ] } @@ -141372,7 +138223,7 @@ export default { 81, { "tournament_id": [ - 4762, + 4621, "uuid!" ] } @@ -141390,11 +138241,11 @@ export default { 92, { "map_id": [ - 4762, + 4621, "uuid!" ], "map_pool_id": [ - 4762, + 4621, "uuid!" ] } @@ -141412,7 +138263,7 @@ export default { 111, { "id": [ - 4762, + 4621, "uuid!" ] } @@ -141430,7 +138281,7 @@ export default { 152, { "id": [ - 4762, + 4621, "uuid!" ] } @@ -141448,61 +138299,79 @@ export default { 185, { "id": [ - 4762, + 4621, "uuid!" ] } ], - "delete_db_backups": [ + "delete_custom_pages": [ 247, { "where": [ 241, + "custom_pages_bool_exp!" + ] + } + ], + "delete_custom_pages_by_pk": [ + 237, + { + "id": [ + 4621, + "uuid!" + ] + } + ], + "delete_db_backups": [ + 274, + { + "where": [ + 268, "db_backups_bool_exp!" ] } ], "delete_db_backups_by_pk": [ - 237, + 264, { "id": [ - 4762, + 4621, "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, + 4621, "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, + 4621, "uuid!" ], "steam_id": [ @@ -141512,34 +138381,34 @@ export default { } ], "delete_draft_games": [ - 373, + 400, { "where": [ - 365, + 392, "draft_games_bool_exp!" ] } ], "delete_draft_games_by_pk": [ - 354, + 381, { "id": [ - 4762, + 4621, "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 +138417,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 +138435,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 +138453,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 +138471,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,52 +138489,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, - { - "value": [ - 78, - "String!" - ] - } - ], - "delete_e_event_media_access": [ - 535, - { - "where": [ - 528, - "e_event_media_access_bool_exp!" - ] - } - ], - "delete_e_event_media_access_by_pk": [ - 525, - { - "value": [ - 78, - "String!" - ] - } - ], - "delete_e_event_visibility": [ - 555, - { - "where": [ - 548, - "e_event_visibility_bool_exp!" - ] - } - ], - "delete_e_event_visibility_by_pk": [ - 545, + 531, { "value": [ 78, @@ -141674,16 +138507,16 @@ export default { } ], "delete_e_friend_status": [ - 575, + 562, { "where": [ - 568, + 555, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 565, + 552, { "value": [ 78, @@ -141692,16 +138525,16 @@ export default { } ], "delete_e_game_cfg_types": [ - 596, + 583, { "where": [ - 589, + 576, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 586, + 573, { "value": [ 78, @@ -141710,16 +138543,16 @@ export default { } ], "delete_e_game_server_node_statuses": [ - 616, + 603, { "where": [ - 609, + 596, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 606, + 593, { "value": [ 78, @@ -141728,16 +138561,16 @@ export default { } ], "delete_e_league_movement_types": [ - 637, + 624, { "where": [ - 630, + 617, "e_league_movement_types_bool_exp!" ] } ], "delete_e_league_movement_types_by_pk": [ - 627, + 614, { "value": [ 78, @@ -141746,16 +138579,16 @@ export default { } ], "delete_e_league_proposal_statuses": [ - 658, + 645, { "where": [ - 651, + 638, "e_league_proposal_statuses_bool_exp!" ] } ], "delete_e_league_proposal_statuses_by_pk": [ - 648, + 635, { "value": [ 78, @@ -141764,16 +138597,16 @@ export default { } ], "delete_e_league_registration_statuses": [ - 679, + 666, { "where": [ - 672, + 659, "e_league_registration_statuses_bool_exp!" ] } ], "delete_e_league_registration_statuses_by_pk": [ - 669, + 656, { "value": [ 78, @@ -141782,16 +138615,16 @@ export default { } ], "delete_e_league_season_statuses": [ - 700, + 687, { "where": [ - 693, + 680, "e_league_season_statuses_bool_exp!" ] } ], "delete_e_league_season_statuses_by_pk": [ - 690, + 677, { "value": [ 78, @@ -141800,16 +138633,16 @@ export default { } ], "delete_e_lobby_access": [ - 721, + 708, { "where": [ - 714, + 701, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 711, + 698, { "value": [ 78, @@ -141818,16 +138651,16 @@ export default { } ], "delete_e_lobby_player_status": [ - 742, + 729, { "where": [ - 735, + 722, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 732, + 719, { "value": [ 78, @@ -141836,16 +138669,16 @@ export default { } ], "delete_e_map_pool_types": [ - 762, + 749, { "where": [ - 755, + 742, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 752, + 739, { "value": [ 78, @@ -141854,16 +138687,16 @@ export default { } ], "delete_e_match_clip_visibility": [ - 783, + 770, { "where": [ - 776, + 763, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 773, + 760, { "value": [ 78, @@ -141872,16 +138705,16 @@ export default { } ], "delete_e_match_map_status": [ - 803, + 790, { "where": [ - 796, + 783, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 793, + 780, { "value": [ 78, @@ -141890,16 +138723,16 @@ export default { } ], "delete_e_match_mode": [ - 824, + 811, { "where": [ - 817, + 804, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 814, + 801, { "value": [ 78, @@ -141908,16 +138741,16 @@ export default { } ], "delete_e_match_status": [ - 844, + 831, { "where": [ - 837, + 824, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 834, + 821, { "value": [ 78, @@ -141926,16 +138759,16 @@ export default { } ], "delete_e_match_types": [ - 865, + 852, { "where": [ - 858, + 845, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 855, + 842, { "value": [ 78, @@ -141944,16 +138777,16 @@ export default { } ], "delete_e_notification_types": [ - 886, + 873, { "where": [ - 879, + 866, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 876, + 863, { "value": [ 78, @@ -141962,16 +138795,16 @@ export default { } ], "delete_e_objective_types": [ - 906, + 893, { "where": [ - 899, + 886, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 896, + 883, { "value": [ 78, @@ -141980,16 +138813,16 @@ export default { } ], "delete_e_player_roles": [ - 926, + 913, { "where": [ - 919, + 906, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 916, + 903, { "value": [ 78, @@ -141998,16 +138831,16 @@ export default { } ], "delete_e_plugin_runtimes": [ - 946, + 933, { "where": [ - 939, + 926, "e_plugin_runtimes_bool_exp!" ] } ], "delete_e_plugin_runtimes_by_pk": [ - 936, + 923, { "value": [ 78, @@ -142016,16 +138849,16 @@ export default { } ], "delete_e_ready_settings": [ - 966, + 953, { "where": [ - 959, + 946, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 956, + 943, { "value": [ 78, @@ -142034,16 +138867,16 @@ export default { } ], "delete_e_sanction_types": [ - 986, + 973, { "where": [ - 979, + 966, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 976, + 963, { "value": [ 78, @@ -142052,16 +138885,16 @@ export default { } ], "delete_e_scrim_request_statuses": [ - 1007, + 994, { "where": [ - 1000, + 987, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 997, + 984, { "value": [ 78, @@ -142070,16 +138903,16 @@ export default { } ], "delete_e_server_types": [ - 1027, + 1014, { "where": [ - 1020, + 1007, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 1017, + 1004, { "value": [ 78, @@ -142088,16 +138921,16 @@ export default { } ], "delete_e_sides": [ - 1047, + 1034, { "where": [ - 1040, + 1027, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 1037, + 1024, { "value": [ 78, @@ -142106,16 +138939,16 @@ export default { } ], "delete_e_system_alert_types": [ - 1067, + 1054, { "where": [ - 1060, + 1047, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 1057, + 1044, { "value": [ 78, @@ -142124,16 +138957,16 @@ export default { } ], "delete_e_team_roles": [ - 1087, + 1074, { "where": [ - 1080, + 1067, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 1077, + 1064, { "value": [ 78, @@ -142142,16 +138975,16 @@ export default { } ], "delete_e_team_roster_statuses": [ - 1108, + 1095, { "where": [ - 1101, + 1088, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 1098, + 1085, { "value": [ 78, @@ -142160,16 +138993,34 @@ export default { } ], "delete_e_timeout_settings": [ - 1128, + 1115, { "where": [ - 1121, + 1108, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 1118, + 1105, + { + "value": [ + 78, + "String!" + ] + } + ], + "delete_e_tournament_categories": [ + 1135, + { + "where": [ + 1128, + "e_tournament_categories_bool_exp!" + ] + } + ], + "delete_e_tournament_categories_by_pk": [ + 1125, { "value": [ 78, @@ -142178,16 +139029,16 @@ export default { } ], "delete_e_tournament_stage_types": [ - 1148, + 1156, { "where": [ - 1141, + 1149, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 1138, + 1146, { "value": [ 78, @@ -142196,16 +139047,16 @@ export default { } ], "delete_e_tournament_status": [ - 1169, + 1177, { "where": [ - 1162, + 1170, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1159, + 1167, { "value": [ 78, @@ -142214,16 +139065,16 @@ export default { } ], "delete_e_utility_types": [ - 1190, + 1198, { "where": [ - 1183, + 1191, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1180, + 1188, { "value": [ 78, @@ -142232,16 +139083,16 @@ export default { } ], "delete_e_veto_pick_types": [ - 1210, + 1218, { "where": [ - 1203, + 1211, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1200, + 1208, { "value": [ 78, @@ -142250,16 +139101,16 @@ export default { } ], "delete_e_winning_reasons": [ - 1230, + 1238, { "where": [ - 1223, + 1231, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1220, + 1228, { "value": [ 78, @@ -142267,185 +139118,17 @@ export default { ] } ], - "delete_event_match_links": [ - 1248, - { - "where": [ - 1243, - "event_match_links_bool_exp!" - ] - } - ], - "delete_event_match_links_by_pk": [ - 1240, - { - "event_id": [ - 4762, - "uuid!" - ], - "match_id": [ - 4762, - "uuid!" - ] - } - ], - "delete_event_media": [ - 1275, - { - "where": [ - 1267, - "event_media_bool_exp!" - ] - } - ], - "delete_event_media_by_pk": [ - 1258, - { - "id": [ - 4762, - "uuid!" - ] - } - ], - "delete_event_media_players": [ - 1297, - { - "where": [ - 1289, - "event_media_players_bool_exp!" - ] - } - ], - "delete_event_media_players_by_pk": [ - 1280, - { - "media_id": [ - 4762, - "uuid!" - ], - "steam_id": [ - 180, - "bigint!" - ] - } - ], - "delete_event_organizers": [ - 1358, - { - "where": [ - 1350, - "event_organizers_bool_exp!" - ] - } - ], - "delete_event_organizers_by_pk": [ - 1341, - { - "event_id": [ - 4762, - "uuid!" - ], - "steam_id": [ - 180, - "bigint!" - ] - } - ], - "delete_event_players": [ - 1399, - { - "where": [ - 1391, - "event_players_bool_exp!" - ] - } - ], - "delete_event_players_by_pk": [ - 1382, - { - "event_id": [ - 4762, - "uuid!" - ], - "steam_id": [ - 180, - "bigint!" - ] - } - ], - "delete_event_teams": [ - 1437, - { - "where": [ - 1430, - "event_teams_bool_exp!" - ] - } - ], - "delete_event_teams_by_pk": [ - 1423, - { - "event_id": [ - 4762, - "uuid!" - ], - "team_id": [ - 4762, - "uuid!" - ] - } - ], - "delete_event_tournaments": [ - 1461, - { - "where": [ - 1454, - "event_tournaments_bool_exp!" - ] - } - ], - "delete_event_tournaments_by_pk": [ - 1447, - { - "event_id": [ - 4762, - "uuid!" - ], - "tournament_id": [ - 4762, - "uuid!" - ] - } - ], - "delete_events": [ - 1481, - { - "where": [ - 1475, - "events_bool_exp!" - ] - } - ], - "delete_events_by_pk": [ - 1471, - { - "id": [ - 4762, - "uuid!" - ] - } - ], "delete_friends": [ - 1511, + 1260, { "where": [ - 1505, + 1254, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1501, + 1250, { "other_player_steam_id": [ 180, @@ -142458,16 +139141,16 @@ export default { } ], "delete_game_server_nodes": [ - 1551, + 1300, { "where": [ - 1540, + 1289, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1528, + 1277, { "id": [ 78, @@ -142476,16 +139159,16 @@ export default { } ], "delete_game_versions": [ - 1593, + 1342, { "where": [ - 1584, + 1333, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1579, + 1328, { "build_id": [ 38, @@ -142494,172 +139177,172 @@ export default { } ], "delete_gamedata_signature_validations": [ - 1626, + 1375, { "where": [ - 1617, + 1366, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1612, + 1361, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1664, + 1412, { "where": [ - 1659, + 1407, "leaderboard_entries_bool_exp!" ] } ], "delete_league_divisions": [ - 1689, + 1437, { "where": [ - 1683, + 1431, "league_divisions_bool_exp!" ] } ], "delete_league_divisions_by_pk": [ - 1679, + 1427, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_league_match_weeks": [ - 1724, + 1472, { "where": [ - 1716, + 1464, "league_match_weeks_bool_exp!" ] } ], "delete_league_match_weeks_by_pk": [ - 1707, + 1455, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_league_relegation_playoffs": [ - 1765, + 1513, { "where": [ - 1757, + 1505, "league_relegation_playoffs_bool_exp!" ] } ], "delete_league_relegation_playoffs_by_pk": [ - 1748, + 1496, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_league_scheduling_proposals": [ - 1806, + 1554, { "where": [ - 1798, + 1546, "league_scheduling_proposals_bool_exp!" ] } ], "delete_league_scheduling_proposals_by_pk": [ - 1789, + 1537, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_league_season_divisions": [ - 1844, + 1592, { "where": [ - 1837, + 1585, "league_season_divisions_bool_exp!" ] } ], "delete_league_season_divisions_by_pk": [ - 1830, + 1578, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_league_seasons": [ - 1869, + 1617, { "where": [ - 1860, + 1608, "league_seasons_bool_exp!" ] } ], "delete_league_seasons_by_pk": [ - 1855, + 1603, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_league_team_movements": [ - 1905, + 1653, { "where": [ - 1897, + 1645, "league_team_movements_bool_exp!" ] } ], "delete_league_team_movements_by_pk": [ - 1888, + 1636, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_league_team_rosters": [ - 1946, + 1694, { "where": [ - 1938, + 1686, "league_team_rosters_bool_exp!" ] } ], "delete_league_team_rosters_by_pk": [ - 1929, + 1677, { "league_team_season_id": [ - 4762, + 4621, "uuid!" ], "player_steam_id": [ @@ -142669,73 +139352,73 @@ export default { } ], "delete_league_team_seasons": [ - 1987, + 1735, { "where": [ - 1979, + 1727, "league_team_seasons_bool_exp!" ] } ], "delete_league_team_seasons_by_pk": [ - 1970, + 1718, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_league_teams": [ - 2020, + 1768, { "where": [ - 2015, + 1763, "league_teams_bool_exp!" ] } ], "delete_league_teams_by_pk": [ - 2012, + 1760, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_lobbies": [ - 2039, + 1787, { "where": [ - 2034, + 1782, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 2031, + 1779, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_lobby_players": [ - 2069, + 1817, { "where": [ - 2061, + 1809, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 2050, + 1798, { "lobby_id": [ - 4762, + 4621, "uuid!" ], "steam_id": [ @@ -142745,286 +139428,286 @@ export default { } ], "delete_map_pools": [ - 2103, + 1851, { "where": [ - 2098, + 1846, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 2095, + 1843, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_maps": [ - 2130, + 1878, { "where": [ - 2123, + 1871, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 2114, + 1862, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_match_clips": [ - 2160, + 1908, { "where": [ - 2152, + 1900, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 2143, + 1891, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_match_demo_sessions": [ - 2206, + 1954, { "where": [ - 2195, + 1943, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 2185, + 1933, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_match_lineup_players": [ - 2250, + 1998, { "where": [ - 2242, + 1990, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 2231, + 1979, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_match_lineups": [ - 2293, + 2041, { "where": [ - 2285, + 2033, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 2276, + 2024, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_match_map_demos": [ - 2341, + 2089, { "where": [ - 2330, + 2078, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 2318, + 2066, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_match_map_rounds": [ - 2386, + 2134, { "where": [ - 2378, + 2126, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2369, + 2117, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2424, + 2172, { "where": [ - 2417, + 2165, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2410, + 2158, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_match_maps": [ - 2451, + 2199, { "where": [ - 2443, + 2191, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2434, + 2182, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_match_options": [ - 2486, + 2234, { "where": [ - 2480, + 2228, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2476, + 2224, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2518, + 2266, { "where": [ - 2511, + 2259, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2504, + 2252, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_match_streams": [ - 2551, + 2299, { "where": [ - 2540, + 2288, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2528, + 2276, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2586, + 2334, { "where": [ - 2581, + 2329, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2578, + 2326, { "type": [ - 591, + 578, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 2613, + 2361, { "where": [ - 2605, + 2353, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2596, + 2344, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2646, + 2394, { "where": [ - 2641, + 2389, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2638, + 2386, { "name": [ 78, @@ -143033,126 +139716,126 @@ export default { } ], "delete_my_friends": [ - 2678, + 2426, { "where": [ - 2668, + 2416, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2712, + 2460, { "where": [ - 2706, + 2454, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2702, + 2450, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_notifications": [ - 2752, + 2500, { "where": [ - 2741, + 2489, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 2729, + 2477, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_pending_match_import_players": [ - 2799, + 2547, { "where": [ - 2791, + 2539, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 2782, + 2530, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2779, + 2527, "numeric!" ] } ], "delete_pending_match_imports": [ - 2833, + 2581, { "where": [ - 2827, + 2575, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 2823, + 2571, { "valve_match_id": [ - 2779, + 2527, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 2861, + 2609, { "where": [ - 2855, + 2603, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 2851, + 2599, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 2895, + 2643, { "where": [ - 2887, + 2635, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 2878, + 2626, { "match_map_id": [ - 4762, + 4621, "uuid!" ], "steam_id": [ @@ -143166,16 +139849,16 @@ export default { } ], "delete_player_assists": [ - 2938, + 2686, { "where": [ - 2930, + 2678, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 2919, + 2667, { "attacked_steam_id": [ 180, @@ -143186,55 +139869,55 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "delete_player_damages": [ - 2999, + 2747, { "where": [ - 2991, + 2739, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 2982, + 2730, { "id": [ - 4762, + 4621, "uuid!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "delete_player_elo": [ - 3033, + 2781, { "where": [ - 3027, + 2775, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 3023, + 2771, { "match_id": [ - 4762, + 4621, "uuid!" ], "steam_id": [ @@ -143242,40 +139925,40 @@ export default { "bigint!" ], "type": [ - 860, + 847, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 3067, + 2815, { "where": [ - 3059, + 2807, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 3050, + 2798, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_player_flashes": [ - 3110, + 2858, { "where": [ - 3102, + 2850, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 3091, + 2839, { "attacked_steam_id": [ 180, @@ -143286,26 +139969,26 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "delete_player_kills": [ - 3196, + 2944, { "where": [ - 3147, + 2895, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 3136, + 2884, { "attacked_steam_id": [ 180, @@ -143316,26 +139999,26 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 3165, + 2913, { "where": [ - 3157, + 2905, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 3148, + 2896, { "player_steam_id": [ 180, @@ -143348,28 +140031,28 @@ export default { } ], "delete_player_leaderboard_rank": [ - 3231, + 2979, { "where": [ - 3226, + 2974, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 3262, + 3010, { "where": [ - 3254, + 3002, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 3245, + 2993, { "match_map_id": [ - 4762, + 4621, "uuid!" ], "steam_id": [ @@ -143379,19 +140062,19 @@ export default { } ], "delete_player_objectives": [ - 3354, + 3102, { "where": [ - 3346, + 3094, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3337, + 3085, { "match_map_id": [ - 4762, + 4621, "uuid!" ], "player_steam_id": [ @@ -143399,84 +140082,84 @@ export default { "bigint!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3413, + 3161, { "where": [ - 3405, + 3153, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3396, + 3144, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_player_sanctions": [ - 3454, + 3202, { "where": [ - 3446, + 3194, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3437, + 3185, { "created_at": [ - 4324, + 4076, "timestamptz!" ], "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_player_season_stats": [ - 3505, + 3253, { "where": [ - 3497, + 3245, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3478, + 3226, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4762, + 4621, "uuid!" ] } ], "delete_player_stats": [ - 3547, + 3295, { "where": [ - 3541, + 3289, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3537, + 3285, { "player_steam_id": [ 180, @@ -143485,16 +140168,16 @@ export default { } ], "delete_player_steam_bot_friend": [ - 3579, + 3327, { "where": [ - 3570, + 3318, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3565, + 3313, { "steam_id": [ 180, @@ -143503,16 +140186,16 @@ export default { } ], "delete_player_steam_match_auth": [ - 3607, + 3355, { "where": [ - 3601, + 3349, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3597, + 3345, { "steam_id": [ 180, @@ -143521,19 +140204,19 @@ export default { } ], "delete_player_unused_utility": [ - 3641, + 3389, { "where": [ - 3633, + 3381, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3624, + 3372, { "match_map_id": [ - 4762, + 4621, "uuid!" ], "player_steam_id": [ @@ -143543,42 +140226,42 @@ export default { } ], "delete_player_utility": [ - 3682, + 3430, { "where": [ - 3674, + 3422, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3665, + 3413, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "delete_players": [ - 3749, + 3497, { "where": [ - 3743, + 3491, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 3739, + 3487, { "steam_id": [ 180, @@ -143587,19 +140270,19 @@ export default { } ], "delete_plugin_versions": [ - 3777, + 3525, { "where": [ - 3771, + 3519, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 3767, + 3515, { "runtime": [ - 941, + 928, "e_plugin_runtimes_enum!" ], "version": [ @@ -143609,34 +140292,34 @@ export default { } ], "delete_seasons": [ - 3808, + 3556, { "where": [ - 3802, + 3550, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 3798, + 3546, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_server_regions": [ - 3835, + 3583, { "where": [ - 3830, + 3578, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 3826, + 3574, { "value": [ 78, @@ -143645,34 +140328,34 @@ export default { } ], "delete_servers": [ - 3872, + 3620, { "where": [ - 3864, + 3612, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 3853, + 3601, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_settings": [ - 3907, + 3655, { "where": [ - 3902, + 3650, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 3899, + 3647, { "name": [ 78, @@ -143681,467 +140364,529 @@ export default { } ], "delete_steam_account_claims": [ - 3933, + 3681, { "where": [ - 3926, + 3674, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 3919, + 3667, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_steam_accounts": [ - 3953, + 3701, { "where": [ - 3947, + 3695, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 3943, + 3691, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_system_alerts": [ - 3981, + 3729, { "where": [ - 3975, + 3723, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 3971, + 3719, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_team_invites": [ - 4015, + 3763, { "where": [ - 4007, + 3755, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 3998, + 3746, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_team_roster": [ - 4058, + 3806, { "where": [ - 4050, + 3798, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 4039, + 3787, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4762, + 4621, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 4094, + 3842, { "where": [ - 4088, + 3836, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 4084, + 3832, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_team_scrim_availability": [ - 4127, + 3875, { "where": [ - 4120, + 3868, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 4111, + 3859, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 4156, + 3904, { "where": [ - 4148, + 3896, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 4139, + 3887, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_team_scrim_requests": [ - 4199, + 3947, { "where": [ - 4191, + 3939, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 4180, + 3928, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_team_scrim_settings": [ - 4236, + 3984, { "where": [ - 4230, + 3978, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 4226, + 3974, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_team_suggestions": [ - 4264, + 4012, { "where": [ - 4258, + 4006, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 4254, + 4002, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_teams": [ - 4298, + 4048, { "where": [ - 4290, + 4040, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 4281, + 4029, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_tournament_brackets": [ - 4345, + 4097, { "where": [ - 4337, + 4089, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4326, + 4078, { "id": [ - 4762, + 4621, + "uuid!" + ] + } + ], + "delete_tournament_categories": [ + 4138, + { + "where": [ + 4131, + "tournament_categories_bool_exp!" + ] + } + ], + "delete_tournament_categories_by_pk": [ + 4124, + { + "category": [ + 1130, + "e_tournament_categories_enum!" + ], + "tournament_id": [ + 4621, + "uuid!" + ] + } + ], + "delete_tournament_organizer_teams": [ + 4162, + { + "where": [ + 4155, + "tournament_organizer_teams_bool_exp!" + ] + } + ], + "delete_tournament_organizer_teams_by_pk": [ + 4148, + { + "team_id": [ + 4621, + "uuid!" + ], + "tournament_id": [ + 4621, "uuid!" ] } ], "delete_tournament_organizers": [ - 4389, + 4189, { "where": [ - 4381, + 4181, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4372, + 4172, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4762, + 4621, + "uuid!" + ] + } + ], + "delete_tournament_prizes": [ + 4230, + { + "where": [ + 4222, + "tournament_prizes_bool_exp!" + ] + } + ], + "delete_tournament_prizes_by_pk": [ + 4213, + { + "id": [ + 4621, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4430, + 4271, { "where": [ - 4422, + 4263, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4413, + 4254, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_tournament_stages": [ - 4477, + 4318, { "where": [ - 4466, + 4307, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4454, + 4295, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4522, + 4363, { "where": [ - 4514, + 4355, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4505, + 4346, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_tournament_team_roster": [ - 4563, + 4404, { "where": [ - 4555, + 4396, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 4546, + 4387, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4762, + 4621, "uuid!" ] } ], "delete_tournament_teams": [ - 4604, + 4445, { "where": [ - 4596, + 4437, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 4587, + 4428, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_tournament_trophies": [ - 4648, + 4489, { "where": [ - 4640, + 4481, "tournament_trophies_bool_exp!" ] } ], "delete_tournament_trophies_by_pk": [ - 4629, + 4470, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_tournament_trophy_configs": [ - 4691, + 4532, { "where": [ - 4683, + 4524, "tournament_trophy_configs_bool_exp!" ] } ], "delete_tournament_trophy_configs_by_pk": [ - 4674, + 4515, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_tournaments": [ - 4735, + 4586, { "where": [ - 4727, + 4578, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 4716, + 4557, { "id": [ - 4762, + 4621, "uuid!" ] } ], "delete_v_match_captains": [ - 4927, + 4735, { "where": [ - 4922, + 4730, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 5038, + 4846, { "where": [ - 5033, + 4841, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 5260, + 5068, { "where": [ - 5253, + 5061, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5419, + 5227, { "where": [ - 5413, + 5221, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5513, + 5321, { "where": [ - 5505, + 5313, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5486, + 5294, { "tournament_stage_id": [ - 4762, + 4621, "uuid!" ], "tournament_team_id": [ - 4762, + 4621, "uuid!" ] } @@ -144150,7 +140895,7 @@ export default { 81, { "invite_id": [ - 4762, + 4621, "uuid!" ], "type": [ @@ -144163,11 +140908,11 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ], "winning_lineup_id": [ - 4762, + 4621, "uuid!" ] } @@ -144176,7 +140921,7 @@ export default { 43, { "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -144280,3417 +141025,3297 @@ 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 - ] - } - ], - "insert_e_event_media_access": [ - 535, - { - "objects": [ - 532, - "[e_event_media_access_insert_input!]!" - ], - "on_conflict": [ - 536 - ] - } - ], - "insert_e_event_media_access_one": [ - 525, - { - "object": [ - 532, - "e_event_media_access_insert_input!" - ], - "on_conflict": [ - 536 - ] - } - ], - "insert_e_event_visibility": [ - 555, - { - "objects": [ - 552, - "[e_event_visibility_insert_input!]!" - ], - "on_conflict": [ - 556 - ] - } - ], - "insert_e_event_visibility_one": [ - 545, - { - "object": [ - 552, - "e_event_visibility_insert_input!" - ], - "on_conflict": [ - 556 + 543 ] } ], "insert_e_friend_status": [ - 575, + 562, { "objects": [ - 572, + 559, "[e_friend_status_insert_input!]!" ], "on_conflict": [ - 577 + 564 ] } ], "insert_e_friend_status_one": [ - 565, + 552, { "object": [ - 572, + 559, "e_friend_status_insert_input!" ], "on_conflict": [ - 577 + 564 ] } ], "insert_e_game_cfg_types": [ - 596, + 583, { "objects": [ - 593, + 580, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 597 + 584 ] } ], "insert_e_game_cfg_types_one": [ - 586, + 573, { "object": [ - 593, + 580, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 597 + 584 ] } ], "insert_e_game_server_node_statuses": [ - 616, + 603, { "objects": [ - 613, + 600, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 618 + 605 ] } ], "insert_e_game_server_node_statuses_one": [ - 606, + 593, { "object": [ - 613, + 600, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 618 + 605 ] } ], "insert_e_league_movement_types": [ - 637, + 624, { "objects": [ - 634, + 621, "[e_league_movement_types_insert_input!]!" ], "on_conflict": [ - 639 + 626 ] } ], "insert_e_league_movement_types_one": [ - 627, + 614, { "object": [ - 634, + 621, "e_league_movement_types_insert_input!" ], "on_conflict": [ - 639 + 626 ] } ], "insert_e_league_proposal_statuses": [ - 658, + 645, { "objects": [ - 655, + 642, "[e_league_proposal_statuses_insert_input!]!" ], "on_conflict": [ - 660 + 647 ] } ], "insert_e_league_proposal_statuses_one": [ - 648, + 635, { "object": [ - 655, + 642, "e_league_proposal_statuses_insert_input!" ], "on_conflict": [ - 660 + 647 ] } ], "insert_e_league_registration_statuses": [ - 679, + 666, { "objects": [ - 676, + 663, "[e_league_registration_statuses_insert_input!]!" ], "on_conflict": [ - 681 + 668 ] } ], "insert_e_league_registration_statuses_one": [ - 669, + 656, { "object": [ - 676, + 663, "e_league_registration_statuses_insert_input!" ], "on_conflict": [ - 681 + 668 ] } ], "insert_e_league_season_statuses": [ - 700, + 687, { "objects": [ - 697, + 684, "[e_league_season_statuses_insert_input!]!" ], "on_conflict": [ - 702 + 689 ] } ], "insert_e_league_season_statuses_one": [ - 690, + 677, { "object": [ - 697, + 684, "e_league_season_statuses_insert_input!" ], "on_conflict": [ - 702 + 689 ] } ], "insert_e_lobby_access": [ - 721, + 708, { "objects": [ - 718, + 705, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 723 + 710 ] } ], "insert_e_lobby_access_one": [ - 711, + 698, { "object": [ - 718, + 705, "e_lobby_access_insert_input!" ], "on_conflict": [ - 723 + 710 ] } ], "insert_e_lobby_player_status": [ - 742, + 729, { "objects": [ - 739, + 726, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 743 + 730 ] } ], "insert_e_lobby_player_status_one": [ - 732, + 719, { "object": [ - 739, + 726, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 743 + 730 ] } ], "insert_e_map_pool_types": [ - 762, + 749, { "objects": [ - 759, + 746, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 764 + 751 ] } ], "insert_e_map_pool_types_one": [ - 752, + 739, { "object": [ - 759, + 746, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 764 + 751 ] } ], "insert_e_match_clip_visibility": [ - 783, + 770, { "objects": [ - 780, + 767, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 784 + 771 ] } ], "insert_e_match_clip_visibility_one": [ - 773, + 760, { "object": [ - 780, + 767, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 784 + 771 ] } ], "insert_e_match_map_status": [ - 803, + 790, { "objects": [ - 800, + 787, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 805 + 792 ] } ], "insert_e_match_map_status_one": [ - 793, + 780, { "object": [ - 800, + 787, "e_match_map_status_insert_input!" ], "on_conflict": [ - 805 + 792 ] } ], "insert_e_match_mode": [ - 824, + 811, { "objects": [ - 821, + 808, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 825 + 812 ] } ], "insert_e_match_mode_one": [ - 814, + 801, { "object": [ - 821, + 808, "e_match_mode_insert_input!" ], "on_conflict": [ - 825 + 812 ] } ], "insert_e_match_status": [ - 844, + 831, { "objects": [ - 841, + 828, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 846 + 833 ] } ], "insert_e_match_status_one": [ - 834, + 821, { "object": [ - 841, + 828, "e_match_status_insert_input!" ], "on_conflict": [ - 846 + 833 ] } ], "insert_e_match_types": [ - 865, + 852, { "objects": [ - 862, + 849, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 867 + 854 ] } ], "insert_e_match_types_one": [ - 855, + 842, { "object": [ - 862, + 849, "e_match_types_insert_input!" ], "on_conflict": [ - 867 + 854 ] } ], "insert_e_notification_types": [ - 886, + 873, { "objects": [ - 883, + 870, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 887 + 874 ] } ], "insert_e_notification_types_one": [ - 876, + 863, { "object": [ - 883, + 870, "e_notification_types_insert_input!" ], "on_conflict": [ - 887 + 874 ] } ], "insert_e_objective_types": [ - 906, + 893, { "objects": [ - 903, + 890, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 907 + 894 ] } ], "insert_e_objective_types_one": [ - 896, + 883, { "object": [ - 903, + 890, "e_objective_types_insert_input!" ], "on_conflict": [ - 907 + 894 ] } ], "insert_e_player_roles": [ - 926, + 913, { "objects": [ - 923, + 910, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 927 + 914 ] } ], "insert_e_player_roles_one": [ - 916, + 903, { "object": [ - 923, + 910, "e_player_roles_insert_input!" ], "on_conflict": [ - 927 + 914 ] } ], "insert_e_plugin_runtimes": [ - 946, + 933, { "objects": [ - 943, + 930, "[e_plugin_runtimes_insert_input!]!" ], "on_conflict": [ - 947 + 934 ] } ], "insert_e_plugin_runtimes_one": [ - 936, + 923, { "object": [ - 943, + 930, "e_plugin_runtimes_insert_input!" ], "on_conflict": [ - 947 + 934 ] } ], "insert_e_ready_settings": [ - 966, + 953, { "objects": [ - 963, + 950, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 967 + 954 ] } ], "insert_e_ready_settings_one": [ - 956, + 943, { "object": [ - 963, + 950, "e_ready_settings_insert_input!" ], "on_conflict": [ - 967 + 954 ] } ], "insert_e_sanction_types": [ - 986, + 973, { "objects": [ - 983, + 970, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 988 + 975 ] } ], "insert_e_sanction_types_one": [ - 976, + 963, { "object": [ - 983, + 970, "e_sanction_types_insert_input!" ], "on_conflict": [ - 988 + 975 ] } ], "insert_e_scrim_request_statuses": [ - 1007, + 994, { "objects": [ - 1004, + 991, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 1008 + 995 ] } ], "insert_e_scrim_request_statuses_one": [ - 997, + 984, { "object": [ - 1004, + 991, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 1008 + 995 ] } ], "insert_e_server_types": [ - 1027, + 1014, { "objects": [ - 1024, + 1011, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 1028 + 1015 ] } ], "insert_e_server_types_one": [ - 1017, + 1004, { "object": [ - 1024, + 1011, "e_server_types_insert_input!" ], "on_conflict": [ - 1028 + 1015 ] } ], "insert_e_sides": [ - 1047, + 1034, { "objects": [ - 1044, + 1031, "[e_sides_insert_input!]!" ], "on_conflict": [ - 1048 + 1035 ] } ], "insert_e_sides_one": [ - 1037, + 1024, { "object": [ - 1044, + 1031, "e_sides_insert_input!" ], "on_conflict": [ - 1048 + 1035 ] } ], "insert_e_system_alert_types": [ - 1067, + 1054, { "objects": [ - 1064, + 1051, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 1068 + 1055 ] } ], "insert_e_system_alert_types_one": [ - 1057, + 1044, { "object": [ - 1064, + 1051, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 1068 + 1055 ] } ], "insert_e_team_roles": [ - 1087, + 1074, { "objects": [ - 1084, + 1071, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 1089 + 1076 ] } ], "insert_e_team_roles_one": [ - 1077, + 1064, { "object": [ - 1084, + 1071, "e_team_roles_insert_input!" ], "on_conflict": [ - 1089 + 1076 ] } ], "insert_e_team_roster_statuses": [ - 1108, + 1095, { "objects": [ - 1105, + 1092, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 1109 + 1096 ] } ], "insert_e_team_roster_statuses_one": [ - 1098, + 1085, { "object": [ - 1105, + 1092, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 1109 + 1096 ] } ], "insert_e_timeout_settings": [ - 1128, + 1115, { "objects": [ - 1125, + 1112, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 1129 + 1116 ] } ], "insert_e_timeout_settings_one": [ - 1118, + 1105, { "object": [ - 1125, + 1112, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 1129 + 1116 + ] + } + ], + "insert_e_tournament_categories": [ + 1135, + { + "objects": [ + 1132, + "[e_tournament_categories_insert_input!]!" + ], + "on_conflict": [ + 1137 + ] + } + ], + "insert_e_tournament_categories_one": [ + 1125, + { + "object": [ + 1132, + "e_tournament_categories_insert_input!" + ], + "on_conflict": [ + 1137 ] } ], "insert_e_tournament_stage_types": [ - 1148, + 1156, { "objects": [ - 1145, + 1153, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 1150 + 1158 ] } ], "insert_e_tournament_stage_types_one": [ - 1138, + 1146, { "object": [ - 1145, + 1153, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 1150 + 1158 ] } ], "insert_e_tournament_status": [ - 1169, + 1177, { "objects": [ - 1166, + 1174, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1171 + 1179 ] } ], "insert_e_tournament_status_one": [ - 1159, + 1167, { "object": [ - 1166, + 1174, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1171 + 1179 ] } ], "insert_e_utility_types": [ - 1190, + 1198, { "objects": [ - 1187, + 1195, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1191 + 1199 ] } ], "insert_e_utility_types_one": [ - 1180, + 1188, { "object": [ - 1187, + 1195, "e_utility_types_insert_input!" ], "on_conflict": [ - 1191 + 1199 ] } ], "insert_e_veto_pick_types": [ - 1210, + 1218, { "objects": [ - 1207, + 1215, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1211 + 1219 ] } ], "insert_e_veto_pick_types_one": [ - 1200, + 1208, { "object": [ - 1207, + 1215, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1211 + 1219 ] } ], "insert_e_winning_reasons": [ - 1230, + 1238, { "objects": [ - 1227, + 1235, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1231 + 1239 ] } ], "insert_e_winning_reasons_one": [ - 1220, + 1228, { "object": [ - 1227, + 1235, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1231 - ] - } - ], - "insert_event_match_links": [ - 1248, - { - "objects": [ - 1245, - "[event_match_links_insert_input!]!" - ], - "on_conflict": [ - 1249 - ] - } - ], - "insert_event_match_links_one": [ - 1240, - { - "object": [ - 1245, - "event_match_links_insert_input!" - ], - "on_conflict": [ - 1249 - ] - } - ], - "insert_event_media": [ - 1275, - { - "objects": [ - 1270, - "[event_media_insert_input!]!" - ], - "on_conflict": [ - 1277 - ] - } - ], - "insert_event_media_one": [ - 1258, - { - "object": [ - 1270, - "event_media_insert_input!" - ], - "on_conflict": [ - 1277 - ] - } - ], - "insert_event_media_players": [ - 1297, - { - "objects": [ - 1292, - "[event_media_players_insert_input!]!" - ], - "on_conflict": [ - 1298 - ] - } - ], - "insert_event_media_players_one": [ - 1280, - { - "object": [ - 1292, - "event_media_players_insert_input!" - ], - "on_conflict": [ - 1298 - ] - } - ], - "insert_event_organizers": [ - 1358, - { - "objects": [ - 1353, - "[event_organizers_insert_input!]!" - ], - "on_conflict": [ - 1359 - ] - } - ], - "insert_event_organizers_one": [ - 1341, - { - "object": [ - 1353, - "event_organizers_insert_input!" - ], - "on_conflict": [ - 1359 - ] - } - ], - "insert_event_players": [ - 1399, - { - "objects": [ - 1394, - "[event_players_insert_input!]!" - ], - "on_conflict": [ - 1400 - ] - } - ], - "insert_event_players_one": [ - 1382, - { - "object": [ - 1394, - "event_players_insert_input!" - ], - "on_conflict": [ - 1400 - ] - } - ], - "insert_event_teams": [ - 1437, - { - "objects": [ - 1432, - "[event_teams_insert_input!]!" - ], - "on_conflict": [ - 1438 - ] - } - ], - "insert_event_teams_one": [ - 1423, - { - "object": [ - 1432, - "event_teams_insert_input!" - ], - "on_conflict": [ - 1438 - ] - } - ], - "insert_event_tournaments": [ - 1461, - { - "objects": [ - 1456, - "[event_tournaments_insert_input!]!" - ], - "on_conflict": [ - 1462 - ] - } - ], - "insert_event_tournaments_one": [ - 1447, - { - "object": [ - 1456, - "event_tournaments_insert_input!" - ], - "on_conflict": [ - 1462 - ] - } - ], - "insert_events": [ - 1481, - { - "objects": [ - 1478, - "[events_insert_input!]!" - ], - "on_conflict": [ - 1483 - ] - } - ], - "insert_events_one": [ - 1471, - { - "object": [ - 1478, - "events_insert_input!" - ], - "on_conflict": [ - 1483 + 1239 ] } ], "insert_friends": [ - 1511, + 1260, { "objects": [ - 1508, + 1257, "[friends_insert_input!]!" ], "on_conflict": [ - 1512 + 1261 ] } ], "insert_friends_one": [ - 1501, + 1250, { "object": [ - 1508, + 1257, "friends_insert_input!" ], "on_conflict": [ - 1512 + 1261 ] } ], "insert_game_server_nodes": [ - 1551, + 1300, { "objects": [ - 1546, + 1295, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1553 + 1302 ] } ], "insert_game_server_nodes_one": [ - 1528, + 1277, { "object": [ - 1546, + 1295, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1553 + 1302 ] } ], "insert_game_versions": [ - 1593, + 1342, { "objects": [ - 1590, + 1339, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1595 + 1344 ] } ], "insert_game_versions_one": [ - 1579, + 1328, { "object": [ - 1590, + 1339, "game_versions_insert_input!" ], "on_conflict": [ - 1595 + 1344 ] } ], "insert_gamedata_signature_validations": [ - 1626, + 1375, { "objects": [ - 1623, + 1372, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1627 + 1376 ] } ], "insert_gamedata_signature_validations_one": [ - 1612, + 1361, { "object": [ - 1623, + 1372, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1627 + 1376 ] } ], "insert_leaderboard_entries": [ - 1664, + 1412, { "objects": [ - 1661, + 1409, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1655, + 1403, { "object": [ - 1661, + 1409, "leaderboard_entries_insert_input!" ] } ], "insert_league_divisions": [ - 1689, + 1437, { "objects": [ - 1686, + 1434, "[league_divisions_insert_input!]!" ], "on_conflict": [ - 1691 + 1439 ] } ], "insert_league_divisions_one": [ - 1679, + 1427, { "object": [ - 1686, + 1434, "league_divisions_insert_input!" ], "on_conflict": [ - 1691 + 1439 ] } ], "insert_league_match_weeks": [ - 1724, + 1472, { "objects": [ - 1719, + 1467, "[league_match_weeks_insert_input!]!" ], "on_conflict": [ - 1725 + 1473 ] } ], "insert_league_match_weeks_one": [ - 1707, + 1455, { "object": [ - 1719, + 1467, "league_match_weeks_insert_input!" ], "on_conflict": [ - 1725 + 1473 ] } ], "insert_league_relegation_playoffs": [ - 1765, + 1513, { "objects": [ - 1760, + 1508, "[league_relegation_playoffs_insert_input!]!" ], "on_conflict": [ - 1766 + 1514 ] } ], "insert_league_relegation_playoffs_one": [ - 1748, + 1496, { "object": [ - 1760, + 1508, "league_relegation_playoffs_insert_input!" ], "on_conflict": [ - 1766 + 1514 ] } ], "insert_league_scheduling_proposals": [ - 1806, + 1554, { "objects": [ - 1801, + 1549, "[league_scheduling_proposals_insert_input!]!" ], "on_conflict": [ - 1807 + 1555 ] } ], "insert_league_scheduling_proposals_one": [ - 1789, + 1537, { "object": [ - 1801, + 1549, "league_scheduling_proposals_insert_input!" ], "on_conflict": [ - 1807 + 1555 ] } ], "insert_league_season_divisions": [ - 1844, + 1592, { "objects": [ - 1839, + 1587, "[league_season_divisions_insert_input!]!" ], "on_conflict": [ - 1846 + 1594 ] } ], "insert_league_season_divisions_one": [ - 1830, + 1578, { "object": [ - 1839, + 1587, "league_season_divisions_insert_input!" ], "on_conflict": [ - 1846 + 1594 ] } ], "insert_league_seasons": [ - 1869, + 1617, { "objects": [ - 1866, + 1614, "[league_seasons_insert_input!]!" ], "on_conflict": [ - 1871 + 1619 ] } ], "insert_league_seasons_one": [ - 1855, + 1603, { "object": [ - 1866, + 1614, "league_seasons_insert_input!" ], "on_conflict": [ - 1871 + 1619 ] } ], "insert_league_team_movements": [ - 1905, + 1653, { "objects": [ - 1900, + 1648, "[league_team_movements_insert_input!]!" ], "on_conflict": [ - 1906 + 1654 ] } ], "insert_league_team_movements_one": [ - 1888, + 1636, { "object": [ - 1900, + 1648, "league_team_movements_insert_input!" ], "on_conflict": [ - 1906 + 1654 ] } ], "insert_league_team_rosters": [ - 1946, + 1694, { "objects": [ - 1941, + 1689, "[league_team_rosters_insert_input!]!" ], "on_conflict": [ - 1947 + 1695 ] } ], "insert_league_team_rosters_one": [ - 1929, + 1677, { "object": [ - 1941, + 1689, "league_team_rosters_insert_input!" ], "on_conflict": [ - 1947 + 1695 ] } ], "insert_league_team_seasons": [ - 1987, + 1735, { "objects": [ - 1982, + 1730, "[league_team_seasons_insert_input!]!" ], "on_conflict": [ - 1989 + 1737 ] } ], "insert_league_team_seasons_one": [ - 1970, + 1718, { "object": [ - 1982, + 1730, "league_team_seasons_insert_input!" ], "on_conflict": [ - 1989 + 1737 ] } ], "insert_league_teams": [ - 2020, + 1768, { "objects": [ - 2017, + 1765, "[league_teams_insert_input!]!" ], "on_conflict": [ - 2022 + 1770 ] } ], "insert_league_teams_one": [ - 2012, + 1760, { "object": [ - 2017, + 1765, "league_teams_insert_input!" ], "on_conflict": [ - 2022 + 1770 ] } ], "insert_lobbies": [ - 2039, + 1787, { "objects": [ - 2036, + 1784, "[lobbies_insert_input!]!" ], "on_conflict": [ - 2041 + 1789 ] } ], "insert_lobbies_one": [ - 2031, + 1779, { "object": [ - 2036, + 1784, "lobbies_insert_input!" ], "on_conflict": [ - 2041 + 1789 ] } ], "insert_lobby_players": [ - 2069, + 1817, { "objects": [ - 2064, + 1812, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 2070 + 1818 ] } ], "insert_lobby_players_one": [ - 2050, + 1798, { "object": [ - 2064, + 1812, "lobby_players_insert_input!" ], "on_conflict": [ - 2070 + 1818 ] } ], "insert_map_pools": [ - 2103, + 1851, { "objects": [ - 2100, + 1848, "[map_pools_insert_input!]!" ], "on_conflict": [ - 2105 + 1853 ] } ], "insert_map_pools_one": [ - 2095, + 1843, { "object": [ - 2100, + 1848, "map_pools_insert_input!" ], "on_conflict": [ - 2105 + 1853 ] } ], "insert_maps": [ - 2130, + 1878, { "objects": [ - 2125, + 1873, "[maps_insert_input!]!" ], "on_conflict": [ - 2132 + 1880 ] } ], "insert_maps_one": [ - 2114, + 1862, { "object": [ - 2125, + 1873, "maps_insert_input!" ], "on_conflict": [ - 2132 + 1880 ] } ], "insert_match_clips": [ - 2160, + 1908, { "objects": [ - 2155, + 1903, "[match_clips_insert_input!]!" ], "on_conflict": [ - 2162 + 1910 ] } ], "insert_match_clips_one": [ - 2143, + 1891, { "object": [ - 2155, + 1903, "match_clips_insert_input!" ], "on_conflict": [ - 2162 + 1910 ] } ], "insert_match_demo_sessions": [ - 2206, + 1954, { "objects": [ - 2201, + 1949, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 2207 + 1955 ] } ], "insert_match_demo_sessions_one": [ - 2185, + 1933, { "object": [ - 2201, + 1949, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 2207 + 1955 ] } ], "insert_match_lineup_players": [ - 2250, + 1998, { "objects": [ - 2245, + 1993, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 2251 + 1999 ] } ], "insert_match_lineup_players_one": [ - 2231, + 1979, { "object": [ - 2245, + 1993, "match_lineup_players_insert_input!" ], "on_conflict": [ - 2251 + 1999 ] } ], "insert_match_lineups": [ - 2293, + 2041, { "objects": [ - 2288, + 2036, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 2295 + 2043 ] } ], "insert_match_lineups_one": [ - 2276, + 2024, { "object": [ - 2288, + 2036, "match_lineups_insert_input!" ], "on_conflict": [ - 2295 + 2043 ] } ], "insert_match_map_demos": [ - 2341, + 2089, { "objects": [ - 2336, + 2084, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2343 + 2091 ] } ], "insert_match_map_demos_one": [ - 2318, + 2066, { "object": [ - 2336, + 2084, "match_map_demos_insert_input!" ], "on_conflict": [ - 2343 + 2091 ] } ], "insert_match_map_rounds": [ - 2386, + 2134, { "objects": [ - 2381, + 2129, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2387 + 2135 ] } ], "insert_match_map_rounds_one": [ - 2369, + 2117, { "object": [ - 2381, + 2129, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2387 + 2135 ] } ], "insert_match_map_veto_picks": [ - 2424, + 2172, { "objects": [ - 2419, + 2167, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2425 + 2173 ] } ], "insert_match_map_veto_picks_one": [ - 2410, + 2158, { "object": [ - 2419, + 2167, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2425 + 2173 ] } ], "insert_match_maps": [ - 2451, + 2199, { "objects": [ - 2446, + 2194, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2453 + 2201 ] } ], "insert_match_maps_one": [ - 2434, + 2182, { "object": [ - 2446, + 2194, "match_maps_insert_input!" ], "on_conflict": [ - 2453 + 2201 ] } ], "insert_match_options": [ - 2486, + 2234, { "objects": [ - 2483, + 2231, "[match_options_insert_input!]!" ], "on_conflict": [ - 2488 + 2236 ] } ], "insert_match_options_one": [ - 2476, + 2224, { "object": [ - 2483, + 2231, "match_options_insert_input!" ], "on_conflict": [ - 2488 + 2236 ] } ], "insert_match_region_veto_picks": [ - 2518, + 2266, { "objects": [ - 2513, + 2261, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2519 + 2267 ] } ], "insert_match_region_veto_picks_one": [ - 2504, + 2252, { "object": [ - 2513, + 2261, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2519 + 2267 ] } ], "insert_match_streams": [ - 2551, + 2299, { "objects": [ - 2546, + 2294, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2552 + 2300 ] } ], "insert_match_streams_one": [ - 2528, + 2276, { "object": [ - 2546, + 2294, "match_streams_insert_input!" ], "on_conflict": [ - 2552 + 2300 ] } ], "insert_match_type_cfgs": [ - 2586, + 2334, { "objects": [ - 2583, + 2331, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2587 + 2335 ] } ], "insert_match_type_cfgs_one": [ - 2578, + 2326, { "object": [ - 2583, + 2331, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2587 + 2335 ] } ], "insert_matches": [ - 2613, + 2361, { "objects": [ - 2608, + 2356, "[matches_insert_input!]!" ], "on_conflict": [ - 2615 + 2363 ] } ], "insert_matches_one": [ - 2596, + 2344, { "object": [ - 2608, + 2356, "matches_insert_input!" ], "on_conflict": [ - 2615 + 2363 ] } ], "insert_migration_hashes_hashes": [ - 2646, + 2394, { "objects": [ - 2643, + 2391, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2647 + 2395 ] } ], "insert_migration_hashes_hashes_one": [ - 2638, + 2386, { "object": [ - 2643, + 2391, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2647 + 2395 ] } ], "insert_my_friends": [ - 2678, + 2426, { "objects": [ - 2673, + 2421, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2656, + 2404, { "object": [ - 2673, + 2421, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2712, + 2460, { "objects": [ - 2709, + 2457, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2713 + 2461 ] } ], "insert_news_articles_one": [ - 2702, + 2450, { "object": [ - 2709, + 2457, "news_articles_insert_input!" ], "on_conflict": [ - 2713 + 2461 ] } ], "insert_notifications": [ - 2752, + 2500, { "objects": [ - 2747, + 2495, "[notifications_insert_input!]!" ], "on_conflict": [ - 2753 + 2501 ] } ], "insert_notifications_one": [ - 2729, + 2477, { "object": [ - 2747, + 2495, "notifications_insert_input!" ], "on_conflict": [ - 2753 + 2501 ] } ], "insert_pending_match_import_players": [ - 2799, + 2547, { "objects": [ - 2794, + 2542, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 2800 + 2548 ] } ], "insert_pending_match_import_players_one": [ - 2782, + 2530, { "object": [ - 2794, + 2542, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 2800 + 2548 ] } ], "insert_pending_match_imports": [ - 2833, + 2581, { "objects": [ - 2830, + 2578, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 2835 + 2583 ] } ], "insert_pending_match_imports_one": [ - 2823, + 2571, { "object": [ - 2830, + 2578, "pending_match_imports_insert_input!" ], "on_conflict": [ - 2835 + 2583 ] } ], "insert_player_aim_stats_demo": [ - 2861, + 2609, { "objects": [ - 2858, + 2606, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 2862 + 2610 ] } ], "insert_player_aim_stats_demo_one": [ - 2851, + 2599, { "object": [ - 2858, + 2606, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 2862 + 2610 ] } ], "insert_player_aim_weapon_stats": [ - 2895, + 2643, { "objects": [ - 2890, + 2638, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 2896 + 2644 ] } ], "insert_player_aim_weapon_stats_one": [ - 2878, + 2626, { "object": [ - 2890, + 2638, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 2896 + 2644 ] } ], "insert_player_assists": [ - 2938, + 2686, { "objects": [ - 2933, + 2681, "[player_assists_insert_input!]!" ], "on_conflict": [ - 2939 + 2687 ] } ], "insert_player_assists_one": [ - 2919, + 2667, { "object": [ - 2933, + 2681, "player_assists_insert_input!" ], "on_conflict": [ - 2939 + 2687 ] } ], "insert_player_damages": [ - 2999, + 2747, { "objects": [ - 2994, + 2742, "[player_damages_insert_input!]!" ], "on_conflict": [ - 3000 + 2748 ] } ], "insert_player_damages_one": [ - 2982, + 2730, { "object": [ - 2994, + 2742, "player_damages_insert_input!" ], "on_conflict": [ - 3000 + 2748 ] } ], "insert_player_elo": [ - 3033, + 2781, { "objects": [ - 3030, + 2778, "[player_elo_insert_input!]!" ], "on_conflict": [ - 3034 + 2782 ] } ], "insert_player_elo_one": [ - 3023, + 2771, { "object": [ - 3030, + 2778, "player_elo_insert_input!" ], "on_conflict": [ - 3034 + 2782 ] } ], "insert_player_faceit_rank_history": [ - 3067, + 2815, { "objects": [ - 3062, + 2810, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 3068 + 2816 ] } ], "insert_player_faceit_rank_history_one": [ - 3050, + 2798, { "object": [ - 3062, + 2810, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 3068 + 2816 ] } ], "insert_player_flashes": [ - 3110, + 2858, { "objects": [ - 3105, + 2853, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 3111 + 2859 ] } ], "insert_player_flashes_one": [ - 3091, + 2839, { "object": [ - 3105, + 2853, "player_flashes_insert_input!" ], "on_conflict": [ - 3111 + 2859 ] } ], "insert_player_kills": [ - 3196, + 2944, { "objects": [ - 3191, + 2939, "[player_kills_insert_input!]!" ], "on_conflict": [ - 3197 + 2945 ] } ], "insert_player_kills_by_weapon": [ - 3165, + 2913, { "objects": [ - 3160, + 2908, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 3166 + 2914 ] } ], "insert_player_kills_by_weapon_one": [ - 3148, + 2896, { "object": [ - 3160, + 2908, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 3166 + 2914 ] } ], "insert_player_kills_one": [ - 3136, + 2884, { "object": [ - 3191, + 2939, "player_kills_insert_input!" ], "on_conflict": [ - 3197 + 2945 ] } ], "insert_player_leaderboard_rank": [ - 3231, + 2979, { "objects": [ - 3228, + 2976, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 3222, + 2970, { "object": [ - 3228, + 2976, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 3262, + 3010, { "objects": [ - 3257, + 3005, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 3263 + 3011 ] } ], "insert_player_match_map_stats_one": [ - 3245, + 2993, { "object": [ - 3257, + 3005, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 3263 + 3011 ] } ], "insert_player_objectives": [ - 3354, + 3102, { "objects": [ - 3349, + 3097, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3355 + 3103 ] } ], "insert_player_objectives_one": [ - 3337, + 3085, { "object": [ - 3349, + 3097, "player_objectives_insert_input!" ], "on_conflict": [ - 3355 + 3103 ] } ], "insert_player_premier_rank_history": [ - 3413, + 3161, { "objects": [ - 3408, + 3156, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3414 + 3162 ] } ], "insert_player_premier_rank_history_one": [ - 3396, + 3144, { "object": [ - 3408, + 3156, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3414 + 3162 ] } ], "insert_player_sanctions": [ - 3454, + 3202, { "objects": [ - 3449, + 3197, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3455 + 3203 ] } ], "insert_player_sanctions_one": [ - 3437, + 3185, { "object": [ - 3449, + 3197, "player_sanctions_insert_input!" ], "on_conflict": [ - 3455 + 3203 ] } ], "insert_player_season_stats": [ - 3505, + 3253, { "objects": [ - 3500, + 3248, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3506 + 3254 ] } ], "insert_player_season_stats_one": [ - 3478, + 3226, { "object": [ - 3500, + 3248, "player_season_stats_insert_input!" ], "on_conflict": [ - 3506 + 3254 ] } ], "insert_player_stats": [ - 3547, + 3295, { "objects": [ - 3544, + 3292, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3549 + 3297 ] } ], "insert_player_stats_one": [ - 3537, + 3285, { "object": [ - 3544, + 3292, "player_stats_insert_input!" ], "on_conflict": [ - 3549 + 3297 ] } ], "insert_player_steam_bot_friend": [ - 3579, + 3327, { "objects": [ - 3576, + 3324, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3580 + 3328 ] } ], "insert_player_steam_bot_friend_one": [ - 3565, + 3313, { "object": [ - 3576, + 3324, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3580 + 3328 ] } ], "insert_player_steam_match_auth": [ - 3607, + 3355, { "objects": [ - 3604, + 3352, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3608 + 3356 ] } ], "insert_player_steam_match_auth_one": [ - 3597, + 3345, { "object": [ - 3604, + 3352, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3608 + 3356 ] } ], "insert_player_unused_utility": [ - 3641, + 3389, { "objects": [ - 3636, + 3384, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3642 + 3390 ] } ], "insert_player_unused_utility_one": [ - 3624, + 3372, { "object": [ - 3636, + 3384, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3642 + 3390 ] } ], "insert_player_utility": [ - 3682, + 3430, { "objects": [ - 3677, + 3425, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3683 + 3431 ] } ], "insert_player_utility_one": [ - 3665, + 3413, { "object": [ - 3677, + 3425, "player_utility_insert_input!" ], "on_conflict": [ - 3683 + 3431 ] } ], "insert_players": [ - 3749, + 3497, { "objects": [ - 3746, + 3494, "[players_insert_input!]!" ], "on_conflict": [ - 3751 + 3499 ] } ], "insert_players_one": [ - 3739, + 3487, { "object": [ - 3746, + 3494, "players_insert_input!" ], "on_conflict": [ - 3751 + 3499 ] } ], "insert_plugin_versions": [ - 3777, + 3525, { "objects": [ - 3774, + 3522, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 3778 + 3526 ] } ], "insert_plugin_versions_one": [ - 3767, + 3515, { "object": [ - 3774, + 3522, "plugin_versions_insert_input!" ], "on_conflict": [ - 3778 + 3526 ] } ], "insert_seasons": [ - 3808, + 3556, { "objects": [ - 3805, + 3553, "[seasons_insert_input!]!" ], "on_conflict": [ - 3810 + 3558 ] } ], "insert_seasons_one": [ - 3798, + 3546, { "object": [ - 3805, + 3553, "seasons_insert_input!" ], "on_conflict": [ - 3810 + 3558 ] } ], "insert_server_regions": [ - 3835, + 3583, { "objects": [ - 3832, + 3580, "[server_regions_insert_input!]!" ], "on_conflict": [ - 3837 + 3585 ] } ], "insert_server_regions_one": [ - 3826, + 3574, { "object": [ - 3832, + 3580, "server_regions_insert_input!" ], "on_conflict": [ - 3837 + 3585 ] } ], "insert_servers": [ - 3872, + 3620, { "objects": [ - 3867, + 3615, "[servers_insert_input!]!" ], "on_conflict": [ - 3874 + 3622 ] } ], "insert_servers_one": [ - 3853, + 3601, { "object": [ - 3867, + 3615, "servers_insert_input!" ], "on_conflict": [ - 3874 + 3622 ] } ], "insert_settings": [ - 3907, + 3655, { "objects": [ - 3904, + 3652, "[settings_insert_input!]!" ], "on_conflict": [ - 3908 + 3656 ] } ], "insert_settings_one": [ - 3899, + 3647, { "object": [ - 3904, + 3652, "settings_insert_input!" ], "on_conflict": [ - 3908 + 3656 ] } ], "insert_steam_account_claims": [ - 3933, + 3681, { "objects": [ - 3928, + 3676, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 3934 + 3682 ] } ], "insert_steam_account_claims_one": [ - 3919, + 3667, { "object": [ - 3928, + 3676, "steam_account_claims_insert_input!" ], "on_conflict": [ - 3934 + 3682 ] } ], "insert_steam_accounts": [ - 3953, + 3701, { "objects": [ - 3950, + 3698, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 3955 + 3703 ] } ], "insert_steam_accounts_one": [ - 3943, + 3691, { "object": [ - 3950, + 3698, "steam_accounts_insert_input!" ], "on_conflict": [ - 3955 + 3703 ] } ], "insert_system_alerts": [ - 3981, + 3729, { "objects": [ - 3978, + 3726, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 3982 + 3730 ] } ], "insert_system_alerts_one": [ - 3971, + 3719, { "object": [ - 3978, + 3726, "system_alerts_insert_input!" ], "on_conflict": [ - 3982 + 3730 ] } ], "insert_team_invites": [ - 4015, + 3763, { "objects": [ - 4010, + 3758, "[team_invites_insert_input!]!" ], "on_conflict": [ - 4016 + 3764 ] } ], "insert_team_invites_one": [ - 3998, + 3746, { "object": [ - 4010, + 3758, "team_invites_insert_input!" ], "on_conflict": [ - 4016 + 3764 ] } ], "insert_team_roster": [ - 4058, + 3806, { "objects": [ - 4053, + 3801, "[team_roster_insert_input!]!" ], "on_conflict": [ - 4059 + 3807 ] } ], "insert_team_roster_one": [ - 4039, + 3787, { "object": [ - 4053, + 3801, "team_roster_insert_input!" ], "on_conflict": [ - 4059 + 3807 ] } ], "insert_team_scrim_alerts": [ - 4094, + 3842, { "objects": [ - 4091, + 3839, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 4095 + 3843 ] } ], "insert_team_scrim_alerts_one": [ - 4084, + 3832, { "object": [ - 4091, + 3839, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 4095 + 3843 ] } ], "insert_team_scrim_availability": [ - 4127, + 3875, { "objects": [ - 4122, + 3870, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 4128 + 3876 ] } ], "insert_team_scrim_availability_one": [ - 4111, + 3859, { "object": [ - 4122, + 3870, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 4128 + 3876 ] } ], "insert_team_scrim_request_proposals": [ - 4156, + 3904, { "objects": [ - 4151, + 3899, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 4157 + 3905 ] } ], "insert_team_scrim_request_proposals_one": [ - 4139, + 3887, { "object": [ - 4151, + 3899, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 4157 + 3905 ] } ], "insert_team_scrim_requests": [ - 4199, + 3947, { "objects": [ - 4194, + 3942, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 4201 + 3949 ] } ], "insert_team_scrim_requests_one": [ - 4180, + 3928, { "object": [ - 4194, + 3942, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 4201 + 3949 ] } ], "insert_team_scrim_settings": [ - 4236, + 3984, { "objects": [ - 4233, + 3981, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 4238 + 3986 ] } ], "insert_team_scrim_settings_one": [ - 4226, + 3974, { "object": [ - 4233, + 3981, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 4238 + 3986 ] } ], "insert_team_suggestions": [ - 4264, + 4012, { "objects": [ - 4261, + 4009, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 4265 + 4013 ] } ], "insert_team_suggestions_one": [ - 4254, + 4002, { "object": [ - 4261, + 4009, "team_suggestions_insert_input!" ], "on_conflict": [ - 4265 + 4013 ] } ], "insert_teams": [ - 4298, + 4048, { "objects": [ - 4293, + 4043, "[teams_insert_input!]!" ], "on_conflict": [ - 4300 + 4050 ] } ], "insert_teams_one": [ - 4281, + 4029, { "object": [ - 4293, + 4043, "teams_insert_input!" ], "on_conflict": [ - 4300 + 4050 ] } ], "insert_tournament_brackets": [ - 4345, + 4097, { "objects": [ - 4340, + 4092, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4347 + 4099 ] } ], "insert_tournament_brackets_one": [ - 4326, + 4078, { "object": [ - 4340, + 4092, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4347 + 4099 + ] + } + ], + "insert_tournament_categories": [ + 4138, + { + "objects": [ + 4133, + "[tournament_categories_insert_input!]!" + ], + "on_conflict": [ + 4139 + ] + } + ], + "insert_tournament_categories_one": [ + 4124, + { + "object": [ + 4133, + "tournament_categories_insert_input!" + ], + "on_conflict": [ + 4139 + ] + } + ], + "insert_tournament_organizer_teams": [ + 4162, + { + "objects": [ + 4157, + "[tournament_organizer_teams_insert_input!]!" + ], + "on_conflict": [ + 4163 + ] + } + ], + "insert_tournament_organizer_teams_one": [ + 4148, + { + "object": [ + 4157, + "tournament_organizer_teams_insert_input!" + ], + "on_conflict": [ + 4163 ] } ], "insert_tournament_organizers": [ - 4389, + 4189, { "objects": [ - 4384, + 4184, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4390 + 4190 ] } ], "insert_tournament_organizers_one": [ - 4372, + 4172, { "object": [ - 4384, + 4184, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4390 + 4190 + ] + } + ], + "insert_tournament_prizes": [ + 4230, + { + "objects": [ + 4225, + "[tournament_prizes_insert_input!]!" + ], + "on_conflict": [ + 4231 + ] + } + ], + "insert_tournament_prizes_one": [ + 4213, + { + "object": [ + 4225, + "tournament_prizes_insert_input!" + ], + "on_conflict": [ + 4231 ] } ], "insert_tournament_stage_windows": [ - 4430, + 4271, { "objects": [ - 4425, + 4266, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4431 + 4272 ] } ], "insert_tournament_stage_windows_one": [ - 4413, + 4254, { "object": [ - 4425, + 4266, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4431 + 4272 ] } ], "insert_tournament_stages": [ - 4477, + 4318, { "objects": [ - 4472, + 4313, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4479 + 4320 ] } ], "insert_tournament_stages_one": [ - 4454, + 4295, { "object": [ - 4472, + 4313, "tournament_stages_insert_input!" ], "on_conflict": [ - 4479 + 4320 ] } ], "insert_tournament_team_invites": [ - 4522, + 4363, { "objects": [ - 4517, + 4358, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 4523 + 4364 ] } ], "insert_tournament_team_invites_one": [ - 4505, + 4346, { "object": [ - 4517, + 4358, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 4523 + 4364 ] } ], "insert_tournament_team_roster": [ - 4563, + 4404, { "objects": [ - 4558, + 4399, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 4564 + 4405 ] } ], "insert_tournament_team_roster_one": [ - 4546, + 4387, { "object": [ - 4558, + 4399, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 4564 + 4405 ] } ], "insert_tournament_teams": [ - 4604, + 4445, { "objects": [ - 4599, + 4440, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 4606 + 4447 ] } ], "insert_tournament_teams_one": [ - 4587, + 4428, { "object": [ - 4599, + 4440, "tournament_teams_insert_input!" ], "on_conflict": [ - 4606 + 4447 ] } ], "insert_tournament_trophies": [ - 4648, + 4489, { "objects": [ - 4643, + 4484, "[tournament_trophies_insert_input!]!" ], "on_conflict": [ - 4649 + 4490 ] } ], "insert_tournament_trophies_one": [ - 4629, + 4470, { "object": [ - 4643, + 4484, "tournament_trophies_insert_input!" ], "on_conflict": [ - 4649 + 4490 ] } ], "insert_tournament_trophy_configs": [ - 4691, + 4532, { "objects": [ - 4686, + 4527, "[tournament_trophy_configs_insert_input!]!" ], "on_conflict": [ - 4693 + 4534 ] } ], "insert_tournament_trophy_configs_one": [ - 4674, + 4515, { "object": [ - 4686, + 4527, "tournament_trophy_configs_insert_input!" ], "on_conflict": [ - 4693 + 4534 ] } ], "insert_tournaments": [ - 4735, + 4586, { "objects": [ - 4730, + 4581, "[tournaments_insert_input!]!" ], "on_conflict": [ - 4737 + 4588 ] } ], "insert_tournaments_one": [ - 4716, + 4557, { "object": [ - 4730, + 4581, "tournaments_insert_input!" ], "on_conflict": [ - 4737 + 4588 ] } ], "insert_v_match_captains": [ - 4927, + 4735, { "objects": [ - 4924, + 4732, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 4918, + 4726, { "object": [ - 4924, + 4732, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 5038, + 4846, { "objects": [ - 5035, + 4843, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 5029, + 4837, { "object": [ - 5035, + 4843, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 5260, + 5068, { "objects": [ - 5255, + 5063, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 5244, + 5052, { "object": [ - 5255, + 5063, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5419, + 5227, { "objects": [ - 5414, + 5222, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5404, + 5212, { "object": [ - 5414, + 5222, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5513, + 5321, { "objects": [ - 5508, + 5316, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5515 + 5323 ] } ], "insert_v_team_stage_results_one": [ - 5486, + 5294, { "object": [ - 5508, + 5316, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5515 + 5323 ] } ], @@ -147698,7 +144323,7 @@ export default { 81, { "draftGameId": [ - 4762, + 4621, "uuid!" ], "inviteCode": [ @@ -147710,7 +144335,7 @@ export default { 81, { "draftGameId": [ - 4762, + 4621, "uuid!" ], "inviteCode": [ @@ -147735,14 +144360,14 @@ export default { } ], "league_award_forfeit": [ - 2596, + 2344, { "args": [ - 1678, + 1426, "league_award_forfeit_args!" ], "distinct_on": [ - 2618, + 2366, "[matches_select_column!]" ], "limit": [ @@ -147752,11 +144377,11 @@ export default { 38 ], "order_by": [ - 2616, + 2364, "[matches_order_by!]" ], "where": [ - 2605 + 2353 ] } ], @@ -147815,7 +144440,7 @@ export default { 81, { "match_map_id": [ - 4762, + 4621, "uuid!" ] } @@ -147827,7 +144452,7 @@ export default { 22, { "draftGameId": [ - 4762, + 4621, "uuid!" ], "inviteCode": [ @@ -147842,7 +144467,7 @@ export default { 38 ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "preset": [ @@ -147868,7 +144493,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -147877,20 +144502,20 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ] } ], "recalculate_tournament_trophies": [ - 4629, + 4470, { "args": [ - 3794, + 3542, "recalculate_tournament_trophies_args!" ], "distinct_on": [ - 4652, + 4493, "[tournament_trophies_select_column!]" ], "limit": [ @@ -147900,11 +144525,11 @@ export default { 38 ], "order_by": [ - 4650, + 4491, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4481 ] } ], @@ -147918,7 +144543,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -147942,7 +144567,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -147969,14 +144594,14 @@ export default { } ], "remove_league_team_from_season": [ - 1970, + 1718, { "args": [ - 3795, + 3543, "remove_league_team_from_season_args!" ], "distinct_on": [ - 1992, + 1740, "[league_team_seasons_select_column!]" ], "limit": [ @@ -147986,11 +144611,11 @@ export default { 38 ], "order_by": [ - 1990, + 1738, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 1727 ] } ], @@ -148015,14 +144640,14 @@ export default { } ], "reorder_league_divisions": [ - 1679, + 1427, { "args": [ - 3796, + 3544, "reorder_league_divisions_args!" ], "distinct_on": [ - 1694, + 1442, "[league_divisions_select_column!]" ], "limit": [ @@ -148032,11 +144657,11 @@ export default { 38 ], "order_by": [ - 1692, + 1440, "[league_divisions_order_by!]" ], "where": [ - 1683 + 1431 ] } ], @@ -148050,7 +144675,7 @@ export default { 81, { "match_map_id": [ - 4762, + 4621, "uuid!" ] } @@ -148059,7 +144684,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -148081,7 +144706,7 @@ export default { 81, { "job_id": [ - 4762, + 4621, "uuid!" ] } @@ -148094,7 +144719,7 @@ export default { "Boolean!" ], "draftGameId": [ - 4762, + 4621, "uuid!" ] } @@ -148107,7 +144732,7 @@ export default { "Boolean!" ], "request_id": [ - 4762, + 4621, "uuid!" ] } @@ -148122,14 +144747,14 @@ export default { } ], "restart_league_season": [ - 1855, + 1603, { "args": [ - 3797, + 3545, "restart_league_season_args!" ], "distinct_on": [ - 1875, + 1623, "[league_seasons_select_column!]" ], "limit": [ @@ -148139,11 +144764,11 @@ export default { 38 ], "order_by": [ - 1872, + 1620, "[league_seasons_order_by!]" ], "where": [ - 1860 + 1608 ] } ], @@ -148151,7 +144776,7 @@ export default { 81, { "match_map_id": [ - 4762, + 4621, "uuid!" ] } @@ -148160,7 +144785,7 @@ export default { 81, { "match_map_id": [ - 4762, + 4621, "uuid!" ], "only_failed": [ @@ -148210,7 +144835,7 @@ export default { 78 ], "id": [ - 4762 + 4621 ], "teaser": [ 78 @@ -148231,11 +144856,11 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324 + 4076 ] } ], @@ -148246,18 +144871,18 @@ export default { 38 ], "from_team_id": [ - 4762, + 4621, "uuid!" ], "proposed_scheduled_at": [ - 4324, + 4076, "timestamptz!" ], "region": [ 78 ], "to_team_id": [ - 4762, + 4621, "uuid!" ] } @@ -148279,7 +144904,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ], "mode": [ @@ -148292,15 +144917,15 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "winning_lineup_id": [ - 4762, + 4621, "uuid!" ] } @@ -148309,11 +144934,11 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ], "winning_lineup_id": [ - 4762, + 4621, "uuid!" ] } @@ -148322,7 +144947,7 @@ export default { 48, { "id": [ - 4762, + 4621, "uuid!" ], "status": [ @@ -148338,7 +144963,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -148351,7 +144976,7 @@ export default { "Boolean!" ], "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -148364,7 +144989,7 @@ export default { "String!" ], "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -148373,7 +144998,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ], "visible": [ @@ -148386,7 +145011,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -148395,7 +145020,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -148408,7 +145033,7 @@ export default { "Int!" ], "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -148417,7 +145042,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ], "show": [ @@ -148430,7 +145055,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ], "slot": [ @@ -148447,7 +145072,7 @@ export default { "Boolean!" ], "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -148456,7 +145081,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ], "mode": [ @@ -148469,11 +145094,11 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ], "server_id": [ - 4762 + 4621 ] } ], @@ -148481,7 +145106,7 @@ export default { 81, { "game_server_node_id": [ - 4762, + 4621, "uuid!" ] } @@ -148490,7 +145115,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -148499,7 +145124,7 @@ export default { 81, { "match_map_id": [ - 4762, + 4621, "uuid!" ] } @@ -148521,7 +145146,7 @@ export default { 81, { "match_id": [ - 4762, + 4621, "uuid!" ] } @@ -148539,7 +145164,7 @@ export default { 81, { "from_match_id": [ - 4762, + 4621, "uuid!" ], "mode": [ @@ -148547,7 +145172,7 @@ export default { "String!" ], "to_match_id": [ - 4762, + 4621, "uuid!" ] } @@ -148587,7 +145212,7 @@ export default { 81, { "clip_id": [ - 4762, + 4621, "uuid!" ], "target_steam_id": [ @@ -148608,7 +145233,7 @@ export default { 78 ], "game_server_node_id": [ - 4762 + 4621 ] } ], @@ -148616,11 +145241,11 @@ export default { 81, { "draftGameId": [ - 4762, + 4621, "uuid!" ], "settings": [ - 1652, + 1400, "jsonb!" ] } @@ -148808,7 +145433,7 @@ export default { ] } ], - "update_db_backups": [ + "update_custom_pages": [ 247, { "_inc": [ @@ -148819,11 +145444,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 +145459,5274 @@ 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, - { - "_set": [ - 540 - ], - "where": [ - 528, - "e_event_media_access_bool_exp!" - ] - } - ], - "update_e_event_media_access_by_pk": [ - 525, - { - "_set": [ - 540 - ], - "pk_columns": [ - 538, - "e_event_media_access_pk_columns_input!" - ] - } - ], - "update_e_event_media_access_many": [ - 535, - { - "updates": [ - 544, - "[e_event_media_access_updates!]!" - ] - } - ], - "update_e_event_visibility": [ - 555, - { - "_set": [ - 560 - ], - "where": [ - 548, - "e_event_visibility_bool_exp!" - ] - } - ], - "update_e_event_visibility_by_pk": [ - 545, - { - "_set": [ - 560 - ], - "pk_columns": [ - 558, - "e_event_visibility_pk_columns_input!" - ] - } - ], - "update_e_event_visibility_many": [ - 555, - { - "updates": [ - 564, - "[e_event_visibility_updates!]!" - ] - } - ], "update_e_friend_status": [ - 575, + 562, { "_set": [ - 581 + 568 ], "where": [ - 568, + 555, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 565, + 552, { "_set": [ - 581 + 568 ], "pk_columns": [ - 579, + 566, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 575, + 562, { "updates": [ - 585, + 572, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 596, + 583, { "_set": [ - 601 + 588 ], "where": [ - 589, + 576, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 586, + 573, { "_set": [ - 601 + 588 ], "pk_columns": [ - 599, + 586, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 596, + 583, { "updates": [ - 605, + 592, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 616, + 603, { "_set": [ - 622 + 609 ], "where": [ - 609, + 596, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 606, + 593, { "_set": [ - 622 + 609 ], "pk_columns": [ - 620, + 607, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 616, + 603, { "updates": [ - 626, + 613, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_league_movement_types": [ - 637, + 624, { "_set": [ - 643 + 630 ], "where": [ - 630, + 617, "e_league_movement_types_bool_exp!" ] } ], "update_e_league_movement_types_by_pk": [ - 627, + 614, { "_set": [ - 643 + 630 ], "pk_columns": [ - 641, + 628, "e_league_movement_types_pk_columns_input!" ] } ], "update_e_league_movement_types_many": [ - 637, + 624, { "updates": [ - 647, + 634, "[e_league_movement_types_updates!]!" ] } ], "update_e_league_proposal_statuses": [ - 658, + 645, { "_set": [ - 664 + 651 ], "where": [ - 651, + 638, "e_league_proposal_statuses_bool_exp!" ] } ], "update_e_league_proposal_statuses_by_pk": [ - 648, + 635, { "_set": [ - 664 + 651 ], "pk_columns": [ - 662, + 649, "e_league_proposal_statuses_pk_columns_input!" ] } ], "update_e_league_proposal_statuses_many": [ - 658, + 645, { "updates": [ - 668, + 655, "[e_league_proposal_statuses_updates!]!" ] } ], "update_e_league_registration_statuses": [ - 679, + 666, { "_set": [ - 685 + 672 ], "where": [ - 672, + 659, "e_league_registration_statuses_bool_exp!" ] } ], "update_e_league_registration_statuses_by_pk": [ - 669, + 656, { "_set": [ - 685 + 672 ], "pk_columns": [ - 683, + 670, "e_league_registration_statuses_pk_columns_input!" ] } ], "update_e_league_registration_statuses_many": [ - 679, + 666, { "updates": [ - 689, + 676, "[e_league_registration_statuses_updates!]!" ] } ], "update_e_league_season_statuses": [ - 700, + 687, { "_set": [ - 706 + 693 ], "where": [ - 693, + 680, "e_league_season_statuses_bool_exp!" ] } ], "update_e_league_season_statuses_by_pk": [ - 690, + 677, { "_set": [ - 706 + 693 ], "pk_columns": [ - 704, + 691, "e_league_season_statuses_pk_columns_input!" ] } ], "update_e_league_season_statuses_many": [ - 700, + 687, { "updates": [ - 710, + 697, "[e_league_season_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 721, + 708, { "_set": [ - 727 + 714 ], "where": [ - 714, + 701, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 711, + 698, { "_set": [ - 727 + 714 ], "pk_columns": [ - 725, + 712, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 721, + 708, { "updates": [ - 731, + 718, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 742, + 729, { "_set": [ - 747 + 734 ], "where": [ - 735, + 722, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 732, + 719, { "_set": [ - 747 + 734 ], "pk_columns": [ - 745, + 732, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 742, + 729, { "updates": [ - 751, + 738, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 762, + 749, { "_set": [ - 768 + 755 ], "where": [ - 755, + 742, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 752, + 739, { "_set": [ - 768 + 755 ], "pk_columns": [ - 766, + 753, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 762, + 749, { "updates": [ - 772, + 759, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 783, + 770, { "_set": [ - 788 + 775 ], "where": [ - 776, + 763, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 773, + 760, { "_set": [ - 788 + 775 ], "pk_columns": [ - 786, + 773, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 783, + 770, { "updates": [ - 792, + 779, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 803, + 790, { "_set": [ - 809 + 796 ], "where": [ - 796, + 783, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 793, + 780, { "_set": [ - 809 + 796 ], "pk_columns": [ - 807, + 794, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 803, + 790, { "updates": [ - 813, + 800, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 824, + 811, { "_set": [ - 829 + 816 ], "where": [ - 817, + 804, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 814, + 801, { "_set": [ - 829 + 816 ], "pk_columns": [ - 827, + 814, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 824, + 811, { "updates": [ - 833, + 820, "[e_match_mode_updates!]!" ] } ], "update_e_match_status": [ - 844, + 831, { "_set": [ - 850 + 837 ], "where": [ - 837, + 824, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 834, + 821, { "_set": [ - 850 + 837 ], "pk_columns": [ - 848, + 835, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 844, + 831, { "updates": [ - 854, + 841, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 865, + 852, { "_set": [ - 871 + 858 ], "where": [ - 858, + 845, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 855, + 842, { "_set": [ - 871 + 858 ], "pk_columns": [ - 869, + 856, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 865, + 852, { "updates": [ - 875, + 862, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 886, + 873, { "_set": [ - 891 + 878 ], "where": [ - 879, + 866, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 876, + 863, { "_set": [ - 891 + 878 ], "pk_columns": [ - 889, + 876, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 886, + 873, { "updates": [ - 895, + 882, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 906, + 893, { "_set": [ - 911 + 898 ], "where": [ - 899, + 886, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 896, + 883, { "_set": [ - 911 + 898 ], "pk_columns": [ - 909, + 896, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 906, + 893, { "updates": [ - 915, + 902, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 926, + 913, { "_set": [ - 931 + 918 ], "where": [ - 919, + 906, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 916, + 903, { "_set": [ - 931 + 918 ], "pk_columns": [ - 929, + 916, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 926, + 913, { "updates": [ - 935, + 922, "[e_player_roles_updates!]!" ] } ], "update_e_plugin_runtimes": [ - 946, + 933, { "_set": [ - 951 + 938 ], "where": [ - 939, + 926, "e_plugin_runtimes_bool_exp!" ] } ], "update_e_plugin_runtimes_by_pk": [ - 936, + 923, { "_set": [ - 951 + 938 ], "pk_columns": [ - 949, + 936, "e_plugin_runtimes_pk_columns_input!" ] } ], "update_e_plugin_runtimes_many": [ - 946, + 933, { "updates": [ - 955, + 942, "[e_plugin_runtimes_updates!]!" ] } ], "update_e_ready_settings": [ - 966, + 953, { "_set": [ - 971 + 958 ], "where": [ - 959, + 946, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 956, + 943, { "_set": [ - 971 + 958 ], "pk_columns": [ - 969, + 956, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 966, + 953, { "updates": [ - 975, + 962, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 986, + 973, { "_set": [ - 992 + 979 ], "where": [ - 979, + 966, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 976, + 963, { "_set": [ - 992 + 979 ], "pk_columns": [ - 990, + 977, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 986, + 973, { "updates": [ - 996, + 983, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 1007, + 994, { "_set": [ - 1012 + 999 ], "where": [ - 1000, + 987, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 997, + 984, { "_set": [ - 1012 + 999 ], "pk_columns": [ - 1010, + 997, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 1007, + 994, { "updates": [ - 1016, + 1003, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 1027, + 1014, { "_set": [ - 1032 + 1019 ], "where": [ - 1020, + 1007, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 1017, + 1004, { "_set": [ - 1032 + 1019 ], "pk_columns": [ - 1030, + 1017, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 1027, + 1014, { "updates": [ - 1036, + 1023, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 1047, + 1034, { "_set": [ - 1052 + 1039 ], "where": [ - 1040, + 1027, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 1037, + 1024, { "_set": [ - 1052 + 1039 ], "pk_columns": [ - 1050, + 1037, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 1047, + 1034, { "updates": [ - 1056, + 1043, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 1067, + 1054, { "_set": [ - 1072 + 1059 ], "where": [ - 1060, + 1047, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 1057, + 1044, { "_set": [ - 1072 + 1059 ], "pk_columns": [ - 1070, + 1057, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 1067, + 1054, { "updates": [ - 1076, + 1063, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 1087, + 1074, { "_set": [ - 1093 + 1080 ], "where": [ - 1080, + 1067, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 1077, + 1064, { "_set": [ - 1093 + 1080 ], "pk_columns": [ - 1091, + 1078, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 1087, + 1074, { "updates": [ - 1097, + 1084, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 1108, + 1095, { "_set": [ - 1113 + 1100 ], "where": [ - 1101, + 1088, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 1098, + 1085, { "_set": [ - 1113 + 1100 ], "pk_columns": [ - 1111, + 1098, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 1108, + 1095, { "updates": [ - 1117, + 1104, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 1128, + 1115, { "_set": [ - 1133 + 1120 ], "where": [ - 1121, + 1108, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 1118, + 1105, { "_set": [ - 1133 + 1120 ], "pk_columns": [ - 1131, + 1118, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 1128, + 1115, { "updates": [ - 1137, + 1124, "[e_timeout_settings_updates!]!" ] } ], + "update_e_tournament_categories": [ + 1135, + { + "_set": [ + 1141 + ], + "where": [ + 1128, + "e_tournament_categories_bool_exp!" + ] + } + ], + "update_e_tournament_categories_by_pk": [ + 1125, + { + "_set": [ + 1141 + ], + "pk_columns": [ + 1139, + "e_tournament_categories_pk_columns_input!" + ] + } + ], + "update_e_tournament_categories_many": [ + 1135, + { + "updates": [ + 1145, + "[e_tournament_categories_updates!]!" + ] + } + ], "update_e_tournament_stage_types": [ - 1148, + 1156, { "_set": [ - 1154 + 1162 ], "where": [ - 1141, + 1149, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 1138, + 1146, { "_set": [ - 1154 + 1162 ], "pk_columns": [ - 1152, + 1160, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 1148, + 1156, { "updates": [ - 1158, + 1166, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1169, + 1177, { "_set": [ - 1175 + 1183 ], "where": [ - 1162, + 1170, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1159, + 1167, { "_set": [ - 1175 + 1183 ], "pk_columns": [ - 1173, + 1181, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1169, + 1177, { "updates": [ - 1179, + 1187, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1190, + 1198, { "_set": [ - 1195 + 1203 ], "where": [ - 1183, + 1191, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1180, + 1188, { "_set": [ - 1195 + 1203 ], "pk_columns": [ - 1193, + 1201, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1190, + 1198, { "updates": [ - 1199, + 1207, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1210, + 1218, { "_set": [ - 1215 + 1223 ], "where": [ - 1203, + 1211, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1200, + 1208, { "_set": [ - 1215 + 1223 ], "pk_columns": [ - 1213, + 1221, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1210, + 1218, { "updates": [ - 1219, + 1227, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1230, + 1238, { "_set": [ - 1235 + 1243 ], "where": [ - 1223, + 1231, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1220, + 1228, { "_set": [ - 1235 + 1243 ], "pk_columns": [ - 1233, + 1241, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1230, + 1238, { "updates": [ - 1239, + 1247, "[e_winning_reasons_updates!]!" ] } ], - "update_event_match_links": [ - 1248, - { - "_set": [ - 1253 - ], - "where": [ - 1243, - "event_match_links_bool_exp!" - ] - } - ], - "update_event_match_links_by_pk": [ - 1240, - { - "_set": [ - 1253 - ], - "pk_columns": [ - 1251, - "event_match_links_pk_columns_input!" - ] - } - ], - "update_event_match_links_many": [ - 1248, - { - "updates": [ - 1257, - "[event_match_links_updates!]!" - ] - } - ], - "update_event_media": [ - 1275, - { - "_inc": [ - 1269 - ], - "_set": [ - 1322 - ], - "where": [ - 1267, - "event_media_bool_exp!" - ] - } - ], - "update_event_media_by_pk": [ - 1258, - { - "_inc": [ - 1269 - ], - "_set": [ - 1322 - ], - "pk_columns": [ - 1279, - "event_media_pk_columns_input!" - ] - } - ], - "update_event_media_many": [ - 1275, - { - "updates": [ - 1334, - "[event_media_updates!]!" - ] - } - ], - "update_event_media_players": [ - 1297, - { - "_inc": [ - 1291 - ], - "_set": [ - 1302 - ], - "where": [ - 1289, - "event_media_players_bool_exp!" - ] - } - ], - "update_event_media_players_by_pk": [ - 1280, - { - "_inc": [ - 1291 - ], - "_set": [ - 1302 - ], - "pk_columns": [ - 1300, - "event_media_players_pk_columns_input!" - ] - } - ], - "update_event_media_players_many": [ - 1297, - { - "updates": [ - 1314, - "[event_media_players_updates!]!" - ] - } - ], - "update_event_organizers": [ - 1358, - { - "_inc": [ - 1352 - ], - "_set": [ - 1363 - ], - "where": [ - 1350, - "event_organizers_bool_exp!" - ] - } - ], - "update_event_organizers_by_pk": [ - 1341, - { - "_inc": [ - 1352 - ], - "_set": [ - 1363 - ], - "pk_columns": [ - 1361, - "event_organizers_pk_columns_input!" - ] - } - ], - "update_event_organizers_many": [ - 1358, - { - "updates": [ - 1375, - "[event_organizers_updates!]!" - ] - } - ], - "update_event_players": [ - 1399, - { - "_inc": [ - 1393 - ], - "_set": [ - 1404 - ], - "where": [ - 1391, - "event_players_bool_exp!" - ] - } - ], - "update_event_players_by_pk": [ - 1382, - { - "_inc": [ - 1393 - ], - "_set": [ - 1404 - ], - "pk_columns": [ - 1402, - "event_players_pk_columns_input!" - ] - } - ], - "update_event_players_many": [ - 1399, - { - "updates": [ - 1416, - "[event_players_updates!]!" - ] - } - ], - "update_event_teams": [ - 1437, - { - "_set": [ - 1442 - ], - "where": [ - 1430, - "event_teams_bool_exp!" - ] - } - ], - "update_event_teams_by_pk": [ - 1423, - { - "_set": [ - 1442 - ], - "pk_columns": [ - 1440, - "event_teams_pk_columns_input!" - ] - } - ], - "update_event_teams_many": [ - 1437, - { - "updates": [ - 1446, - "[event_teams_updates!]!" - ] - } - ], - "update_event_tournaments": [ - 1461, - { - "_set": [ - 1466 - ], - "where": [ - 1454, - "event_tournaments_bool_exp!" - ] - } - ], - "update_event_tournaments_by_pk": [ - 1447, - { - "_set": [ - 1466 - ], - "pk_columns": [ - 1464, - "event_tournaments_pk_columns_input!" - ] - } - ], - "update_event_tournaments_many": [ - 1461, - { - "updates": [ - 1470, - "[event_tournaments_updates!]!" - ] - } - ], - "update_events": [ - 1481, - { - "_inc": [ - 1477 - ], - "_set": [ - 1487 - ], - "where": [ - 1475, - "events_bool_exp!" - ] - } - ], - "update_events_by_pk": [ - 1471, - { - "_inc": [ - 1477 - ], - "_set": [ - 1487 - ], - "pk_columns": [ - 1485, - "events_pk_columns_input!" - ] - } - ], - "update_events_many": [ - 1481, - { - "updates": [ - 1495, - "[events_updates!]!" - ] - } - ], "update_friends": [ - 1511, + 1260, { "_inc": [ - 1507 + 1256 ], "_set": [ - 1516 + 1265 ], "where": [ - 1505, + 1254, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1501, + 1250, { "_inc": [ - 1507 + 1256 ], "_set": [ - 1516 + 1265 ], "pk_columns": [ - 1514, + 1263, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1511, + 1260, { "updates": [ - 1524, + 1273, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 1551, + 1300, { "_append": [ - 1536 + 1285 ], "_delete_at_path": [ - 1542 + 1291 ], "_delete_elem": [ - 1543 + 1292 ], "_delete_key": [ - 1544 + 1293 ], "_inc": [ - 1545 + 1294 ], "_prepend": [ - 1556 + 1305 ], "_set": [ - 1560 + 1309 ], "where": [ - 1540, + 1289, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1528, + 1277, { "_append": [ - 1536 + 1285 ], "_delete_at_path": [ - 1542 + 1291 ], "_delete_elem": [ - 1543 + 1292 ], "_delete_key": [ - 1544 + 1293 ], "_inc": [ - 1545 + 1294 ], "_prepend": [ - 1556 + 1305 ], "_set": [ - 1560 + 1309 ], "pk_columns": [ - 1555, + 1304, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1551, + 1300, { "updates": [ - 1572, + 1321, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1593, + 1342, { "_append": [ - 1582 + 1331 ], "_delete_at_path": [ - 1586 + 1335 ], "_delete_elem": [ - 1587 + 1336 ], "_delete_key": [ - 1588 + 1337 ], "_inc": [ - 1589 + 1338 ], "_prepend": [ - 1598 + 1347 ], "_set": [ - 1600 + 1349 ], "where": [ - 1584, + 1333, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1579, + 1328, { "_append": [ - 1582 + 1331 ], "_delete_at_path": [ - 1586 + 1335 ], "_delete_elem": [ - 1587 + 1336 ], "_delete_key": [ - 1588 + 1337 ], "_inc": [ - 1589 + 1338 ], "_prepend": [ - 1598 + 1347 ], "_set": [ - 1600 + 1349 ], "pk_columns": [ - 1597, + 1346, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1593, + 1342, { "updates": [ - 1608, + 1357, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1626, + 1375, { "_append": [ - 1615 + 1364 ], "_delete_at_path": [ - 1619 + 1368 ], "_delete_elem": [ - 1620 + 1369 ], "_delete_key": [ - 1621 + 1370 ], "_inc": [ - 1622 + 1371 ], "_prepend": [ - 1630 + 1379 ], "_set": [ - 1632 + 1381 ], "where": [ - 1617, + 1366, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1612, + 1361, { "_append": [ - 1615 + 1364 ], "_delete_at_path": [ - 1619 + 1368 ], "_delete_elem": [ - 1620 + 1369 ], "_delete_key": [ - 1621 + 1370 ], "_inc": [ - 1622 + 1371 ], "_prepend": [ - 1630 + 1379 ], "_set": [ - 1632 + 1381 ], "pk_columns": [ - 1629, + 1378, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1626, + 1375, { "updates": [ - 1640, + 1389, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1664, + 1412, { "_inc": [ - 1660 + 1408 ], "_set": [ - 1667 + 1415 ], "where": [ - 1659, + 1407, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1664, + 1412, { "updates": [ - 1674, + 1422, "[leaderboard_entries_updates!]!" ] } ], "update_league_divisions": [ - 1689, + 1437, { "_inc": [ - 1685 + 1433 ], "_set": [ - 1695 + 1443 ], "where": [ - 1683, + 1431, "league_divisions_bool_exp!" ] } ], "update_league_divisions_by_pk": [ - 1679, + 1427, { "_inc": [ - 1685 + 1433 ], "_set": [ - 1695 + 1443 ], "pk_columns": [ - 1693, + 1441, "league_divisions_pk_columns_input!" ] } ], "update_league_divisions_many": [ - 1689, + 1437, { "updates": [ - 1703, + 1451, "[league_divisions_updates!]!" ] } ], "update_league_match_weeks": [ - 1724, + 1472, { "_inc": [ - 1718 + 1466 ], "_set": [ - 1729 + 1477 ], "where": [ - 1716, + 1464, "league_match_weeks_bool_exp!" ] } ], "update_league_match_weeks_by_pk": [ - 1707, + 1455, { "_inc": [ - 1718 + 1466 ], "_set": [ - 1729 + 1477 ], "pk_columns": [ - 1727, + 1475, "league_match_weeks_pk_columns_input!" ] } ], "update_league_match_weeks_many": [ - 1724, + 1472, { "updates": [ - 1741, + 1489, "[league_match_weeks_updates!]!" ] } ], "update_league_relegation_playoffs": [ - 1765, + 1513, { "_inc": [ - 1759 + 1507 ], "_set": [ - 1770 + 1518 ], "where": [ - 1757, + 1505, "league_relegation_playoffs_bool_exp!" ] } ], "update_league_relegation_playoffs_by_pk": [ - 1748, + 1496, { "_inc": [ - 1759 + 1507 ], "_set": [ - 1770 + 1518 ], "pk_columns": [ - 1768, + 1516, "league_relegation_playoffs_pk_columns_input!" ] } ], "update_league_relegation_playoffs_many": [ - 1765, + 1513, { "updates": [ - 1782, + 1530, "[league_relegation_playoffs_updates!]!" ] } ], "update_league_scheduling_proposals": [ - 1806, + 1554, { "_inc": [ - 1800 + 1548 ], "_set": [ - 1811 + 1559 ], "where": [ - 1798, + 1546, "league_scheduling_proposals_bool_exp!" ] } ], "update_league_scheduling_proposals_by_pk": [ - 1789, + 1537, { "_inc": [ - 1800 + 1548 ], "_set": [ - 1811 + 1559 ], "pk_columns": [ - 1809, + 1557, "league_scheduling_proposals_pk_columns_input!" ] } ], "update_league_scheduling_proposals_many": [ - 1806, + 1554, { "updates": [ - 1823, + 1571, "[league_scheduling_proposals_updates!]!" ] } ], "update_league_season_divisions": [ - 1844, + 1592, { "_set": [ - 1850 + 1598 ], "where": [ - 1837, + 1585, "league_season_divisions_bool_exp!" ] } ], "update_league_season_divisions_by_pk": [ - 1830, + 1578, { "_set": [ - 1850 + 1598 ], "pk_columns": [ - 1848, + 1596, "league_season_divisions_pk_columns_input!" ] } ], "update_league_season_divisions_many": [ - 1844, + 1592, { "updates": [ - 1854, + 1602, "[league_season_divisions_updates!]!" ] } ], "update_league_seasons": [ - 1869, + 1617, { "_append": [ - 1858 + 1606 ], "_delete_at_path": [ - 1862 + 1610 ], "_delete_elem": [ - 1863 + 1611 ], "_delete_key": [ - 1864 + 1612 ], "_inc": [ - 1865 + 1613 ], "_prepend": [ - 1874 + 1622 ], "_set": [ - 1876 + 1624 ], "where": [ - 1860, + 1608, "league_seasons_bool_exp!" ] } ], "update_league_seasons_by_pk": [ - 1855, + 1603, { "_append": [ - 1858 + 1606 ], "_delete_at_path": [ - 1862 + 1610 ], "_delete_elem": [ - 1863 + 1611 ], "_delete_key": [ - 1864 + 1612 ], "_inc": [ - 1865 + 1613 ], "_prepend": [ - 1874 + 1622 ], "_set": [ - 1876 + 1624 ], "pk_columns": [ - 1873, + 1621, "league_seasons_pk_columns_input!" ] } ], "update_league_seasons_many": [ - 1869, + 1617, { "updates": [ - 1884, + 1632, "[league_seasons_updates!]!" ] } ], "update_league_team_movements": [ - 1905, + 1653, { "_inc": [ - 1899 + 1647 ], "_set": [ - 1910 + 1658 ], "where": [ - 1897, + 1645, "league_team_movements_bool_exp!" ] } ], "update_league_team_movements_by_pk": [ - 1888, + 1636, { "_inc": [ - 1899 + 1647 ], "_set": [ - 1910 + 1658 ], "pk_columns": [ - 1908, + 1656, "league_team_movements_pk_columns_input!" ] } ], "update_league_team_movements_many": [ - 1905, + 1653, { "updates": [ - 1922, + 1670, "[league_team_movements_updates!]!" ] } ], "update_league_team_rosters": [ - 1946, + 1694, { "_inc": [ - 1940 + 1688 ], "_set": [ - 1951 + 1699 ], "where": [ - 1938, + 1686, "league_team_rosters_bool_exp!" ] } ], "update_league_team_rosters_by_pk": [ - 1929, + 1677, { "_inc": [ - 1940 + 1688 ], "_set": [ - 1951 + 1699 ], "pk_columns": [ - 1949, + 1697, "league_team_rosters_pk_columns_input!" ] } ], "update_league_team_rosters_many": [ - 1946, + 1694, { "updates": [ - 1963, + 1711, "[league_team_rosters_updates!]!" ] } ], "update_league_team_seasons": [ - 1987, + 1735, { "_inc": [ - 1981 + 1729 ], "_set": [ - 1993 + 1741 ], "where": [ - 1979, + 1727, "league_team_seasons_bool_exp!" ] } ], "update_league_team_seasons_by_pk": [ - 1970, + 1718, { "_inc": [ - 1981 + 1729 ], "_set": [ - 1993 + 1741 ], "pk_columns": [ - 1991, + 1739, "league_team_seasons_pk_columns_input!" ] } ], "update_league_team_seasons_many": [ - 1987, + 1735, { "updates": [ - 2005, + 1753, "[league_team_seasons_updates!]!" ] } ], "update_league_teams": [ - 2020, + 1768, { "_set": [ - 2026 + 1774 ], "where": [ - 2015, + 1763, "league_teams_bool_exp!" ] } ], "update_league_teams_by_pk": [ - 2012, + 1760, { "_set": [ - 2026 + 1774 ], "pk_columns": [ - 2024, + 1772, "league_teams_pk_columns_input!" ] } ], "update_league_teams_many": [ - 2020, + 1768, { "updates": [ - 2030, + 1778, "[league_teams_updates!]!" ] } ], "update_lobbies": [ - 2039, + 1787, { "_set": [ - 2045 + 1793 ], "where": [ - 2034, + 1782, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 2031, + 1779, { "_set": [ - 2045 + 1793 ], "pk_columns": [ - 2043, + 1791, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 2039, + 1787, { "updates": [ - 2049, + 1797, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 2069, + 1817, { "_inc": [ - 2063 + 1811 ], "_set": [ - 2076 + 1824 ], "where": [ - 2061, + 1809, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 2050, + 1798, { "_inc": [ - 2063 + 1811 ], "_set": [ - 2076 + 1824 ], "pk_columns": [ - 2072, + 1820, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 2069, + 1817, { "updates": [ - 2088, + 1836, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 2103, + 1851, { "_set": [ - 2109 + 1857 ], "where": [ - 2098, + 1846, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 2095, + 1843, { "_set": [ - 2109 + 1857 ], "pk_columns": [ - 2107, + 1855, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 2103, + 1851, { "updates": [ - 2113, + 1861, "[map_pools_updates!]!" ] } ], "update_maps": [ - 2130, + 1878, { "_set": [ - 2138 + 1886 ], "where": [ - 2123, + 1871, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 2114, + 1862, { "_set": [ - 2138 + 1886 ], "pk_columns": [ - 2134, + 1882, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 2130, + 1878, { "updates": [ - 2142, + 1890, "[maps_updates!]!" ] } ], "update_match_clips": [ - 2160, + 1908, { "_inc": [ - 2154 + 1902 ], "_set": [ - 2166 + 1914 ], "where": [ - 2152, + 1900, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 2143, + 1891, { "_inc": [ - 2154 + 1902 ], "_set": [ - 2166 + 1914 ], "pk_columns": [ - 2164, + 1912, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 2160, + 1908, { "updates": [ - 2178, + 1926, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 2206, + 1954, { "_append": [ - 2191 + 1939 ], "_delete_at_path": [ - 2197 + 1945 ], "_delete_elem": [ - 2198 + 1946 ], "_delete_key": [ - 2199 + 1947 ], "_inc": [ - 2200 + 1948 ], "_prepend": [ - 2210 + 1958 ], "_set": [ - 2212 + 1960 ], "where": [ - 2195, + 1943, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 2185, + 1933, { "_append": [ - 2191 + 1939 ], "_delete_at_path": [ - 2197 + 1945 ], "_delete_elem": [ - 2198 + 1946 ], "_delete_key": [ - 2199 + 1947 ], "_inc": [ - 2200 + 1948 ], "_prepend": [ - 2210 + 1958 ], "_set": [ - 2212 + 1960 ], "pk_columns": [ - 2209, + 1957, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 2206, + 1954, { "updates": [ - 2224, + 1972, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 2250, + 1998, { "_inc": [ - 2244 + 1992 ], "_set": [ - 2257 + 2005 ], "where": [ - 2242, + 1990, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 2231, + 1979, { "_inc": [ - 2244 + 1992 ], "_set": [ - 2257 + 2005 ], "pk_columns": [ - 2253, + 2001, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 2250, + 1998, { "updates": [ - 2269, + 2017, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 2293, + 2041, { "_inc": [ - 2287 + 2035 ], "_set": [ - 2299 + 2047 ], "where": [ - 2285, + 2033, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 2276, + 2024, { "_inc": [ - 2287 + 2035 ], "_set": [ - 2299 + 2047 ], "pk_columns": [ - 2297, + 2045, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 2293, + 2041, { "updates": [ - 2311, + 2059, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2341, + 2089, { "_append": [ - 2326 + 2074 ], "_delete_at_path": [ - 2332 + 2080 ], "_delete_elem": [ - 2333 + 2081 ], "_delete_key": [ - 2334 + 2082 ], "_inc": [ - 2335 + 2083 ], "_prepend": [ - 2346 + 2094 ], "_set": [ - 2350 + 2098 ], "where": [ - 2330, + 2078, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 2318, + 2066, { "_append": [ - 2326 + 2074 ], "_delete_at_path": [ - 2332 + 2080 ], "_delete_elem": [ - 2333 + 2081 ], "_delete_key": [ - 2334 + 2082 ], "_inc": [ - 2335 + 2083 ], "_prepend": [ - 2346 + 2094 ], "_set": [ - 2350 + 2098 ], "pk_columns": [ - 2345, + 2093, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2341, + 2089, { "updates": [ - 2362, + 2110, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2386, + 2134, { "_inc": [ - 2380 + 2128 ], "_set": [ - 2391 + 2139 ], "where": [ - 2378, + 2126, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2369, + 2117, { "_inc": [ - 2380 + 2128 ], "_set": [ - 2391 + 2139 ], "pk_columns": [ - 2389, + 2137, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2386, + 2134, { "updates": [ - 2403, + 2151, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2424, + 2172, { "_set": [ - 2429 + 2177 ], "where": [ - 2417, + 2165, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2410, + 2158, { "_set": [ - 2429 + 2177 ], "pk_columns": [ - 2427, + 2175, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2424, + 2172, { "updates": [ - 2433, + 2181, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2451, + 2199, { "_inc": [ - 2445 + 2193 ], "_set": [ - 2457 + 2205 ], "where": [ - 2443, + 2191, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2434, + 2182, { "_inc": [ - 2445 + 2193 ], "_set": [ - 2457 + 2205 ], "pk_columns": [ - 2455, + 2203, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2451, + 2199, { "updates": [ - 2469, + 2217, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2486, + 2234, { "_inc": [ - 2482 + 2230 ], "_set": [ - 2492 + 2240 ], "where": [ - 2480, + 2228, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2476, + 2224, { "_inc": [ - 2482 + 2230 ], "_set": [ - 2492 + 2240 ], "pk_columns": [ - 2490, + 2238, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2486, + 2234, { "updates": [ - 2500, + 2248, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2518, + 2266, { "_set": [ - 2523 + 2271 ], "where": [ - 2511, + 2259, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2504, + 2252, { "_set": [ - 2523 + 2271 ], "pk_columns": [ - 2521, + 2269, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2518, + 2266, { "updates": [ - 2527, + 2275, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2551, + 2299, { "_append": [ - 2536 + 2284 ], "_delete_at_path": [ - 2542 + 2290 ], "_delete_elem": [ - 2543 + 2291 ], "_delete_key": [ - 2544 + 2292 ], "_inc": [ - 2545 + 2293 ], "_prepend": [ - 2555 + 2303 ], "_set": [ - 2559 + 2307 ], "where": [ - 2540, + 2288, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2528, + 2276, { "_append": [ - 2536 + 2284 ], "_delete_at_path": [ - 2542 + 2290 ], "_delete_elem": [ - 2543 + 2291 ], "_delete_key": [ - 2544 + 2292 ], "_inc": [ - 2545 + 2293 ], "_prepend": [ - 2555 + 2303 ], "_set": [ - 2559 + 2307 ], "pk_columns": [ - 2554, + 2302, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2551, + 2299, { "updates": [ - 2571, + 2319, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2586, + 2334, { "_set": [ - 2591 + 2339 ], "where": [ - 2581, + 2329, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2578, + 2326, { "_set": [ - 2591 + 2339 ], "pk_columns": [ - 2589, + 2337, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2586, + 2334, { "updates": [ - 2595, + 2343, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2613, + 2361, { "_inc": [ - 2607 + 2355 ], "_set": [ - 2619 + 2367 ], "where": [ - 2605, + 2353, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2596, + 2344, { "_inc": [ - 2607 + 2355 ], "_set": [ - 2619 + 2367 ], "pk_columns": [ - 2617, + 2365, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2613, + 2361, { "updates": [ - 2631, + 2379, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2646, + 2394, { "_set": [ - 2651 + 2399 ], "where": [ - 2641, + 2389, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2638, + 2386, { "_set": [ - 2651 + 2399 ], "pk_columns": [ - 2649, + 2397, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2646, + 2394, { "updates": [ - 2655, + 2403, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2678, + 2426, { "_append": [ - 2664 + 2412 ], "_delete_at_path": [ - 2669 + 2417 ], "_delete_elem": [ - 2670 + 2418 ], "_delete_key": [ - 2671 + 2419 ], "_inc": [ - 2672 + 2420 ], "_prepend": [ - 2680 + 2428 ], "_set": [ - 2684 + 2432 ], "where": [ - 2668, + 2416, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2678, + 2426, { "updates": [ - 2695, + 2443, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2712, + 2460, { "_inc": [ - 2708 + 2456 ], "_set": [ - 2717 + 2465 ], "where": [ - 2706, + 2454, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2702, + 2450, { "_inc": [ - 2708 + 2456 ], "_set": [ - 2717 + 2465 ], "pk_columns": [ - 2715, + 2463, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2712, + 2460, { "updates": [ - 2725, + 2473, "[news_articles_updates!]!" ] } ], "update_notifications": [ - 2752, + 2500, { "_append": [ - 2737 + 2485 ], "_delete_at_path": [ - 2743 + 2491 ], "_delete_elem": [ - 2744 + 2492 ], "_delete_key": [ - 2745 + 2493 ], "_inc": [ - 2746 + 2494 ], "_prepend": [ - 2756 + 2504 ], "_set": [ - 2760 + 2508 ], "where": [ - 2741, + 2489, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 2729, + 2477, { "_append": [ - 2737 + 2485 ], "_delete_at_path": [ - 2743 + 2491 ], "_delete_elem": [ - 2744 + 2492 ], "_delete_key": [ - 2745 + 2493 ], "_inc": [ - 2746 + 2494 ], "_prepend": [ - 2756 + 2504 ], "_set": [ - 2760 + 2508 ], "pk_columns": [ - 2755, + 2503, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 2752, + 2500, { "updates": [ - 2772, + 2520, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 2799, + 2547, { "_inc": [ - 2793 + 2541 ], "_set": [ - 2804 + 2552 ], "where": [ - 2791, + 2539, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 2782, + 2530, { "_inc": [ - 2793 + 2541 ], "_set": [ - 2804 + 2552 ], "pk_columns": [ - 2802, + 2550, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 2799, + 2547, { "updates": [ - 2816, + 2564, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 2833, + 2581, { "_inc": [ - 2829 + 2577 ], "_set": [ - 2839 + 2587 ], "where": [ - 2827, + 2575, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 2823, + 2571, { "_inc": [ - 2829 + 2577 ], "_set": [ - 2839 + 2587 ], "pk_columns": [ - 2837, + 2585, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 2833, + 2581, { "updates": [ - 2847, + 2595, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 2861, + 2609, { "_inc": [ - 2857 + 2605 ], "_set": [ - 2866 + 2614 ], "where": [ - 2855, + 2603, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 2851, + 2599, { "_inc": [ - 2857 + 2605 ], "_set": [ - 2866 + 2614 ], "pk_columns": [ - 2864, + 2612, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 2861, + 2609, { "updates": [ - 2874, + 2622, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 2895, + 2643, { "_inc": [ - 2889 + 2637 ], "_set": [ - 2900 + 2648 ], "where": [ - 2887, + 2635, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 2878, + 2626, { "_inc": [ - 2889 + 2637 ], "_set": [ - 2900 + 2648 ], "pk_columns": [ - 2898, + 2646, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 2895, + 2643, { "updates": [ - 2912, + 2660, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 2938, + 2686, { "_inc": [ - 2932 + 2680 ], "_set": [ - 2945 + 2693 ], "where": [ - 2930, + 2678, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 2919, + 2667, { "_inc": [ - 2932 + 2680 ], "_set": [ - 2945 + 2693 ], "pk_columns": [ - 2941, + 2689, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 2938, + 2686, { "updates": [ - 2957, + 2705, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 2999, + 2747, { "_inc": [ - 2993 + 2741 ], "_set": [ - 3004 + 2752 ], "where": [ - 2991, + 2739, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 2982, + 2730, { "_inc": [ - 2993 + 2741 ], "_set": [ - 3004 + 2752 ], "pk_columns": [ - 3002, + 2750, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 2999, + 2747, { "updates": [ - 3016, + 2764, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 3033, + 2781, { "_inc": [ - 3029 + 2777 ], "_set": [ - 3038 + 2786 ], "where": [ - 3027, + 2775, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 3023, + 2771, { "_inc": [ - 3029 + 2777 ], "_set": [ - 3038 + 2786 ], "pk_columns": [ - 3036, + 2784, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 3033, + 2781, { "updates": [ - 3046, + 2794, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 3067, + 2815, { "_inc": [ - 3061 + 2809 ], "_set": [ - 3072 + 2820 ], "where": [ - 3059, + 2807, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 3050, + 2798, { "_inc": [ - 3061 + 2809 ], "_set": [ - 3072 + 2820 ], "pk_columns": [ - 3070, + 2818, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 3067, + 2815, { "updates": [ - 3084, + 2832, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 3110, + 2858, { "_inc": [ - 3104 + 2852 ], "_set": [ - 3117 + 2865 ], "where": [ - 3102, + 2850, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 3091, + 2839, { "_inc": [ - 3104 + 2852 ], "_set": [ - 3117 + 2865 ], "pk_columns": [ - 3113, + 2861, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 3110, + 2858, { "updates": [ - 3129, + 2877, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 3196, + 2944, { "_inc": [ - 3190 + 2938 ], "_set": [ - 3203 + 2951 ], "where": [ - 3147, + 2895, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 3136, + 2884, { "_inc": [ - 3190 + 2938 ], "_set": [ - 3203 + 2951 ], "pk_columns": [ - 3199, + 2947, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 3165, + 2913, { "_inc": [ - 3159 + 2907 ], "_set": [ - 3170 + 2918 ], "where": [ - 3157, + 2905, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 3148, + 2896, { "_inc": [ - 3159 + 2907 ], "_set": [ - 3170 + 2918 ], "pk_columns": [ - 3168, + 2916, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 3165, + 2913, { "updates": [ - 3182, + 2930, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 3196, + 2944, { "updates": [ - 3215, + 2963, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 3231, + 2979, { "_inc": [ - 3227 + 2975 ], "_set": [ - 3234 + 2982 ], "where": [ - 3226, + 2974, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 3231, + 2979, { "updates": [ - 3241, + 2989, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 3262, + 3010, { "_inc": [ - 3256 + 3004 ], "_set": [ - 3267 + 3015 ], "where": [ - 3254, + 3002, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 3245, + 2993, { "_inc": [ - 3256 + 3004 ], "_set": [ - 3267 + 3015 ], "pk_columns": [ - 3265, + 3013, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 3262, + 3010, { "updates": [ - 3279, + 3027, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3354, + 3102, { "_inc": [ - 3348 + 3096 ], "_set": [ - 3359 + 3107 ], "where": [ - 3346, + 3094, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3337, + 3085, { "_inc": [ - 3348 + 3096 ], "_set": [ - 3359 + 3107 ], "pk_columns": [ - 3357, + 3105, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3354, + 3102, { "updates": [ - 3371, + 3119, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3413, + 3161, { "_inc": [ - 3407 + 3155 ], "_set": [ - 3418 + 3166 ], "where": [ - 3405, + 3153, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3396, + 3144, { "_inc": [ - 3407 + 3155 ], "_set": [ - 3418 + 3166 ], "pk_columns": [ - 3416, + 3164, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3413, + 3161, { "updates": [ - 3430, + 3178, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3454, + 3202, { "_inc": [ - 3448 + 3196 ], "_set": [ - 3459 + 3207 ], "where": [ - 3446, + 3194, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3437, + 3185, { "_inc": [ - 3448 + 3196 ], "_set": [ - 3459 + 3207 ], "pk_columns": [ - 3457, + 3205, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3454, + 3202, { "updates": [ - 3471, + 3219, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3505, + 3253, { "_inc": [ - 3499 + 3247 ], "_set": [ - 3518 + 3266 ], "where": [ - 3497, + 3245, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3478, + 3226, { "_inc": [ - 3499 + 3247 ], "_set": [ - 3518 + 3266 ], "pk_columns": [ - 3508, + 3256, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3505, + 3253, { "updates": [ - 3530, + 3278, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3547, + 3295, { "_inc": [ - 3543 + 3291 ], "_set": [ - 3553 + 3301 ], "where": [ - 3541, + 3289, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3537, + 3285, { "_inc": [ - 3543 + 3291 ], "_set": [ - 3553 + 3301 ], "pk_columns": [ - 3551, + 3299, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3547, + 3295, { "updates": [ - 3561, + 3309, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3579, + 3327, { "_append": [ - 3568 + 3316 ], "_delete_at_path": [ - 3572 + 3320 ], "_delete_elem": [ - 3573 + 3321 ], "_delete_key": [ - 3574 + 3322 ], "_inc": [ - 3575 + 3323 ], "_prepend": [ - 3583 + 3331 ], "_set": [ - 3585 + 3333 ], "where": [ - 3570, + 3318, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3565, + 3313, { "_append": [ - 3568 + 3316 ], "_delete_at_path": [ - 3572 + 3320 ], "_delete_elem": [ - 3573 + 3321 ], "_delete_key": [ - 3574 + 3322 ], "_inc": [ - 3575 + 3323 ], "_prepend": [ - 3583 + 3331 ], "_set": [ - 3585 + 3333 ], "pk_columns": [ - 3582, + 3330, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3579, + 3327, { "updates": [ - 3593, + 3341, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3607, + 3355, { "_inc": [ - 3603 + 3351 ], "_set": [ - 3612 + 3360 ], "where": [ - 3601, + 3349, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3597, + 3345, { "_inc": [ - 3603 + 3351 ], "_set": [ - 3612 + 3360 ], "pk_columns": [ - 3610, + 3358, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3607, + 3355, { "updates": [ - 3620, + 3368, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3641, + 3389, { "_inc": [ - 3635 + 3383 ], "_set": [ - 3646 + 3394 ], "where": [ - 3633, + 3381, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3624, + 3372, { "_inc": [ - 3635 + 3383 ], "_set": [ - 3646 + 3394 ], "pk_columns": [ - 3644, + 3392, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3641, + 3389, { "updates": [ - 3658, + 3406, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3682, + 3430, { "_inc": [ - 3676 + 3424 ], "_set": [ - 3687 + 3435 ], "where": [ - 3674, + 3422, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3665, + 3413, { "_inc": [ - 3676 + 3424 ], "_set": [ - 3687 + 3435 ], "pk_columns": [ - 3685, + 3433, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3682, + 3430, { "updates": [ - 3699, + 3447, "[player_utility_updates!]!" ] } ], "update_players": [ - 3749, + 3497, { "_inc": [ - 3745 + 3493 ], "_set": [ - 3755 + 3503 ], "where": [ - 3743, + 3491, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 3739, + 3487, { "_inc": [ - 3745 + 3493 ], "_set": [ - 3755 + 3503 ], "pk_columns": [ - 3753, + 3501, "players_pk_columns_input!" ] } ], "update_players_many": [ - 3749, + 3497, { "updates": [ - 3763, + 3511, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 3777, + 3525, { "_inc": [ - 3773 + 3521 ], "_set": [ - 3782 + 3530 ], "where": [ - 3771, + 3519, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 3767, + 3515, { "_inc": [ - 3773 + 3521 ], "_set": [ - 3782 + 3530 ], "pk_columns": [ - 3780, + 3528, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 3777, + 3525, { "updates": [ - 3790, + 3538, "[plugin_versions_updates!]!" ] } ], "update_seasons": [ - 3808, + 3556, { "_inc": [ - 3804 + 3552 ], "_set": [ - 3814 + 3562 ], "where": [ - 3802, + 3550, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 3798, + 3546, { "_inc": [ - 3804 + 3552 ], "_set": [ - 3814 + 3562 ], "pk_columns": [ - 3812, + 3560, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 3808, + 3556, { "updates": [ - 3822, + 3570, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 3835, + 3583, { "_set": [ - 3841 + 3589 ], "where": [ - 3830, + 3578, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 3826, + 3574, { "_set": [ - 3841 + 3589 ], "pk_columns": [ - 3839, + 3587, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 3835, + 3583, { "updates": [ - 3849, + 3597, "[server_regions_updates!]!" ] } ], "update_servers": [ - 3872, + 3620, { "_inc": [ - 3866 + 3614 ], "_set": [ - 3880 + 3628 ], "where": [ - 3864, + 3612, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 3853, + 3601, { "_inc": [ - 3866 + 3614 ], "_set": [ - 3880 + 3628 ], "pk_columns": [ - 3876, + 3624, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 3872, + 3620, { "updates": [ - 3892, + 3640, "[servers_updates!]!" ] } ], "update_settings": [ - 3907, + 3655, { "_set": [ - 3912 + 3660 ], "where": [ - 3902, + 3650, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 3899, + 3647, { "_set": [ - 3912 + 3660 ], "pk_columns": [ - 3910, + 3658, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 3907, + 3655, { "updates": [ - 3916, + 3664, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 3933, + 3681, { "_set": [ - 3938 + 3686 ], "where": [ - 3926, + 3674, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 3919, + 3667, { "_set": [ - 3938 + 3686 ], "pk_columns": [ - 3936, + 3684, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 3933, + 3681, { "updates": [ - 3942, + 3690, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 3953, + 3701, { "_inc": [ - 3949 + 3697 ], "_set": [ - 3959 + 3707 ], "where": [ - 3947, + 3695, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 3943, + 3691, { "_inc": [ - 3949 + 3697 ], "_set": [ - 3959 + 3707 ], "pk_columns": [ - 3957, + 3705, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 3953, + 3701, { "updates": [ - 3967, + 3715, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 3981, + 3729, { "_inc": [ - 3977 + 3725 ], "_set": [ - 3986 + 3734 ], "where": [ - 3975, + 3723, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 3971, + 3719, { "_inc": [ - 3977 + 3725 ], "_set": [ - 3986 + 3734 ], "pk_columns": [ - 3984, + 3732, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 3981, + 3729, { "updates": [ - 3994, + 3742, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 4015, + 3763, { "_inc": [ - 4009 + 3757 ], "_set": [ - 4020 + 3768 ], "where": [ - 4007, + 3755, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 3998, + 3746, { "_inc": [ - 4009 + 3757 ], "_set": [ - 4020 + 3768 ], "pk_columns": [ - 4018, + 3766, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 4015, + 3763, { "updates": [ - 4032, + 3780, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 4058, + 3806, { "_inc": [ - 4052 + 3800 ], "_set": [ - 4065 + 3813 ], "where": [ - 4050, + 3798, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 4039, + 3787, { "_inc": [ - 4052 + 3800 ], "_set": [ - 4065 + 3813 ], "pk_columns": [ - 4061, + 3809, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 4058, + 3806, { "updates": [ - 4077, + 3825, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 4094, + 3842, { "_inc": [ - 4090 + 3838 ], "_set": [ - 4099 + 3847 ], "where": [ - 4088, + 3836, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 4084, + 3832, { "_inc": [ - 4090 + 3838 ], "_set": [ - 4099 + 3847 ], "pk_columns": [ - 4097, + 3845, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 4094, + 3842, { "updates": [ - 4107, + 3855, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 4127, + 3875, { "_set": [ - 4134 + 3882 ], "where": [ - 4120, + 3868, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 4111, + 3859, { "_set": [ - 4134 + 3882 ], "pk_columns": [ - 4130, + 3878, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 4127, + 3875, { "updates": [ - 4138, + 3886, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 4156, + 3904, { "_inc": [ - 4150 + 3898 ], "_set": [ - 4161 + 3909 ], "where": [ - 4148, + 3896, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 4139, + 3887, { "_inc": [ - 4150 + 3898 ], "_set": [ - 4161 + 3909 ], "pk_columns": [ - 4159, + 3907, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 4156, + 3904, { "updates": [ - 4173, + 3921, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 4199, + 3947, { "_inc": [ - 4193 + 3941 ], "_set": [ - 4207 + 3955 ], "where": [ - 4191, + 3939, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 4180, + 3928, { "_inc": [ - 4193 + 3941 ], "_set": [ - 4207 + 3955 ], "pk_columns": [ - 4203, + 3951, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 4199, + 3947, { "updates": [ - 4219, + 3967, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 4236, + 3984, { "_inc": [ - 4232 + 3980 ], "_set": [ - 4242 + 3990 ], "where": [ - 4230, + 3978, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 4226, + 3974, { "_inc": [ - 4232 + 3980 ], "_set": [ - 4242 + 3990 ], "pk_columns": [ - 4240, + 3988, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 4236, + 3984, { "updates": [ - 4250, + 3998, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 4264, + 4012, { "_inc": [ - 4260 + 4008 ], "_set": [ - 4269 + 4017 ], "where": [ - 4258, + 4006, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 4254, + 4002, { "_inc": [ - 4260 + 4008 ], "_set": [ - 4269 + 4017 ], "pk_columns": [ - 4267, + 4015, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 4264, + 4012, { "updates": [ - 4277, + 4025, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 4298, + 4048, { "_inc": [ - 4292 + 4042 ], "_set": [ - 4304 + 4056 ], "where": [ - 4290, + 4040, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 4281, + 4029, { "_inc": [ - 4292 + 4042 ], "_set": [ - 4304 + 4056 ], "pk_columns": [ - 4302, + 4052, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 4298, + 4048, { "updates": [ - 4316, + 4068, "[teams_updates!]!" ] } ], "update_tournament_brackets": [ - 4345, + 4097, { "_inc": [ - 4339 + 4091 ], "_set": [ - 4353 + 4105 ], "where": [ - 4337, + 4089, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4326, + 4078, { "_inc": [ - 4339 + 4091 ], "_set": [ - 4353 + 4105 ], "pk_columns": [ - 4349, + 4101, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4345, + 4097, { "updates": [ - 4365, + 4117, "[tournament_brackets_updates!]!" ] } ], + "update_tournament_categories": [ + 4138, + { + "_set": [ + 4143 + ], + "where": [ + 4131, + "tournament_categories_bool_exp!" + ] + } + ], + "update_tournament_categories_by_pk": [ + 4124, + { + "_set": [ + 4143 + ], + "pk_columns": [ + 4141, + "tournament_categories_pk_columns_input!" + ] + } + ], + "update_tournament_categories_many": [ + 4138, + { + "updates": [ + 4147, + "[tournament_categories_updates!]!" + ] + } + ], + "update_tournament_organizer_teams": [ + 4162, + { + "_set": [ + 4167 + ], + "where": [ + 4155, + "tournament_organizer_teams_bool_exp!" + ] + } + ], + "update_tournament_organizer_teams_by_pk": [ + 4148, + { + "_set": [ + 4167 + ], + "pk_columns": [ + 4165, + "tournament_organizer_teams_pk_columns_input!" + ] + } + ], + "update_tournament_organizer_teams_many": [ + 4162, + { + "updates": [ + 4171, + "[tournament_organizer_teams_updates!]!" + ] + } + ], "update_tournament_organizers": [ - 4389, + 4189, { "_inc": [ - 4383 + 4183 ], "_set": [ - 4394 + 4194 ], "where": [ - 4381, + 4181, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4372, + 4172, { "_inc": [ - 4383 + 4183 ], "_set": [ - 4394 + 4194 ], "pk_columns": [ - 4392, + 4192, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4389, + 4189, { "updates": [ - 4406, + 4206, "[tournament_organizers_updates!]!" ] } ], + "update_tournament_prizes": [ + 4230, + { + "_inc": [ + 4224 + ], + "_set": [ + 4235 + ], + "where": [ + 4222, + "tournament_prizes_bool_exp!" + ] + } + ], + "update_tournament_prizes_by_pk": [ + 4213, + { + "_inc": [ + 4224 + ], + "_set": [ + 4235 + ], + "pk_columns": [ + 4233, + "tournament_prizes_pk_columns_input!" + ] + } + ], + "update_tournament_prizes_many": [ + 4230, + { + "updates": [ + 4247, + "[tournament_prizes_updates!]!" + ] + } + ], "update_tournament_stage_windows": [ - 4430, + 4271, { "_inc": [ - 4424 + 4265 ], "_set": [ - 4435 + 4276 ], "where": [ - 4422, + 4263, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4413, + 4254, { "_inc": [ - 4424 + 4265 ], "_set": [ - 4435 + 4276 ], "pk_columns": [ - 4433, + 4274, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4430, + 4271, { "updates": [ - 4447, + 4288, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4477, + 4318, { "_append": [ - 4462 + 4303 ], "_delete_at_path": [ - 4468 + 4309 ], "_delete_elem": [ - 4469 + 4310 ], "_delete_key": [ - 4470 + 4311 ], "_inc": [ - 4471 + 4312 ], "_prepend": [ - 4482 + 4323 ], "_set": [ - 4486 + 4327 ], "where": [ - 4466, + 4307, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4454, + 4295, { "_append": [ - 4462 + 4303 ], "_delete_at_path": [ - 4468 + 4309 ], "_delete_elem": [ - 4469 + 4310 ], "_delete_key": [ - 4470 + 4311 ], "_inc": [ - 4471 + 4312 ], "_prepend": [ - 4482 + 4323 ], "_set": [ - 4486 + 4327 ], "pk_columns": [ - 4481, + 4322, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4477, + 4318, { "updates": [ - 4498, + 4339, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4522, + 4363, { "_inc": [ - 4516 + 4357 ], "_set": [ - 4527 + 4368 ], "where": [ - 4514, + 4355, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4505, + 4346, { "_inc": [ - 4516 + 4357 ], "_set": [ - 4527 + 4368 ], "pk_columns": [ - 4525, + 4366, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4522, + 4363, { "updates": [ - 4539, + 4380, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 4563, + 4404, { "_inc": [ - 4557 + 4398 ], "_set": [ - 4568 + 4409 ], "where": [ - 4555, + 4396, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 4546, + 4387, { "_inc": [ - 4557 + 4398 ], "_set": [ - 4568 + 4409 ], "pk_columns": [ - 4566, + 4407, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 4563, + 4404, { "updates": [ - 4580, + 4421, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 4604, + 4445, { "_inc": [ - 4598 + 4439 ], "_set": [ - 4610 + 4451 ], "where": [ - 4596, + 4437, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 4587, + 4428, { "_inc": [ - 4598 + 4439 ], "_set": [ - 4610 + 4451 ], "pk_columns": [ - 4608, + 4449, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 4604, + 4445, { "updates": [ - 4622, + 4463, "[tournament_teams_updates!]!" ] } ], "update_tournament_trophies": [ - 4648, + 4489, { "_inc": [ - 4642 + 4483 ], "_set": [ - 4655 + 4496 ], "where": [ - 4640, + 4481, "tournament_trophies_bool_exp!" ] } ], "update_tournament_trophies_by_pk": [ - 4629, + 4470, { "_inc": [ - 4642 + 4483 ], "_set": [ - 4655 + 4496 ], "pk_columns": [ - 4651, + 4492, "tournament_trophies_pk_columns_input!" ] } ], "update_tournament_trophies_many": [ - 4648, + 4489, { "updates": [ - 4667, + 4508, "[tournament_trophies_updates!]!" ] } ], "update_tournament_trophy_configs": [ - 4691, + 4532, { "_inc": [ - 4685 + 4526 ], "_set": [ - 4697 + 4538 ], "where": [ - 4683, + 4524, "tournament_trophy_configs_bool_exp!" ] } ], "update_tournament_trophy_configs_by_pk": [ - 4674, + 4515, { "_inc": [ - 4685 + 4526 ], "_set": [ - 4697 + 4538 ], "pk_columns": [ - 4695, + 4536, "tournament_trophy_configs_pk_columns_input!" ] } ], "update_tournament_trophy_configs_many": [ - 4691, + 4532, { "updates": [ - 4709, + 4550, "[tournament_trophy_configs_updates!]!" ] } ], "update_tournaments": [ - 4735, + 4586, { "_inc": [ - 4729 + 4580 ], "_set": [ - 4743 + 4602 ], "where": [ - 4727, + 4578, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 4716, + 4557, { "_inc": [ - 4729 + 4580 ], "_set": [ - 4743 + 4602 ], "pk_columns": [ - 4739, + 4590, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 4735, + 4586, { "updates": [ - 4755, + 4614, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 4927, + 4735, { "_inc": [ - 4923 + 4731 ], "_set": [ - 4931 + 4739 ], "where": [ - 4922, + 4730, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 4927, + 4735, { "updates": [ - 4938, + 4746, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 5038, + 4846, { "_inc": [ - 5034 + 4842 ], "_set": [ - 5041 + 4849 ], "where": [ - 5033, + 4841, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 5038, + 4846, { "updates": [ - 5048, + 4856, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 5260, + 5068, { "_inc": [ - 5254 + 5062 ], "_set": [ - 5263 + 5071 ], "where": [ - 5253, + 5061, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 5260, + 5068, { "updates": [ - 5274, + 5082, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5419, + 5227, { "_set": [ - 5424 + 5232 ], "where": [ - 5413, + 5221, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5419, + 5227, { "updates": [ - 5427, + 5235, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5513, + 5321, { "_inc": [ - 5507 + 5315 ], "_set": [ - 5527 + 5335 ], "where": [ - 5505, + 5313, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5486, + 5294, { "_inc": [ - 5507 + 5315 ], "_set": [ - 5527 + 5335 ], "pk_columns": [ - 5517, + 5325, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5513, + 5321, { "updates": [ - 5539, + 5347, "[v_team_stage_results_updates!]!" ] } @@ -154293,7 +150735,7 @@ export default { 81, { "game_server_node_id": [ - 4762, + 4621, "uuid!" ] } @@ -154302,10 +150744,10 @@ export default { 91, { "match_map_demo_id": [ - 4762 + 4621 ], "match_map_id": [ - 4762, + 4621, "uuid!" ] } @@ -154383,11 +150825,11 @@ export default { 92, { "map_id": [ - 4762, + 4621, "uuid!" ], "map_pool_id": [ - 4762, + 4621, "uuid!" ] } @@ -154456,7 +150898,7 @@ export default { 111, { "id": [ - 4762, + 4621, "uuid!" ] } @@ -154525,7 +150967,7 @@ export default { 152, { "id": [ - 4762, + 4621, "uuid!" ] } @@ -154594,7 +151036,7 @@ export default { 185, { "id": [ - 4762, + 4621, "uuid!" ] } @@ -154615,12 +151057,12 @@ export default { ] } ], - "db_backups": [ + "custom_pages": [ 237, { "distinct_on": [ 251, - "[db_backups_select_column!]" + "[custom_pages_select_column!]" ], "limit": [ 38 @@ -154630,19 +151072,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 +151094,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, + 4621, "uuid!" ] } ], - "db_backups_stream": [ + "custom_pages_stream": [ 237, { "batch_size": [ @@ -154677,18 +151119,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": [ + 4621, + "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 +151209,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 +151231,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, + 4621, "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 +151278,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 +151300,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, + 4621, "uuid!" ], "steam_id": [ @@ -154811,26 +151322,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 +151351,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 +151373,44 @@ export default { 38 ], "order_by": [ - 376, + 403, "[draft_games_order_by!]" ], "where": [ - 365 + 392 ] } ], "draft_games_by_pk": [ - 354, + 381, { "id": [ - 4762, + 4621, "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 +151420,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 +151442,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 +151460,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 +151489,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 +151511,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 +151529,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 +151558,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 +151580,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 +151598,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 +151627,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 +151649,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 +151667,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 +151696,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 +151718,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 +151736,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 +151765,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 +151787,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,164 +151805,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 - ] - } - ], - "e_event_media_access": [ - 525, - { - "distinct_on": [ - 539, - "[e_event_media_access_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 537, - "[e_event_media_access_order_by!]" - ], - "where": [ - 528 - ] - } - ], - "e_event_media_access_aggregate": [ - 526, - { - "distinct_on": [ - 539, - "[e_event_media_access_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 537, - "[e_event_media_access_order_by!]" - ], - "where": [ - 528 - ] - } - ], - "e_event_media_access_by_pk": [ - 525, - { - "value": [ - 78, - "String!" - ] - } - ], - "e_event_media_access_stream": [ - 525, - { - "batch_size": [ - 38, - "Int!" - ], - "cursor": [ - 541, - "[e_event_media_access_stream_cursor_input]!" - ], - "where": [ - 528 - ] - } - ], - "e_event_visibility": [ - 545, - { - "distinct_on": [ - 559, - "[e_event_visibility_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 557, - "[e_event_visibility_order_by!]" - ], - "where": [ - 548 - ] - } - ], - "e_event_visibility_aggregate": [ - 546, - { - "distinct_on": [ - 559, - "[e_event_visibility_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 557, - "[e_event_visibility_order_by!]" - ], - "where": [ - 548 - ] - } - ], - "e_event_visibility_by_pk": [ - 545, - { - "value": [ - 78, - "String!" - ] - } - ], - "e_event_visibility_stream": [ - 545, - { - "batch_size": [ - 38, - "Int!" - ], - "cursor": [ - 561, - "[e_event_visibility_stream_cursor_input]!" - ], - "where": [ - 548 + 534 ] } ], "e_friend_status": [ - 565, + 552, { "distinct_on": [ - 580, + 567, "[e_friend_status_select_column!]" ], "limit": [ @@ -155461,19 +151834,19 @@ export default { 38 ], "order_by": [ - 578, + 565, "[e_friend_status_order_by!]" ], "where": [ - 568 + 555 ] } ], "e_friend_status_aggregate": [ - 566, + 553, { "distinct_on": [ - 580, + 567, "[e_friend_status_select_column!]" ], "limit": [ @@ -155483,16 +151856,16 @@ export default { 38 ], "order_by": [ - 578, + 565, "[e_friend_status_order_by!]" ], "where": [ - 568 + 555 ] } ], "e_friend_status_by_pk": [ - 565, + 552, { "value": [ 78, @@ -155501,26 +151874,26 @@ export default { } ], "e_friend_status_stream": [ - 565, + 552, { "batch_size": [ 38, "Int!" ], "cursor": [ - 582, + 569, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 568 + 555 ] } ], "e_game_cfg_types": [ - 586, + 573, { "distinct_on": [ - 600, + 587, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -155530,19 +151903,19 @@ export default { 38 ], "order_by": [ - 598, + 585, "[e_game_cfg_types_order_by!]" ], "where": [ - 589 + 576 ] } ], "e_game_cfg_types_aggregate": [ - 587, + 574, { "distinct_on": [ - 600, + 587, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -155552,16 +151925,16 @@ export default { 38 ], "order_by": [ - 598, + 585, "[e_game_cfg_types_order_by!]" ], "where": [ - 589 + 576 ] } ], "e_game_cfg_types_by_pk": [ - 586, + 573, { "value": [ 78, @@ -155570,26 +151943,26 @@ export default { } ], "e_game_cfg_types_stream": [ - 586, + 573, { "batch_size": [ 38, "Int!" ], "cursor": [ - 602, + 589, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 589 + 576 ] } ], "e_game_server_node_statuses": [ - 606, + 593, { "distinct_on": [ - 621, + 608, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -155599,19 +151972,19 @@ export default { 38 ], "order_by": [ - 619, + 606, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 609 + 596 ] } ], "e_game_server_node_statuses_aggregate": [ - 607, + 594, { "distinct_on": [ - 621, + 608, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -155621,16 +151994,16 @@ export default { 38 ], "order_by": [ - 619, + 606, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 609 + 596 ] } ], "e_game_server_node_statuses_by_pk": [ - 606, + 593, { "value": [ 78, @@ -155639,26 +152012,26 @@ export default { } ], "e_game_server_node_statuses_stream": [ - 606, + 593, { "batch_size": [ 38, "Int!" ], "cursor": [ - 623, + 610, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 609 + 596 ] } ], "e_league_movement_types": [ - 627, + 614, { "distinct_on": [ - 642, + 629, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -155668,19 +152041,19 @@ export default { 38 ], "order_by": [ - 640, + 627, "[e_league_movement_types_order_by!]" ], "where": [ - 630 + 617 ] } ], "e_league_movement_types_aggregate": [ - 628, + 615, { "distinct_on": [ - 642, + 629, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -155690,16 +152063,16 @@ export default { 38 ], "order_by": [ - 640, + 627, "[e_league_movement_types_order_by!]" ], "where": [ - 630 + 617 ] } ], "e_league_movement_types_by_pk": [ - 627, + 614, { "value": [ 78, @@ -155708,26 +152081,26 @@ export default { } ], "e_league_movement_types_stream": [ - 627, + 614, { "batch_size": [ 38, "Int!" ], "cursor": [ - 644, + 631, "[e_league_movement_types_stream_cursor_input]!" ], "where": [ - 630 + 617 ] } ], "e_league_proposal_statuses": [ - 648, + 635, { "distinct_on": [ - 663, + 650, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -155737,19 +152110,19 @@ export default { 38 ], "order_by": [ - 661, + 648, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 651 + 638 ] } ], "e_league_proposal_statuses_aggregate": [ - 649, + 636, { "distinct_on": [ - 663, + 650, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -155759,16 +152132,16 @@ export default { 38 ], "order_by": [ - 661, + 648, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 651 + 638 ] } ], "e_league_proposal_statuses_by_pk": [ - 648, + 635, { "value": [ 78, @@ -155777,26 +152150,26 @@ export default { } ], "e_league_proposal_statuses_stream": [ - 648, + 635, { "batch_size": [ 38, "Int!" ], "cursor": [ - 665, + 652, "[e_league_proposal_statuses_stream_cursor_input]!" ], "where": [ - 651 + 638 ] } ], "e_league_registration_statuses": [ - 669, + 656, { "distinct_on": [ - 684, + 671, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -155806,19 +152179,19 @@ export default { 38 ], "order_by": [ - 682, + 669, "[e_league_registration_statuses_order_by!]" ], "where": [ - 672 + 659 ] } ], "e_league_registration_statuses_aggregate": [ - 670, + 657, { "distinct_on": [ - 684, + 671, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -155828,16 +152201,16 @@ export default { 38 ], "order_by": [ - 682, + 669, "[e_league_registration_statuses_order_by!]" ], "where": [ - 672 + 659 ] } ], "e_league_registration_statuses_by_pk": [ - 669, + 656, { "value": [ 78, @@ -155846,26 +152219,26 @@ export default { } ], "e_league_registration_statuses_stream": [ - 669, + 656, { "batch_size": [ 38, "Int!" ], "cursor": [ - 686, + 673, "[e_league_registration_statuses_stream_cursor_input]!" ], "where": [ - 672 + 659 ] } ], "e_league_season_statuses": [ - 690, + 677, { "distinct_on": [ - 705, + 692, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -155875,19 +152248,19 @@ export default { 38 ], "order_by": [ - 703, + 690, "[e_league_season_statuses_order_by!]" ], "where": [ - 693 + 680 ] } ], "e_league_season_statuses_aggregate": [ - 691, + 678, { "distinct_on": [ - 705, + 692, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -155897,16 +152270,16 @@ export default { 38 ], "order_by": [ - 703, + 690, "[e_league_season_statuses_order_by!]" ], "where": [ - 693 + 680 ] } ], "e_league_season_statuses_by_pk": [ - 690, + 677, { "value": [ 78, @@ -155915,26 +152288,26 @@ export default { } ], "e_league_season_statuses_stream": [ - 690, + 677, { "batch_size": [ 38, "Int!" ], "cursor": [ - 707, + 694, "[e_league_season_statuses_stream_cursor_input]!" ], "where": [ - 693 + 680 ] } ], "e_lobby_access": [ - 711, + 698, { "distinct_on": [ - 726, + 713, "[e_lobby_access_select_column!]" ], "limit": [ @@ -155944,19 +152317,19 @@ export default { 38 ], "order_by": [ - 724, + 711, "[e_lobby_access_order_by!]" ], "where": [ - 714 + 701 ] } ], "e_lobby_access_aggregate": [ - 712, + 699, { "distinct_on": [ - 726, + 713, "[e_lobby_access_select_column!]" ], "limit": [ @@ -155966,16 +152339,16 @@ export default { 38 ], "order_by": [ - 724, + 711, "[e_lobby_access_order_by!]" ], "where": [ - 714 + 701 ] } ], "e_lobby_access_by_pk": [ - 711, + 698, { "value": [ 78, @@ -155984,26 +152357,26 @@ export default { } ], "e_lobby_access_stream": [ - 711, + 698, { "batch_size": [ 38, "Int!" ], "cursor": [ - 728, + 715, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 714 + 701 ] } ], "e_lobby_player_status": [ - 732, + 719, { "distinct_on": [ - 746, + 733, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -156013,19 +152386,19 @@ export default { 38 ], "order_by": [ - 744, + 731, "[e_lobby_player_status_order_by!]" ], "where": [ - 735 + 722 ] } ], "e_lobby_player_status_aggregate": [ - 733, + 720, { "distinct_on": [ - 746, + 733, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -156035,16 +152408,16 @@ export default { 38 ], "order_by": [ - 744, + 731, "[e_lobby_player_status_order_by!]" ], "where": [ - 735 + 722 ] } ], "e_lobby_player_status_by_pk": [ - 732, + 719, { "value": [ 78, @@ -156053,26 +152426,26 @@ export default { } ], "e_lobby_player_status_stream": [ - 732, + 719, { "batch_size": [ 38, "Int!" ], "cursor": [ - 748, + 735, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 735 + 722 ] } ], "e_map_pool_types": [ - 752, + 739, { "distinct_on": [ - 767, + 754, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -156082,19 +152455,19 @@ export default { 38 ], "order_by": [ - 765, + 752, "[e_map_pool_types_order_by!]" ], "where": [ - 755 + 742 ] } ], "e_map_pool_types_aggregate": [ - 753, + 740, { "distinct_on": [ - 767, + 754, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -156104,16 +152477,16 @@ export default { 38 ], "order_by": [ - 765, + 752, "[e_map_pool_types_order_by!]" ], "where": [ - 755 + 742 ] } ], "e_map_pool_types_by_pk": [ - 752, + 739, { "value": [ 78, @@ -156122,26 +152495,26 @@ export default { } ], "e_map_pool_types_stream": [ - 752, + 739, { "batch_size": [ 38, "Int!" ], "cursor": [ - 769, + 756, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 755 + 742 ] } ], "e_match_clip_visibility": [ - 773, + 760, { "distinct_on": [ - 787, + 774, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -156151,19 +152524,19 @@ export default { 38 ], "order_by": [ - 785, + 772, "[e_match_clip_visibility_order_by!]" ], "where": [ - 776 + 763 ] } ], "e_match_clip_visibility_aggregate": [ - 774, + 761, { "distinct_on": [ - 787, + 774, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -156173,16 +152546,16 @@ export default { 38 ], "order_by": [ - 785, + 772, "[e_match_clip_visibility_order_by!]" ], "where": [ - 776 + 763 ] } ], "e_match_clip_visibility_by_pk": [ - 773, + 760, { "value": [ 78, @@ -156191,26 +152564,26 @@ export default { } ], "e_match_clip_visibility_stream": [ - 773, + 760, { "batch_size": [ 38, "Int!" ], "cursor": [ - 789, + 776, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 776 + 763 ] } ], "e_match_map_status": [ - 793, + 780, { "distinct_on": [ - 808, + 795, "[e_match_map_status_select_column!]" ], "limit": [ @@ -156220,19 +152593,19 @@ export default { 38 ], "order_by": [ - 806, + 793, "[e_match_map_status_order_by!]" ], "where": [ - 796 + 783 ] } ], "e_match_map_status_aggregate": [ - 794, + 781, { "distinct_on": [ - 808, + 795, "[e_match_map_status_select_column!]" ], "limit": [ @@ -156242,16 +152615,16 @@ export default { 38 ], "order_by": [ - 806, + 793, "[e_match_map_status_order_by!]" ], "where": [ - 796 + 783 ] } ], "e_match_map_status_by_pk": [ - 793, + 780, { "value": [ 78, @@ -156260,26 +152633,26 @@ export default { } ], "e_match_map_status_stream": [ - 793, + 780, { "batch_size": [ 38, "Int!" ], "cursor": [ - 810, + 797, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 796 + 783 ] } ], "e_match_mode": [ - 814, + 801, { "distinct_on": [ - 828, + 815, "[e_match_mode_select_column!]" ], "limit": [ @@ -156289,19 +152662,19 @@ export default { 38 ], "order_by": [ - 826, + 813, "[e_match_mode_order_by!]" ], "where": [ - 817 + 804 ] } ], "e_match_mode_aggregate": [ - 815, + 802, { "distinct_on": [ - 828, + 815, "[e_match_mode_select_column!]" ], "limit": [ @@ -156311,16 +152684,16 @@ export default { 38 ], "order_by": [ - 826, + 813, "[e_match_mode_order_by!]" ], "where": [ - 817 + 804 ] } ], "e_match_mode_by_pk": [ - 814, + 801, { "value": [ 78, @@ -156329,26 +152702,26 @@ export default { } ], "e_match_mode_stream": [ - 814, + 801, { "batch_size": [ 38, "Int!" ], "cursor": [ - 830, + 817, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 817 + 804 ] } ], "e_match_status": [ - 834, + 821, { "distinct_on": [ - 849, + 836, "[e_match_status_select_column!]" ], "limit": [ @@ -156358,19 +152731,19 @@ export default { 38 ], "order_by": [ - 847, + 834, "[e_match_status_order_by!]" ], "where": [ - 837 + 824 ] } ], "e_match_status_aggregate": [ - 835, + 822, { "distinct_on": [ - 849, + 836, "[e_match_status_select_column!]" ], "limit": [ @@ -156380,16 +152753,16 @@ export default { 38 ], "order_by": [ - 847, + 834, "[e_match_status_order_by!]" ], "where": [ - 837 + 824 ] } ], "e_match_status_by_pk": [ - 834, + 821, { "value": [ 78, @@ -156398,26 +152771,26 @@ export default { } ], "e_match_status_stream": [ - 834, + 821, { "batch_size": [ 38, "Int!" ], "cursor": [ - 851, + 838, "[e_match_status_stream_cursor_input]!" ], "where": [ - 837 + 824 ] } ], "e_match_types": [ - 855, + 842, { "distinct_on": [ - 870, + 857, "[e_match_types_select_column!]" ], "limit": [ @@ -156427,19 +152800,19 @@ export default { 38 ], "order_by": [ - 868, + 855, "[e_match_types_order_by!]" ], "where": [ - 858 + 845 ] } ], "e_match_types_aggregate": [ - 856, + 843, { "distinct_on": [ - 870, + 857, "[e_match_types_select_column!]" ], "limit": [ @@ -156449,16 +152822,16 @@ export default { 38 ], "order_by": [ - 868, + 855, "[e_match_types_order_by!]" ], "where": [ - 858 + 845 ] } ], "e_match_types_by_pk": [ - 855, + 842, { "value": [ 78, @@ -156467,26 +152840,26 @@ export default { } ], "e_match_types_stream": [ - 855, + 842, { "batch_size": [ 38, "Int!" ], "cursor": [ - 872, + 859, "[e_match_types_stream_cursor_input]!" ], "where": [ - 858 + 845 ] } ], "e_notification_types": [ - 876, + 863, { "distinct_on": [ - 890, + 877, "[e_notification_types_select_column!]" ], "limit": [ @@ -156496,19 +152869,19 @@ export default { 38 ], "order_by": [ - 888, + 875, "[e_notification_types_order_by!]" ], "where": [ - 879 + 866 ] } ], "e_notification_types_aggregate": [ - 877, + 864, { "distinct_on": [ - 890, + 877, "[e_notification_types_select_column!]" ], "limit": [ @@ -156518,16 +152891,16 @@ export default { 38 ], "order_by": [ - 888, + 875, "[e_notification_types_order_by!]" ], "where": [ - 879 + 866 ] } ], "e_notification_types_by_pk": [ - 876, + 863, { "value": [ 78, @@ -156536,26 +152909,26 @@ export default { } ], "e_notification_types_stream": [ - 876, + 863, { "batch_size": [ 38, "Int!" ], "cursor": [ - 892, + 879, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 879 + 866 ] } ], "e_objective_types": [ - 896, + 883, { "distinct_on": [ - 910, + 897, "[e_objective_types_select_column!]" ], "limit": [ @@ -156565,19 +152938,19 @@ export default { 38 ], "order_by": [ - 908, + 895, "[e_objective_types_order_by!]" ], "where": [ - 899 + 886 ] } ], "e_objective_types_aggregate": [ - 897, + 884, { "distinct_on": [ - 910, + 897, "[e_objective_types_select_column!]" ], "limit": [ @@ -156587,16 +152960,16 @@ export default { 38 ], "order_by": [ - 908, + 895, "[e_objective_types_order_by!]" ], "where": [ - 899 + 886 ] } ], "e_objective_types_by_pk": [ - 896, + 883, { "value": [ 78, @@ -156605,26 +152978,26 @@ export default { } ], "e_objective_types_stream": [ - 896, + 883, { "batch_size": [ 38, "Int!" ], "cursor": [ - 912, + 899, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 899 + 886 ] } ], "e_player_roles": [ - 916, + 903, { "distinct_on": [ - 930, + 917, "[e_player_roles_select_column!]" ], "limit": [ @@ -156634,19 +153007,19 @@ export default { 38 ], "order_by": [ - 928, + 915, "[e_player_roles_order_by!]" ], "where": [ - 919 + 906 ] } ], "e_player_roles_aggregate": [ - 917, + 904, { "distinct_on": [ - 930, + 917, "[e_player_roles_select_column!]" ], "limit": [ @@ -156656,16 +153029,16 @@ export default { 38 ], "order_by": [ - 928, + 915, "[e_player_roles_order_by!]" ], "where": [ - 919 + 906 ] } ], "e_player_roles_by_pk": [ - 916, + 903, { "value": [ 78, @@ -156674,26 +153047,26 @@ export default { } ], "e_player_roles_stream": [ - 916, + 903, { "batch_size": [ 38, "Int!" ], "cursor": [ - 932, + 919, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 919 + 906 ] } ], "e_plugin_runtimes": [ - 936, + 923, { "distinct_on": [ - 950, + 937, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -156703,19 +153076,19 @@ export default { 38 ], "order_by": [ - 948, + 935, "[e_plugin_runtimes_order_by!]" ], "where": [ - 939 + 926 ] } ], "e_plugin_runtimes_aggregate": [ - 937, + 924, { "distinct_on": [ - 950, + 937, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -156725,16 +153098,16 @@ export default { 38 ], "order_by": [ - 948, + 935, "[e_plugin_runtimes_order_by!]" ], "where": [ - 939 + 926 ] } ], "e_plugin_runtimes_by_pk": [ - 936, + 923, { "value": [ 78, @@ -156743,26 +153116,26 @@ export default { } ], "e_plugin_runtimes_stream": [ - 936, + 923, { "batch_size": [ 38, "Int!" ], "cursor": [ - 952, + 939, "[e_plugin_runtimes_stream_cursor_input]!" ], "where": [ - 939 + 926 ] } ], "e_ready_settings": [ - 956, + 943, { "distinct_on": [ - 970, + 957, "[e_ready_settings_select_column!]" ], "limit": [ @@ -156772,19 +153145,19 @@ export default { 38 ], "order_by": [ - 968, + 955, "[e_ready_settings_order_by!]" ], "where": [ - 959 + 946 ] } ], "e_ready_settings_aggregate": [ - 957, + 944, { "distinct_on": [ - 970, + 957, "[e_ready_settings_select_column!]" ], "limit": [ @@ -156794,16 +153167,16 @@ export default { 38 ], "order_by": [ - 968, + 955, "[e_ready_settings_order_by!]" ], "where": [ - 959 + 946 ] } ], "e_ready_settings_by_pk": [ - 956, + 943, { "value": [ 78, @@ -156812,26 +153185,26 @@ export default { } ], "e_ready_settings_stream": [ - 956, + 943, { "batch_size": [ 38, "Int!" ], "cursor": [ - 972, + 959, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 959 + 946 ] } ], "e_sanction_types": [ - 976, + 963, { "distinct_on": [ - 991, + 978, "[e_sanction_types_select_column!]" ], "limit": [ @@ -156841,19 +153214,19 @@ export default { 38 ], "order_by": [ - 989, + 976, "[e_sanction_types_order_by!]" ], "where": [ - 979 + 966 ] } ], "e_sanction_types_aggregate": [ - 977, + 964, { "distinct_on": [ - 991, + 978, "[e_sanction_types_select_column!]" ], "limit": [ @@ -156863,16 +153236,16 @@ export default { 38 ], "order_by": [ - 989, + 976, "[e_sanction_types_order_by!]" ], "where": [ - 979 + 966 ] } ], "e_sanction_types_by_pk": [ - 976, + 963, { "value": [ 78, @@ -156881,26 +153254,26 @@ export default { } ], "e_sanction_types_stream": [ - 976, + 963, { "batch_size": [ 38, "Int!" ], "cursor": [ - 993, + 980, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 979 + 966 ] } ], "e_scrim_request_statuses": [ - 997, + 984, { "distinct_on": [ - 1011, + 998, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -156910,19 +153283,19 @@ export default { 38 ], "order_by": [ - 1009, + 996, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1000 + 987 ] } ], "e_scrim_request_statuses_aggregate": [ - 998, + 985, { "distinct_on": [ - 1011, + 998, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -156932,16 +153305,16 @@ export default { 38 ], "order_by": [ - 1009, + 996, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1000 + 987 ] } ], "e_scrim_request_statuses_by_pk": [ - 997, + 984, { "value": [ 78, @@ -156950,26 +153323,26 @@ export default { } ], "e_scrim_request_statuses_stream": [ - 997, + 984, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1013, + 1000, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 1000 + 987 ] } ], "e_server_types": [ - 1017, + 1004, { "distinct_on": [ - 1031, + 1018, "[e_server_types_select_column!]" ], "limit": [ @@ -156979,19 +153352,19 @@ export default { 38 ], "order_by": [ - 1029, + 1016, "[e_server_types_order_by!]" ], "where": [ - 1020 + 1007 ] } ], "e_server_types_aggregate": [ - 1018, + 1005, { "distinct_on": [ - 1031, + 1018, "[e_server_types_select_column!]" ], "limit": [ @@ -157001,16 +153374,16 @@ export default { 38 ], "order_by": [ - 1029, + 1016, "[e_server_types_order_by!]" ], "where": [ - 1020 + 1007 ] } ], "e_server_types_by_pk": [ - 1017, + 1004, { "value": [ 78, @@ -157019,26 +153392,26 @@ export default { } ], "e_server_types_stream": [ - 1017, + 1004, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1033, + 1020, "[e_server_types_stream_cursor_input]!" ], "where": [ - 1020 + 1007 ] } ], "e_sides": [ - 1037, + 1024, { "distinct_on": [ - 1051, + 1038, "[e_sides_select_column!]" ], "limit": [ @@ -157048,19 +153421,19 @@ export default { 38 ], "order_by": [ - 1049, + 1036, "[e_sides_order_by!]" ], "where": [ - 1040 + 1027 ] } ], "e_sides_aggregate": [ - 1038, + 1025, { "distinct_on": [ - 1051, + 1038, "[e_sides_select_column!]" ], "limit": [ @@ -157070,16 +153443,16 @@ export default { 38 ], "order_by": [ - 1049, + 1036, "[e_sides_order_by!]" ], "where": [ - 1040 + 1027 ] } ], "e_sides_by_pk": [ - 1037, + 1024, { "value": [ 78, @@ -157088,26 +153461,26 @@ export default { } ], "e_sides_stream": [ - 1037, + 1024, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1053, + 1040, "[e_sides_stream_cursor_input]!" ], "where": [ - 1040 + 1027 ] } ], "e_system_alert_types": [ - 1057, + 1044, { "distinct_on": [ - 1071, + 1058, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -157117,19 +153490,19 @@ export default { 38 ], "order_by": [ - 1069, + 1056, "[e_system_alert_types_order_by!]" ], "where": [ - 1060 + 1047 ] } ], "e_system_alert_types_aggregate": [ - 1058, + 1045, { "distinct_on": [ - 1071, + 1058, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -157139,16 +153512,16 @@ export default { 38 ], "order_by": [ - 1069, + 1056, "[e_system_alert_types_order_by!]" ], "where": [ - 1060 + 1047 ] } ], "e_system_alert_types_by_pk": [ - 1057, + 1044, { "value": [ 78, @@ -157157,26 +153530,26 @@ export default { } ], "e_system_alert_types_stream": [ - 1057, + 1044, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1073, + 1060, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 1060 + 1047 ] } ], "e_team_roles": [ - 1077, + 1064, { "distinct_on": [ - 1092, + 1079, "[e_team_roles_select_column!]" ], "limit": [ @@ -157186,19 +153559,19 @@ export default { 38 ], "order_by": [ - 1090, + 1077, "[e_team_roles_order_by!]" ], "where": [ - 1080 + 1067 ] } ], "e_team_roles_aggregate": [ - 1078, + 1065, { "distinct_on": [ - 1092, + 1079, "[e_team_roles_select_column!]" ], "limit": [ @@ -157208,16 +153581,16 @@ export default { 38 ], "order_by": [ - 1090, + 1077, "[e_team_roles_order_by!]" ], "where": [ - 1080 + 1067 ] } ], "e_team_roles_by_pk": [ - 1077, + 1064, { "value": [ 78, @@ -157226,26 +153599,26 @@ export default { } ], "e_team_roles_stream": [ - 1077, + 1064, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1094, + 1081, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 1080 + 1067 ] } ], "e_team_roster_statuses": [ - 1098, + 1085, { "distinct_on": [ - 1112, + 1099, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -157255,19 +153628,19 @@ export default { 38 ], "order_by": [ - 1110, + 1097, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1101 + 1088 ] } ], "e_team_roster_statuses_aggregate": [ - 1099, + 1086, { "distinct_on": [ - 1112, + 1099, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -157277,16 +153650,16 @@ export default { 38 ], "order_by": [ - 1110, + 1097, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1101 + 1088 ] } ], "e_team_roster_statuses_by_pk": [ - 1098, + 1085, { "value": [ 78, @@ -157295,26 +153668,26 @@ export default { } ], "e_team_roster_statuses_stream": [ - 1098, + 1085, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1114, + 1101, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 1101 + 1088 ] } ], "e_timeout_settings": [ - 1118, + 1105, { "distinct_on": [ - 1132, + 1119, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -157324,19 +153697,19 @@ export default { 38 ], "order_by": [ - 1130, + 1117, "[e_timeout_settings_order_by!]" ], "where": [ - 1121 + 1108 ] } ], "e_timeout_settings_aggregate": [ - 1119, + 1106, { "distinct_on": [ - 1132, + 1119, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -157346,16 +153719,16 @@ export default { 38 ], "order_by": [ - 1130, + 1117, "[e_timeout_settings_order_by!]" ], "where": [ - 1121 + 1108 ] } ], "e_timeout_settings_by_pk": [ - 1118, + 1105, { "value": [ 78, @@ -157364,27 +153737,27 @@ export default { } ], "e_timeout_settings_stream": [ - 1118, + 1105, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1134, + 1121, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 1121 + 1108 ] } ], - "e_tournament_stage_types": [ - 1138, + "e_tournament_categories": [ + 1125, { "distinct_on": [ - 1153, - "[e_tournament_stage_types_select_column!]" + 1140, + "[e_tournament_categories_select_column!]" ], "limit": [ 38 @@ -157393,20 +153766,20 @@ export default { 38 ], "order_by": [ - 1151, - "[e_tournament_stage_types_order_by!]" + 1138, + "[e_tournament_categories_order_by!]" ], "where": [ - 1141 + 1128 ] } ], - "e_tournament_stage_types_aggregate": [ - 1139, + "e_tournament_categories_aggregate": [ + 1126, { "distinct_on": [ - 1153, - "[e_tournament_stage_types_select_column!]" + 1140, + "[e_tournament_categories_select_column!]" ], "limit": [ 38 @@ -157415,16 +153788,16 @@ export default { 38 ], "order_by": [ - 1151, - "[e_tournament_stage_types_order_by!]" + 1138, + "[e_tournament_categories_order_by!]" ], "where": [ - 1141 + 1128 ] } ], - "e_tournament_stage_types_by_pk": [ - 1138, + "e_tournament_categories_by_pk": [ + 1125, { "value": [ 78, @@ -157432,28 +153805,28 @@ export default { ] } ], - "e_tournament_stage_types_stream": [ - 1138, + "e_tournament_categories_stream": [ + 1125, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1155, - "[e_tournament_stage_types_stream_cursor_input]!" + 1142, + "[e_tournament_categories_stream_cursor_input]!" ], "where": [ - 1141 + 1128 ] } ], - "e_tournament_status": [ - 1159, + "e_tournament_stage_types": [ + 1146, { "distinct_on": [ - 1174, - "[e_tournament_status_select_column!]" + 1161, + "[e_tournament_stage_types_select_column!]" ], "limit": [ 38 @@ -157462,20 +153835,20 @@ export default { 38 ], "order_by": [ - 1172, - "[e_tournament_status_order_by!]" + 1159, + "[e_tournament_stage_types_order_by!]" ], "where": [ - 1162 + 1149 ] } ], - "e_tournament_status_aggregate": [ - 1160, + "e_tournament_stage_types_aggregate": [ + 1147, { "distinct_on": [ - 1174, - "[e_tournament_status_select_column!]" + 1161, + "[e_tournament_stage_types_select_column!]" ], "limit": [ 38 @@ -157484,16 +153857,16 @@ export default { 38 ], "order_by": [ - 1172, - "[e_tournament_status_order_by!]" + 1159, + "[e_tournament_stage_types_order_by!]" ], "where": [ - 1162 + 1149 ] } ], - "e_tournament_status_by_pk": [ - 1159, + "e_tournament_stage_types_by_pk": [ + 1146, { "value": [ 78, @@ -157501,28 +153874,28 @@ export default { ] } ], - "e_tournament_status_stream": [ - 1159, + "e_tournament_stage_types_stream": [ + 1146, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1176, - "[e_tournament_status_stream_cursor_input]!" + 1163, + "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 1162 + 1149 ] } ], - "e_utility_types": [ - 1180, + "e_tournament_status": [ + 1167, { "distinct_on": [ - 1194, - "[e_utility_types_select_column!]" + 1182, + "[e_tournament_status_select_column!]" ], "limit": [ 38 @@ -157531,20 +153904,20 @@ export default { 38 ], "order_by": [ - 1192, - "[e_utility_types_order_by!]" + 1180, + "[e_tournament_status_order_by!]" ], "where": [ - 1183 + 1170 ] } ], - "e_utility_types_aggregate": [ - 1181, + "e_tournament_status_aggregate": [ + 1168, { "distinct_on": [ - 1194, - "[e_utility_types_select_column!]" + 1182, + "[e_tournament_status_select_column!]" ], "limit": [ 38 @@ -157553,16 +153926,16 @@ export default { 38 ], "order_by": [ - 1192, - "[e_utility_types_order_by!]" + 1180, + "[e_tournament_status_order_by!]" ], "where": [ - 1183 + 1170 ] } ], - "e_utility_types_by_pk": [ - 1180, + "e_tournament_status_by_pk": [ + 1167, { "value": [ 78, @@ -157570,28 +153943,28 @@ export default { ] } ], - "e_utility_types_stream": [ - 1180, + "e_tournament_status_stream": [ + 1167, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1196, - "[e_utility_types_stream_cursor_input]!" + 1184, + "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1183 + 1170 ] } ], - "e_veto_pick_types": [ - 1200, + "e_utility_types": [ + 1188, { "distinct_on": [ - 1214, - "[e_veto_pick_types_select_column!]" + 1202, + "[e_utility_types_select_column!]" ], "limit": [ 38 @@ -157600,20 +153973,20 @@ export default { 38 ], "order_by": [ - 1212, - "[e_veto_pick_types_order_by!]" + 1200, + "[e_utility_types_order_by!]" ], "where": [ - 1203 + 1191 ] } ], - "e_veto_pick_types_aggregate": [ - 1201, + "e_utility_types_aggregate": [ + 1189, { "distinct_on": [ - 1214, - "[e_veto_pick_types_select_column!]" + 1202, + "[e_utility_types_select_column!]" ], "limit": [ 38 @@ -157622,16 +153995,16 @@ export default { 38 ], "order_by": [ - 1212, - "[e_veto_pick_types_order_by!]" + 1200, + "[e_utility_types_order_by!]" ], "where": [ - 1203 + 1191 ] } ], - "e_veto_pick_types_by_pk": [ - 1200, + "e_utility_types_by_pk": [ + 1188, { "value": [ 78, @@ -157639,28 +154012,28 @@ export default { ] } ], - "e_veto_pick_types_stream": [ - 1200, + "e_utility_types_stream": [ + 1188, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1216, - "[e_veto_pick_types_stream_cursor_input]!" + 1204, + "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1203 + 1191 ] } ], - "e_winning_reasons": [ - 1220, + "e_veto_pick_types": [ + 1208, { "distinct_on": [ - 1234, - "[e_winning_reasons_select_column!]" + 1222, + "[e_veto_pick_types_select_column!]" ], "limit": [ 38 @@ -157669,20 +154042,20 @@ export default { 38 ], "order_by": [ - 1232, - "[e_winning_reasons_order_by!]" + 1220, + "[e_veto_pick_types_order_by!]" ], "where": [ - 1223 + 1211 ] } ], - "e_winning_reasons_aggregate": [ - 1221, + "e_veto_pick_types_aggregate": [ + 1209, { "distinct_on": [ - 1234, - "[e_winning_reasons_select_column!]" + 1222, + "[e_veto_pick_types_select_column!]" ], "limit": [ 38 @@ -157691,16 +154064,16 @@ export default { 38 ], "order_by": [ - 1232, - "[e_winning_reasons_order_by!]" + 1220, + "[e_veto_pick_types_order_by!]" ], "where": [ - 1223 + 1211 ] } ], - "e_winning_reasons_by_pk": [ - 1220, + "e_veto_pick_types_by_pk": [ + 1208, { "value": [ 78, @@ -157708,535 +154081,28 @@ export default { ] } ], - "e_winning_reasons_stream": [ - 1220, - { - "batch_size": [ - 38, - "Int!" - ], - "cursor": [ - 1236, - "[e_winning_reasons_stream_cursor_input]!" - ], - "where": [ - 1223 - ] - } - ], - "event_match_links": [ - 1240, - { - "distinct_on": [ - 1252, - "[event_match_links_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1250, - "[event_match_links_order_by!]" - ], - "where": [ - 1243 - ] - } - ], - "event_match_links_aggregate": [ - 1241, - { - "distinct_on": [ - 1252, - "[event_match_links_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1250, - "[event_match_links_order_by!]" - ], - "where": [ - 1243 - ] - } - ], - "event_match_links_by_pk": [ - 1240, - { - "event_id": [ - 4762, - "uuid!" - ], - "match_id": [ - 4762, - "uuid!" - ] - } - ], - "event_match_links_stream": [ - 1240, - { - "batch_size": [ - 38, - "Int!" - ], - "cursor": [ - 1254, - "[event_match_links_stream_cursor_input]!" - ], - "where": [ - 1243 - ] - } - ], - "event_media": [ - 1258, - { - "distinct_on": [ - 1321, - "[event_media_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1278, - "[event_media_order_by!]" - ], - "where": [ - 1267 - ] - } - ], - "event_media_aggregate": [ - 1259, - { - "distinct_on": [ - 1321, - "[event_media_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1278, - "[event_media_order_by!]" - ], - "where": [ - 1267 - ] - } - ], - "event_media_by_pk": [ - 1258, - { - "id": [ - 4762, - "uuid!" - ] - } - ], - "event_media_players": [ - 1280, - { - "distinct_on": [ - 1301, - "[event_media_players_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1299, - "[event_media_players_order_by!]" - ], - "where": [ - 1289 - ] - } - ], - "event_media_players_aggregate": [ - 1281, - { - "distinct_on": [ - 1301, - "[event_media_players_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1299, - "[event_media_players_order_by!]" - ], - "where": [ - 1289 - ] - } - ], - "event_media_players_by_pk": [ - 1280, - { - "media_id": [ - 4762, - "uuid!" - ], - "steam_id": [ - 180, - "bigint!" - ] - } - ], - "event_media_players_stream": [ - 1280, - { - "batch_size": [ - 38, - "Int!" - ], - "cursor": [ - 1309, - "[event_media_players_stream_cursor_input]!" - ], - "where": [ - 1289 - ] - } - ], - "event_media_stream": [ - 1258, - { - "batch_size": [ - 38, - "Int!" - ], - "cursor": [ - 1329, - "[event_media_stream_cursor_input]!" - ], - "where": [ - 1267 - ] - } - ], - "event_organizers": [ - 1341, - { - "distinct_on": [ - 1362, - "[event_organizers_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1360, - "[event_organizers_order_by!]" - ], - "where": [ - 1350 - ] - } - ], - "event_organizers_aggregate": [ - 1342, - { - "distinct_on": [ - 1362, - "[event_organizers_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1360, - "[event_organizers_order_by!]" - ], - "where": [ - 1350 - ] - } - ], - "event_organizers_by_pk": [ - 1341, - { - "event_id": [ - 4762, - "uuid!" - ], - "steam_id": [ - 180, - "bigint!" - ] - } - ], - "event_organizers_stream": [ - 1341, - { - "batch_size": [ - 38, - "Int!" - ], - "cursor": [ - 1370, - "[event_organizers_stream_cursor_input]!" - ], - "where": [ - 1350 - ] - } - ], - "event_players": [ - 1382, - { - "distinct_on": [ - 1403, - "[event_players_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1401, - "[event_players_order_by!]" - ], - "where": [ - 1391 - ] - } - ], - "event_players_aggregate": [ - 1383, - { - "distinct_on": [ - 1403, - "[event_players_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1401, - "[event_players_order_by!]" - ], - "where": [ - 1391 - ] - } - ], - "event_players_by_pk": [ - 1382, - { - "event_id": [ - 4762, - "uuid!" - ], - "steam_id": [ - 180, - "bigint!" - ] - } - ], - "event_players_stream": [ - 1382, - { - "batch_size": [ - 38, - "Int!" - ], - "cursor": [ - 1411, - "[event_players_stream_cursor_input]!" - ], - "where": [ - 1391 - ] - } - ], - "event_teams": [ - 1423, - { - "distinct_on": [ - 1441, - "[event_teams_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1439, - "[event_teams_order_by!]" - ], - "where": [ - 1430 - ] - } - ], - "event_teams_aggregate": [ - 1424, - { - "distinct_on": [ - 1441, - "[event_teams_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1439, - "[event_teams_order_by!]" - ], - "where": [ - 1430 - ] - } - ], - "event_teams_by_pk": [ - 1423, - { - "event_id": [ - 4762, - "uuid!" - ], - "team_id": [ - 4762, - "uuid!" - ] - } - ], - "event_teams_stream": [ - 1423, - { - "batch_size": [ - 38, - "Int!" - ], - "cursor": [ - 1443, - "[event_teams_stream_cursor_input]!" - ], - "where": [ - 1430 - ] - } - ], - "event_tournaments": [ - 1447, - { - "distinct_on": [ - 1465, - "[event_tournaments_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1463, - "[event_tournaments_order_by!]" - ], - "where": [ - 1454 - ] - } - ], - "event_tournaments_aggregate": [ - 1448, - { - "distinct_on": [ - 1465, - "[event_tournaments_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1463, - "[event_tournaments_order_by!]" - ], - "where": [ - 1454 - ] - } - ], - "event_tournaments_by_pk": [ - 1447, - { - "event_id": [ - 4762, - "uuid!" - ], - "tournament_id": [ - 4762, - "uuid!" - ] - } - ], - "event_tournaments_stream": [ - 1447, + "e_veto_pick_types_stream": [ + 1208, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1467, - "[event_tournaments_stream_cursor_input]!" + 1224, + "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1454 + 1211 ] } ], - "events": [ - 1471, + "e_winning_reasons": [ + 1228, { "distinct_on": [ - 1486, - "[events_select_column!]" + 1242, + "[e_winning_reasons_select_column!]" ], "limit": [ 38 @@ -158245,20 +154111,20 @@ export default { 38 ], "order_by": [ - 1484, - "[events_order_by!]" + 1240, + "[e_winning_reasons_order_by!]" ], "where": [ - 1475 + 1231 ] } ], - "events_aggregate": [ - 1472, + "e_winning_reasons_aggregate": [ + 1229, { "distinct_on": [ - 1486, - "[events_select_column!]" + 1242, + "[e_winning_reasons_select_column!]" ], "limit": [ 38 @@ -158267,44 +154133,44 @@ export default { 38 ], "order_by": [ - 1484, - "[events_order_by!]" + 1240, + "[e_winning_reasons_order_by!]" ], "where": [ - 1475 + 1231 ] } ], - "events_by_pk": [ - 1471, + "e_winning_reasons_by_pk": [ + 1228, { - "id": [ - 4762, - "uuid!" + "value": [ + 78, + "String!" ] } ], - "events_stream": [ - 1471, + "e_winning_reasons_stream": [ + 1228, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1491, - "[events_stream_cursor_input]!" + 1244, + "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1475 + 1231 ] } ], "friends": [ - 1501, + 1250, { "distinct_on": [ - 1515, + 1264, "[friends_select_column!]" ], "limit": [ @@ -158314,19 +154180,19 @@ export default { 38 ], "order_by": [ - 1513, + 1262, "[friends_order_by!]" ], "where": [ - 1505 + 1254 ] } ], "friends_aggregate": [ - 1502, + 1251, { "distinct_on": [ - 1515, + 1264, "[friends_select_column!]" ], "limit": [ @@ -158336,16 +154202,16 @@ export default { 38 ], "order_by": [ - 1513, + 1262, "[friends_order_by!]" ], "where": [ - 1505 + 1254 ] } ], "friends_by_pk": [ - 1501, + 1250, { "other_player_steam_id": [ 180, @@ -158358,26 +154224,26 @@ export default { } ], "friends_stream": [ - 1501, + 1250, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1520, + 1269, "[friends_stream_cursor_input]!" ], "where": [ - 1505 + 1254 ] } ], "game_server_nodes": [ - 1528, + 1277, { "distinct_on": [ - 1557, + 1306, "[game_server_nodes_select_column!]" ], "limit": [ @@ -158387,19 +154253,19 @@ export default { 38 ], "order_by": [ - 1554, + 1303, "[game_server_nodes_order_by!]" ], "where": [ - 1540 + 1289 ] } ], "game_server_nodes_aggregate": [ - 1529, + 1278, { "distinct_on": [ - 1557, + 1306, "[game_server_nodes_select_column!]" ], "limit": [ @@ -158409,16 +154275,16 @@ export default { 38 ], "order_by": [ - 1554, + 1303, "[game_server_nodes_order_by!]" ], "where": [ - 1540 + 1289 ] } ], "game_server_nodes_by_pk": [ - 1528, + 1277, { "id": [ 78, @@ -158427,26 +154293,26 @@ export default { } ], "game_server_nodes_stream": [ - 1528, + 1277, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1567, + 1316, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1540 + 1289 ] } ], "game_versions": [ - 1579, + 1328, { "distinct_on": [ - 1599, + 1348, "[game_versions_select_column!]" ], "limit": [ @@ -158456,19 +154322,19 @@ export default { 38 ], "order_by": [ - 1596, + 1345, "[game_versions_order_by!]" ], "where": [ - 1584 + 1333 ] } ], "game_versions_aggregate": [ - 1580, + 1329, { "distinct_on": [ - 1599, + 1348, "[game_versions_select_column!]" ], "limit": [ @@ -158478,16 +154344,16 @@ export default { 38 ], "order_by": [ - 1596, + 1345, "[game_versions_order_by!]" ], "where": [ - 1584 + 1333 ] } ], "game_versions_by_pk": [ - 1579, + 1328, { "build_id": [ 38, @@ -158496,26 +154362,26 @@ export default { } ], "game_versions_stream": [ - 1579, + 1328, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1604, + 1353, "[game_versions_stream_cursor_input]!" ], "where": [ - 1584 + 1333 ] } ], "gamedata_signature_validations": [ - 1612, + 1361, { "distinct_on": [ - 1631, + 1380, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -158525,19 +154391,19 @@ export default { 38 ], "order_by": [ - 1628, + 1377, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1617 + 1366 ] } ], "gamedata_signature_validations_aggregate": [ - 1613, + 1362, { "distinct_on": [ - 1631, + 1380, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -158547,100 +154413,48 @@ export default { 38 ], "order_by": [ - 1628, + 1377, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1617 + 1366 ] } ], "gamedata_signature_validations_by_pk": [ - 1612, + 1361, { "id": [ - 4762, + 4621, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1612, + 1361, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1636, + 1385, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1617 - ] - } - ], - "get_event_leaderboard": [ - 1655, - { - "args": [ - 1644, - "get_event_leaderboard_args!" - ], - "distinct_on": [ - 1666, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1665, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 1659 - ] - } - ], - "get_event_leaderboard_aggregate": [ - 1656, - { - "args": [ - 1644, - "get_event_leaderboard_args!" - ], - "distinct_on": [ - 1666, - "[leaderboard_entries_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 1665, - "[leaderboard_entries_order_by!]" - ], - "where": [ - 1659 + 1366 ] } ], "get_leaderboard": [ - 1655, + 1403, { "args": [ - 1645, + 1393, "get_leaderboard_args!" ], "distinct_on": [ - 1666, + 1414, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158650,23 +154464,23 @@ export default { 38 ], "order_by": [ - 1665, + 1413, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1407 ] } ], "get_leaderboard_aggregate": [ - 1656, + 1404, { "args": [ - 1645, + 1393, "get_leaderboard_args!" ], "distinct_on": [ - 1666, + 1414, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158676,23 +154490,23 @@ export default { 38 ], "order_by": [ - 1665, + 1413, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1407 ] } ], "get_league_season_leaderboard": [ - 1655, + 1403, { "args": [ - 1646, + 1394, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1666, + 1414, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158702,23 +154516,23 @@ export default { 38 ], "order_by": [ - 1665, + 1413, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1407 ] } ], "get_league_season_leaderboard_aggregate": [ - 1656, + 1404, { "args": [ - 1646, + 1394, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1666, + 1414, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158728,23 +154542,23 @@ export default { 38 ], "order_by": [ - 1665, + 1413, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1407 ] } ], "get_player_leaderboard_rank": [ - 3222, + 2970, { "args": [ - 1647, + 1395, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3233, + 2981, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -158754,23 +154568,23 @@ export default { 38 ], "order_by": [ - 3232, + 2980, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 2974 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3223, + 2971, { "args": [ - 1647, + 1395, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3233, + 2981, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -158780,19 +154594,19 @@ export default { 38 ], "order_by": [ - 3232, + 2980, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 2974 ] } ], "leaderboard_entries": [ - 1655, + 1403, { "distinct_on": [ - 1666, + 1414, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158802,19 +154616,19 @@ export default { 38 ], "order_by": [ - 1665, + 1413, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1407 ] } ], "leaderboard_entries_aggregate": [ - 1656, + 1404, { "distinct_on": [ - 1666, + 1414, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158824,35 +154638,35 @@ export default { 38 ], "order_by": [ - 1665, + 1413, "[leaderboard_entries_order_by!]" ], "where": [ - 1659 + 1407 ] } ], "leaderboard_entries_stream": [ - 1655, + 1403, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1671, + 1419, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1659 + 1407 ] } ], "league_divisions": [ - 1679, + 1427, { "distinct_on": [ - 1694, + 1442, "[league_divisions_select_column!]" ], "limit": [ @@ -158862,19 +154676,19 @@ export default { 38 ], "order_by": [ - 1692, + 1440, "[league_divisions_order_by!]" ], "where": [ - 1683 + 1431 ] } ], "league_divisions_aggregate": [ - 1680, + 1428, { "distinct_on": [ - 1694, + 1442, "[league_divisions_select_column!]" ], "limit": [ @@ -158884,44 +154698,44 @@ export default { 38 ], "order_by": [ - 1692, + 1440, "[league_divisions_order_by!]" ], "where": [ - 1683 + 1431 ] } ], "league_divisions_by_pk": [ - 1679, + 1427, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_divisions_stream": [ - 1679, + 1427, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1699, + 1447, "[league_divisions_stream_cursor_input]!" ], "where": [ - 1683 + 1431 ] } ], "league_match_weeks": [ - 1707, + 1455, { "distinct_on": [ - 1728, + 1476, "[league_match_weeks_select_column!]" ], "limit": [ @@ -158931,19 +154745,19 @@ export default { 38 ], "order_by": [ - 1726, + 1474, "[league_match_weeks_order_by!]" ], "where": [ - 1716 + 1464 ] } ], "league_match_weeks_aggregate": [ - 1708, + 1456, { "distinct_on": [ - 1728, + 1476, "[league_match_weeks_select_column!]" ], "limit": [ @@ -158953,44 +154767,44 @@ export default { 38 ], "order_by": [ - 1726, + 1474, "[league_match_weeks_order_by!]" ], "where": [ - 1716 + 1464 ] } ], "league_match_weeks_by_pk": [ - 1707, + 1455, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_match_weeks_stream": [ - 1707, + 1455, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1736, + 1484, "[league_match_weeks_stream_cursor_input]!" ], "where": [ - 1716 + 1464 ] } ], "league_relegation_playoffs": [ - 1748, + 1496, { "distinct_on": [ - 1769, + 1517, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -159000,19 +154814,19 @@ export default { 38 ], "order_by": [ - 1767, + 1515, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1757 + 1505 ] } ], "league_relegation_playoffs_aggregate": [ - 1749, + 1497, { "distinct_on": [ - 1769, + 1517, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -159022,44 +154836,44 @@ export default { 38 ], "order_by": [ - 1767, + 1515, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1757 + 1505 ] } ], "league_relegation_playoffs_by_pk": [ - 1748, + 1496, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_relegation_playoffs_stream": [ - 1748, + 1496, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1777, + 1525, "[league_relegation_playoffs_stream_cursor_input]!" ], "where": [ - 1757 + 1505 ] } ], "league_scheduling_proposals": [ - 1789, + 1537, { "distinct_on": [ - 1810, + 1558, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -159069,19 +154883,19 @@ export default { 38 ], "order_by": [ - 1808, + 1556, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1798 + 1546 ] } ], "league_scheduling_proposals_aggregate": [ - 1790, + 1538, { "distinct_on": [ - 1810, + 1558, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -159091,44 +154905,44 @@ export default { 38 ], "order_by": [ - 1808, + 1556, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1798 + 1546 ] } ], "league_scheduling_proposals_by_pk": [ - 1789, + 1537, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_scheduling_proposals_stream": [ - 1789, + 1537, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1818, + 1566, "[league_scheduling_proposals_stream_cursor_input]!" ], "where": [ - 1798 + 1546 ] } ], "league_season_divisions": [ - 1830, + 1578, { "distinct_on": [ - 1849, + 1597, "[league_season_divisions_select_column!]" ], "limit": [ @@ -159138,19 +154952,19 @@ export default { 38 ], "order_by": [ - 1847, + 1595, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1585 ] } ], "league_season_divisions_aggregate": [ - 1831, + 1579, { "distinct_on": [ - 1849, + 1597, "[league_season_divisions_select_column!]" ], "limit": [ @@ -159160,44 +154974,44 @@ export default { 38 ], "order_by": [ - 1847, + 1595, "[league_season_divisions_order_by!]" ], "where": [ - 1837 + 1585 ] } ], "league_season_divisions_by_pk": [ - 1830, + 1578, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_season_divisions_stream": [ - 1830, + 1578, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1851, + 1599, "[league_season_divisions_stream_cursor_input]!" ], "where": [ - 1837 + 1585 ] } ], "league_seasons": [ - 1855, + 1603, { "distinct_on": [ - 1875, + 1623, "[league_seasons_select_column!]" ], "limit": [ @@ -159207,19 +155021,19 @@ export default { 38 ], "order_by": [ - 1872, + 1620, "[league_seasons_order_by!]" ], "where": [ - 1860 + 1608 ] } ], "league_seasons_aggregate": [ - 1856, + 1604, { "distinct_on": [ - 1875, + 1623, "[league_seasons_select_column!]" ], "limit": [ @@ -159229,44 +155043,44 @@ export default { 38 ], "order_by": [ - 1872, + 1620, "[league_seasons_order_by!]" ], "where": [ - 1860 + 1608 ] } ], "league_seasons_by_pk": [ - 1855, + 1603, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_seasons_stream": [ - 1855, + 1603, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1880, + 1628, "[league_seasons_stream_cursor_input]!" ], "where": [ - 1860 + 1608 ] } ], "league_team_movements": [ - 1888, + 1636, { "distinct_on": [ - 1909, + 1657, "[league_team_movements_select_column!]" ], "limit": [ @@ -159276,19 +155090,19 @@ export default { 38 ], "order_by": [ - 1907, + 1655, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1645 ] } ], "league_team_movements_aggregate": [ - 1889, + 1637, { "distinct_on": [ - 1909, + 1657, "[league_team_movements_select_column!]" ], "limit": [ @@ -159298,44 +155112,44 @@ export default { 38 ], "order_by": [ - 1907, + 1655, "[league_team_movements_order_by!]" ], "where": [ - 1897 + 1645 ] } ], "league_team_movements_by_pk": [ - 1888, + 1636, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_team_movements_stream": [ - 1888, + 1636, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1917, + 1665, "[league_team_movements_stream_cursor_input]!" ], "where": [ - 1897 + 1645 ] } ], "league_team_rosters": [ - 1929, + 1677, { "distinct_on": [ - 1950, + 1698, "[league_team_rosters_select_column!]" ], "limit": [ @@ -159345,19 +155159,19 @@ export default { 38 ], "order_by": [ - 1948, + 1696, "[league_team_rosters_order_by!]" ], "where": [ - 1938 + 1686 ] } ], "league_team_rosters_aggregate": [ - 1930, + 1678, { "distinct_on": [ - 1950, + 1698, "[league_team_rosters_select_column!]" ], "limit": [ @@ -159367,19 +155181,19 @@ export default { 38 ], "order_by": [ - 1948, + 1696, "[league_team_rosters_order_by!]" ], "where": [ - 1938 + 1686 ] } ], "league_team_rosters_by_pk": [ - 1929, + 1677, { "league_team_season_id": [ - 4762, + 4621, "uuid!" ], "player_steam_id": [ @@ -159389,26 +155203,26 @@ export default { } ], "league_team_rosters_stream": [ - 1929, + 1677, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1958, + 1706, "[league_team_rosters_stream_cursor_input]!" ], "where": [ - 1938 + 1686 ] } ], "league_team_seasons": [ - 1970, + 1718, { "distinct_on": [ - 1992, + 1740, "[league_team_seasons_select_column!]" ], "limit": [ @@ -159418,19 +155232,19 @@ export default { 38 ], "order_by": [ - 1990, + 1738, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 1727 ] } ], "league_team_seasons_aggregate": [ - 1971, + 1719, { "distinct_on": [ - 1992, + 1740, "[league_team_seasons_select_column!]" ], "limit": [ @@ -159440,44 +155254,44 @@ export default { 38 ], "order_by": [ - 1990, + 1738, "[league_team_seasons_order_by!]" ], "where": [ - 1979 + 1727 ] } ], "league_team_seasons_by_pk": [ - 1970, + 1718, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_team_seasons_stream": [ - 1970, + 1718, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2000, + 1748, "[league_team_seasons_stream_cursor_input]!" ], "where": [ - 1979 + 1727 ] } ], "league_teams": [ - 2012, + 1760, { "distinct_on": [ - 2025, + 1773, "[league_teams_select_column!]" ], "limit": [ @@ -159487,19 +155301,19 @@ export default { 38 ], "order_by": [ - 2023, + 1771, "[league_teams_order_by!]" ], "where": [ - 2015 + 1763 ] } ], "league_teams_aggregate": [ - 2013, + 1761, { "distinct_on": [ - 2025, + 1773, "[league_teams_select_column!]" ], "limit": [ @@ -159509,44 +155323,44 @@ export default { 38 ], "order_by": [ - 2023, + 1771, "[league_teams_order_by!]" ], "where": [ - 2015 + 1763 ] } ], "league_teams_by_pk": [ - 2012, + 1760, { "id": [ - 4762, + 4621, "uuid!" ] } ], "league_teams_stream": [ - 2012, + 1760, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2027, + 1775, "[league_teams_stream_cursor_input]!" ], "where": [ - 2015 + 1763 ] } ], "lobbies": [ - 2031, + 1779, { "distinct_on": [ - 2044, + 1792, "[lobbies_select_column!]" ], "limit": [ @@ -159556,19 +155370,19 @@ export default { 38 ], "order_by": [ - 2042, + 1790, "[lobbies_order_by!]" ], "where": [ - 2034 + 1782 ] } ], "lobbies_aggregate": [ - 2032, + 1780, { "distinct_on": [ - 2044, + 1792, "[lobbies_select_column!]" ], "limit": [ @@ -159578,44 +155392,44 @@ export default { 38 ], "order_by": [ - 2042, + 1790, "[lobbies_order_by!]" ], "where": [ - 2034 + 1782 ] } ], "lobbies_by_pk": [ - 2031, + 1779, { "id": [ - 4762, + 4621, "uuid!" ] } ], "lobbies_stream": [ - 2031, + 1779, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2046, + 1794, "[lobbies_stream_cursor_input]!" ], "where": [ - 2034 + 1782 ] } ], "lobby_players": [ - 2050, + 1798, { "distinct_on": [ - 2073, + 1821, "[lobby_players_select_column!]" ], "limit": [ @@ -159625,19 +155439,19 @@ export default { 38 ], "order_by": [ - 2071, + 1819, "[lobby_players_order_by!]" ], "where": [ - 2061 + 1809 ] } ], "lobby_players_aggregate": [ - 2051, + 1799, { "distinct_on": [ - 2073, + 1821, "[lobby_players_select_column!]" ], "limit": [ @@ -159647,19 +155461,19 @@ export default { 38 ], "order_by": [ - 2071, + 1819, "[lobby_players_order_by!]" ], "where": [ - 2061 + 1809 ] } ], "lobby_players_by_pk": [ - 2050, + 1798, { "lobby_id": [ - 4762, + 4621, "uuid!" ], "steam_id": [ @@ -159669,26 +155483,26 @@ export default { } ], "lobby_players_stream": [ - 2050, + 1798, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2083, + 1831, "[lobby_players_stream_cursor_input]!" ], "where": [ - 2061 + 1809 ] } ], "map_pools": [ - 2095, + 1843, { "distinct_on": [ - 2108, + 1856, "[map_pools_select_column!]" ], "limit": [ @@ -159698,19 +155512,19 @@ export default { 38 ], "order_by": [ - 2106, + 1854, "[map_pools_order_by!]" ], "where": [ - 2098 + 1846 ] } ], "map_pools_aggregate": [ - 2096, + 1844, { "distinct_on": [ - 2108, + 1856, "[map_pools_select_column!]" ], "limit": [ @@ -159720,44 +155534,44 @@ export default { 38 ], "order_by": [ - 2106, + 1854, "[map_pools_order_by!]" ], "where": [ - 2098 + 1846 ] } ], "map_pools_by_pk": [ - 2095, + 1843, { "id": [ - 4762, + 4621, "uuid!" ] } ], "map_pools_stream": [ - 2095, + 1843, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2110, + 1858, "[map_pools_stream_cursor_input]!" ], "where": [ - 2098 + 1846 ] } ], "maps": [ - 2114, + 1862, { "distinct_on": [ - 2135, + 1883, "[maps_select_column!]" ], "limit": [ @@ -159767,19 +155581,19 @@ export default { 38 ], "order_by": [ - 2133, + 1881, "[maps_order_by!]" ], "where": [ - 2123 + 1871 ] } ], "maps_aggregate": [ - 2115, + 1863, { "distinct_on": [ - 2135, + 1883, "[maps_select_column!]" ], "limit": [ @@ -159789,44 +155603,44 @@ export default { 38 ], "order_by": [ - 2133, + 1881, "[maps_order_by!]" ], "where": [ - 2123 + 1871 ] } ], "maps_by_pk": [ - 2114, + 1862, { "id": [ - 4762, + 4621, "uuid!" ] } ], "maps_stream": [ - 2114, + 1862, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2139, + 1887, "[maps_stream_cursor_input]!" ], "where": [ - 2123 + 1871 ] } ], "match_clips": [ - 2143, + 1891, { "distinct_on": [ - 2165, + 1913, "[match_clips_select_column!]" ], "limit": [ @@ -159836,19 +155650,19 @@ export default { 38 ], "order_by": [ - 2163, + 1911, "[match_clips_order_by!]" ], "where": [ - 2152 + 1900 ] } ], "match_clips_aggregate": [ - 2144, + 1892, { "distinct_on": [ - 2165, + 1913, "[match_clips_select_column!]" ], "limit": [ @@ -159858,44 +155672,44 @@ export default { 38 ], "order_by": [ - 2163, + 1911, "[match_clips_order_by!]" ], "where": [ - 2152 + 1900 ] } ], "match_clips_by_pk": [ - 2143, + 1891, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_clips_stream": [ - 2143, + 1891, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2173, + 1921, "[match_clips_stream_cursor_input]!" ], "where": [ - 2152 + 1900 ] } ], "match_demo_sessions": [ - 2185, + 1933, { "distinct_on": [ - 2211, + 1959, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -159905,19 +155719,19 @@ export default { 38 ], "order_by": [ - 2208, + 1956, "[match_demo_sessions_order_by!]" ], "where": [ - 2195 + 1943 ] } ], "match_demo_sessions_aggregate": [ - 2186, + 1934, { "distinct_on": [ - 2211, + 1959, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -159927,44 +155741,44 @@ export default { 38 ], "order_by": [ - 2208, + 1956, "[match_demo_sessions_order_by!]" ], "where": [ - 2195 + 1943 ] } ], "match_demo_sessions_by_pk": [ - 2185, + 1933, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_demo_sessions_stream": [ - 2185, + 1933, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2219, + 1967, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 2195 + 1943 ] } ], "match_lineup_players": [ - 2231, + 1979, { "distinct_on": [ - 2254, + 2002, "[match_lineup_players_select_column!]" ], "limit": [ @@ -159974,19 +155788,19 @@ export default { 38 ], "order_by": [ - 2252, + 2000, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 1990 ] } ], "match_lineup_players_aggregate": [ - 2232, + 1980, { "distinct_on": [ - 2254, + 2002, "[match_lineup_players_select_column!]" ], "limit": [ @@ -159996,44 +155810,44 @@ export default { 38 ], "order_by": [ - 2252, + 2000, "[match_lineup_players_order_by!]" ], "where": [ - 2242 + 1990 ] } ], "match_lineup_players_by_pk": [ - 2231, + 1979, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_lineup_players_stream": [ - 2231, + 1979, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2264, + 2012, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 2242 + 1990 ] } ], "match_lineups": [ - 2276, + 2024, { "distinct_on": [ - 2298, + 2046, "[match_lineups_select_column!]" ], "limit": [ @@ -160043,19 +155857,19 @@ export default { 38 ], "order_by": [ - 2296, + 2044, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2033 ] } ], "match_lineups_aggregate": [ - 2277, + 2025, { "distinct_on": [ - 2298, + 2046, "[match_lineups_select_column!]" ], "limit": [ @@ -160065,44 +155879,44 @@ export default { 38 ], "order_by": [ - 2296, + 2044, "[match_lineups_order_by!]" ], "where": [ - 2285 + 2033 ] } ], "match_lineups_by_pk": [ - 2276, + 2024, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_lineups_stream": [ - 2276, + 2024, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2306, + 2054, "[match_lineups_stream_cursor_input]!" ], "where": [ - 2285 + 2033 ] } ], "match_map_demos": [ - 2318, + 2066, { "distinct_on": [ - 2347, + 2095, "[match_map_demos_select_column!]" ], "limit": [ @@ -160112,19 +155926,19 @@ export default { 38 ], "order_by": [ - 2344, + 2092, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2078 ] } ], "match_map_demos_aggregate": [ - 2319, + 2067, { "distinct_on": [ - 2347, + 2095, "[match_map_demos_select_column!]" ], "limit": [ @@ -160134,44 +155948,44 @@ export default { 38 ], "order_by": [ - 2344, + 2092, "[match_map_demos_order_by!]" ], "where": [ - 2330 + 2078 ] } ], "match_map_demos_by_pk": [ - 2318, + 2066, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_map_demos_stream": [ - 2318, + 2066, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2357, + 2105, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2330 + 2078 ] } ], "match_map_rounds": [ - 2369, + 2117, { "distinct_on": [ - 2390, + 2138, "[match_map_rounds_select_column!]" ], "limit": [ @@ -160181,19 +155995,19 @@ export default { 38 ], "order_by": [ - 2388, + 2136, "[match_map_rounds_order_by!]" ], "where": [ - 2378 + 2126 ] } ], "match_map_rounds_aggregate": [ - 2370, + 2118, { "distinct_on": [ - 2390, + 2138, "[match_map_rounds_select_column!]" ], "limit": [ @@ -160203,44 +156017,44 @@ export default { 38 ], "order_by": [ - 2388, + 2136, "[match_map_rounds_order_by!]" ], "where": [ - 2378 + 2126 ] } ], "match_map_rounds_by_pk": [ - 2369, + 2117, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_map_rounds_stream": [ - 2369, + 2117, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2398, + 2146, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2378 + 2126 ] } ], "match_map_veto_picks": [ - 2410, + 2158, { "distinct_on": [ - 2428, + 2176, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -160250,19 +156064,19 @@ export default { 38 ], "order_by": [ - 2426, + 2174, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2165 ] } ], "match_map_veto_picks_aggregate": [ - 2411, + 2159, { "distinct_on": [ - 2428, + 2176, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -160272,44 +156086,44 @@ export default { 38 ], "order_by": [ - 2426, + 2174, "[match_map_veto_picks_order_by!]" ], "where": [ - 2417 + 2165 ] } ], "match_map_veto_picks_by_pk": [ - 2410, + 2158, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2410, + 2158, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2430, + 2178, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2417 + 2165 ] } ], "match_maps": [ - 2434, + 2182, { "distinct_on": [ - 2456, + 2204, "[match_maps_select_column!]" ], "limit": [ @@ -160319,19 +156133,19 @@ export default { 38 ], "order_by": [ - 2454, + 2202, "[match_maps_order_by!]" ], "where": [ - 2443 + 2191 ] } ], "match_maps_aggregate": [ - 2435, + 2183, { "distinct_on": [ - 2456, + 2204, "[match_maps_select_column!]" ], "limit": [ @@ -160341,44 +156155,44 @@ export default { 38 ], "order_by": [ - 2454, + 2202, "[match_maps_order_by!]" ], "where": [ - 2443 + 2191 ] } ], "match_maps_by_pk": [ - 2434, + 2182, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_maps_stream": [ - 2434, + 2182, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2464, + 2212, "[match_maps_stream_cursor_input]!" ], "where": [ - 2443 + 2191 ] } ], "match_options": [ - 2476, + 2224, { "distinct_on": [ - 2491, + 2239, "[match_options_select_column!]" ], "limit": [ @@ -160388,19 +156202,19 @@ export default { 38 ], "order_by": [ - 2489, + 2237, "[match_options_order_by!]" ], "where": [ - 2480 + 2228 ] } ], "match_options_aggregate": [ - 2477, + 2225, { "distinct_on": [ - 2491, + 2239, "[match_options_select_column!]" ], "limit": [ @@ -160410,44 +156224,44 @@ export default { 38 ], "order_by": [ - 2489, + 2237, "[match_options_order_by!]" ], "where": [ - 2480 + 2228 ] } ], "match_options_by_pk": [ - 2476, + 2224, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_options_stream": [ - 2476, + 2224, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2496, + 2244, "[match_options_stream_cursor_input]!" ], "where": [ - 2480 + 2228 ] } ], "match_region_veto_picks": [ - 2504, + 2252, { "distinct_on": [ - 2522, + 2270, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -160457,19 +156271,19 @@ export default { 38 ], "order_by": [ - 2520, + 2268, "[match_region_veto_picks_order_by!]" ], "where": [ - 2511 + 2259 ] } ], "match_region_veto_picks_aggregate": [ - 2505, + 2253, { "distinct_on": [ - 2522, + 2270, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -160479,44 +156293,44 @@ export default { 38 ], "order_by": [ - 2520, + 2268, "[match_region_veto_picks_order_by!]" ], "where": [ - 2511 + 2259 ] } ], "match_region_veto_picks_by_pk": [ - 2504, + 2252, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2504, + 2252, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2524, + 2272, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2511 + 2259 ] } ], "match_streams": [ - 2528, + 2276, { "distinct_on": [ - 2556, + 2304, "[match_streams_select_column!]" ], "limit": [ @@ -160526,19 +156340,19 @@ export default { 38 ], "order_by": [ - 2553, + 2301, "[match_streams_order_by!]" ], "where": [ - 2540 + 2288 ] } ], "match_streams_aggregate": [ - 2529, + 2277, { "distinct_on": [ - 2556, + 2304, "[match_streams_select_column!]" ], "limit": [ @@ -160548,44 +156362,44 @@ export default { 38 ], "order_by": [ - 2553, + 2301, "[match_streams_order_by!]" ], "where": [ - 2540 + 2288 ] } ], "match_streams_by_pk": [ - 2528, + 2276, { "id": [ - 4762, + 4621, "uuid!" ] } ], "match_streams_stream": [ - 2528, + 2276, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2566, + 2314, "[match_streams_stream_cursor_input]!" ], "where": [ - 2540 + 2288 ] } ], "match_type_cfgs": [ - 2578, + 2326, { "distinct_on": [ - 2590, + 2338, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -160595,19 +156409,19 @@ export default { 38 ], "order_by": [ - 2588, + 2336, "[match_type_cfgs_order_by!]" ], "where": [ - 2581 + 2329 ] } ], "match_type_cfgs_aggregate": [ - 2579, + 2327, { "distinct_on": [ - 2590, + 2338, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -160617,44 +156431,44 @@ export default { 38 ], "order_by": [ - 2588, + 2336, "[match_type_cfgs_order_by!]" ], "where": [ - 2581 + 2329 ] } ], "match_type_cfgs_by_pk": [ - 2578, + 2326, { "type": [ - 591, + 578, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 2578, + 2326, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2592, + 2340, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2581 + 2329 ] } ], "matches": [ - 2596, + 2344, { "distinct_on": [ - 2618, + 2366, "[matches_select_column!]" ], "limit": [ @@ -160664,19 +156478,19 @@ export default { 38 ], "order_by": [ - 2616, + 2364, "[matches_order_by!]" ], "where": [ - 2605 + 2353 ] } ], "matches_aggregate": [ - 2597, + 2345, { "distinct_on": [ - 2618, + 2366, "[matches_select_column!]" ], "limit": [ @@ -160686,44 +156500,44 @@ export default { 38 ], "order_by": [ - 2616, + 2364, "[matches_order_by!]" ], "where": [ - 2605 + 2353 ] } ], "matches_by_pk": [ - 2596, + 2344, { "id": [ - 4762, + 4621, "uuid!" ] } ], "matches_stream": [ - 2596, + 2344, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2626, + 2374, "[matches_stream_cursor_input]!" ], "where": [ - 2605 + 2353 ] } ], "migration_hashes_hashes": [ - 2638, + 2386, { "distinct_on": [ - 2650, + 2398, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -160733,19 +156547,19 @@ export default { 38 ], "order_by": [ - 2648, + 2396, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2641 + 2389 ] } ], "migration_hashes_hashes_aggregate": [ - 2639, + 2387, { "distinct_on": [ - 2650, + 2398, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -160755,16 +156569,16 @@ export default { 38 ], "order_by": [ - 2648, + 2396, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2641 + 2389 ] } ], "migration_hashes_hashes_by_pk": [ - 2638, + 2386, { "name": [ 78, @@ -160773,26 +156587,26 @@ export default { } ], "migration_hashes_hashes_stream": [ - 2638, + 2386, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2652, + 2400, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2641 + 2389 ] } ], "my_friends": [ - 2656, + 2404, { "distinct_on": [ - 2681, + 2429, "[my_friends_select_column!]" ], "limit": [ @@ -160802,19 +156616,19 @@ export default { 38 ], "order_by": [ - 2679, + 2427, "[my_friends_order_by!]" ], "where": [ - 2668 + 2416 ] } ], "my_friends_aggregate": [ - 2657, + 2405, { "distinct_on": [ - 2681, + 2429, "[my_friends_select_column!]" ], "limit": [ @@ -160824,35 +156638,35 @@ export default { 38 ], "order_by": [ - 2679, + 2427, "[my_friends_order_by!]" ], "where": [ - 2668 + 2416 ] } ], "my_friends_stream": [ - 2656, + 2404, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2691, + 2439, "[my_friends_stream_cursor_input]!" ], "where": [ - 2668 + 2416 ] } ], "news_articles": [ - 2702, + 2450, { "distinct_on": [ - 2716, + 2464, "[news_articles_select_column!]" ], "limit": [ @@ -160862,19 +156676,19 @@ export default { 38 ], "order_by": [ - 2714, + 2462, "[news_articles_order_by!]" ], "where": [ - 2706 + 2454 ] } ], "news_articles_aggregate": [ - 2703, + 2451, { "distinct_on": [ - 2716, + 2464, "[news_articles_select_column!]" ], "limit": [ @@ -160884,44 +156698,44 @@ export default { 38 ], "order_by": [ - 2714, + 2462, "[news_articles_order_by!]" ], "where": [ - 2706 + 2454 ] } ], "news_articles_by_pk": [ - 2702, + 2450, { "id": [ - 4762, + 4621, "uuid!" ] } ], "news_articles_stream": [ - 2702, + 2450, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2721, + 2469, "[news_articles_stream_cursor_input]!" ], "where": [ - 2706 + 2454 ] } ], "notifications": [ - 2729, + 2477, { "distinct_on": [ - 2757, + 2505, "[notifications_select_column!]" ], "limit": [ @@ -160931,19 +156745,19 @@ export default { 38 ], "order_by": [ - 2754, + 2502, "[notifications_order_by!]" ], "where": [ - 2741 + 2489 ] } ], "notifications_aggregate": [ - 2730, + 2478, { "distinct_on": [ - 2757, + 2505, "[notifications_select_column!]" ], "limit": [ @@ -160953,44 +156767,44 @@ export default { 38 ], "order_by": [ - 2754, + 2502, "[notifications_order_by!]" ], "where": [ - 2741 + 2489 ] } ], "notifications_by_pk": [ - 2729, + 2477, { "id": [ - 4762, + 4621, "uuid!" ] } ], "notifications_stream": [ - 2729, + 2477, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2767, + 2515, "[notifications_stream_cursor_input]!" ], "where": [ - 2741 + 2489 ] } ], "pending_match_import_players": [ - 2782, + 2530, { "distinct_on": [ - 2803, + 2551, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -161000,19 +156814,19 @@ export default { 38 ], "order_by": [ - 2801, + 2549, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2539 ] } ], "pending_match_import_players_aggregate": [ - 2783, + 2531, { "distinct_on": [ - 2803, + 2551, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -161022,48 +156836,48 @@ export default { 38 ], "order_by": [ - 2801, + 2549, "[pending_match_import_players_order_by!]" ], "where": [ - 2791 + 2539 ] } ], "pending_match_import_players_by_pk": [ - 2782, + 2530, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2779, + 2527, "numeric!" ] } ], "pending_match_import_players_stream": [ - 2782, + 2530, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2811, + 2559, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 2791 + 2539 ] } ], "pending_match_imports": [ - 2823, + 2571, { "distinct_on": [ - 2838, + 2586, "[pending_match_imports_select_column!]" ], "limit": [ @@ -161073,19 +156887,19 @@ export default { 38 ], "order_by": [ - 2836, + 2584, "[pending_match_imports_order_by!]" ], "where": [ - 2827 + 2575 ] } ], "pending_match_imports_aggregate": [ - 2824, + 2572, { "distinct_on": [ - 2838, + 2586, "[pending_match_imports_select_column!]" ], "limit": [ @@ -161095,44 +156909,44 @@ export default { 38 ], "order_by": [ - 2836, + 2584, "[pending_match_imports_order_by!]" ], "where": [ - 2827 + 2575 ] } ], "pending_match_imports_by_pk": [ - 2823, + 2571, { "valve_match_id": [ - 2779, + 2527, "numeric!" ] } ], "pending_match_imports_stream": [ - 2823, + 2571, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2843, + 2591, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 2827 + 2575 ] } ], "player_aim_stats_demo": [ - 2851, + 2599, { "distinct_on": [ - 2865, + 2613, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -161142,19 +156956,19 @@ export default { 38 ], "order_by": [ - 2863, + 2611, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2855 + 2603 ] } ], "player_aim_stats_demo_aggregate": [ - 2852, + 2600, { "distinct_on": [ - 2865, + 2613, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -161164,48 +156978,48 @@ export default { 38 ], "order_by": [ - 2863, + 2611, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2855 + 2603 ] } ], "player_aim_stats_demo_by_pk": [ - 2851, + 2599, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 2851, + 2599, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2870, + 2618, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 2855 + 2603 ] } ], "player_aim_weapon_stats": [ - 2878, + 2626, { "distinct_on": [ - 2899, + 2647, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -161215,19 +157029,19 @@ export default { 38 ], "order_by": [ - 2897, + 2645, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2887 + 2635 ] } ], "player_aim_weapon_stats_aggregate": [ - 2879, + 2627, { "distinct_on": [ - 2899, + 2647, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -161237,19 +157051,19 @@ export default { 38 ], "order_by": [ - 2897, + 2645, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2887 + 2635 ] } ], "player_aim_weapon_stats_by_pk": [ - 2878, + 2626, { "match_map_id": [ - 4762, + 4621, "uuid!" ], "steam_id": [ @@ -161263,26 +157077,26 @@ export default { } ], "player_aim_weapon_stats_stream": [ - 2878, + 2626, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2907, + 2655, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 2887 + 2635 ] } ], "player_assists": [ - 2919, + 2667, { "distinct_on": [ - 2942, + 2690, "[player_assists_select_column!]" ], "limit": [ @@ -161292,19 +157106,19 @@ export default { 38 ], "order_by": [ - 2940, + 2688, "[player_assists_order_by!]" ], "where": [ - 2930 + 2678 ] } ], "player_assists_aggregate": [ - 2920, + 2668, { "distinct_on": [ - 2942, + 2690, "[player_assists_select_column!]" ], "limit": [ @@ -161314,16 +157128,16 @@ export default { 38 ], "order_by": [ - 2940, + 2688, "[player_assists_order_by!]" ], "where": [ - 2930 + 2678 ] } ], "player_assists_by_pk": [ - 2919, + 2667, { "attacked_steam_id": [ 180, @@ -161334,36 +157148,36 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "player_assists_stream": [ - 2919, + 2667, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2952, + 2700, "[player_assists_stream_cursor_input]!" ], "where": [ - 2930 + 2678 ] } ], "player_career_stats_v": [ - 2964, + 2712, { "distinct_on": [ - 2972, + 2720, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -161373,19 +157187,19 @@ export default { 38 ], "order_by": [ - 2971, + 2719, "[player_career_stats_v_order_by!]" ], "where": [ - 2968 + 2716 ] } ], "player_career_stats_v_aggregate": [ - 2965, + 2713, { "distinct_on": [ - 2972, + 2720, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -161395,35 +157209,35 @@ export default { 38 ], "order_by": [ - 2971, + 2719, "[player_career_stats_v_order_by!]" ], "where": [ - 2968 + 2716 ] } ], "player_career_stats_v_stream": [ - 2964, + 2712, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2976, + 2724, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 2968 + 2716 ] } ], "player_damages": [ - 2982, + 2730, { "distinct_on": [ - 3003, + 2751, "[player_damages_select_column!]" ], "limit": [ @@ -161433,19 +157247,19 @@ export default { 38 ], "order_by": [ - 3001, + 2749, "[player_damages_order_by!]" ], "where": [ - 2991 + 2739 ] } ], "player_damages_aggregate": [ - 2983, + 2731, { "distinct_on": [ - 3003, + 2751, "[player_damages_select_column!]" ], "limit": [ @@ -161455,52 +157269,52 @@ export default { 38 ], "order_by": [ - 3001, + 2749, "[player_damages_order_by!]" ], "where": [ - 2991 + 2739 ] } ], "player_damages_by_pk": [ - 2982, + 2730, { "id": [ - 4762, + 4621, "uuid!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "player_damages_stream": [ - 2982, + 2730, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3011, + 2759, "[player_damages_stream_cursor_input]!" ], "where": [ - 2991 + 2739 ] } ], "player_elo": [ - 3023, + 2771, { "distinct_on": [ - 3037, + 2785, "[player_elo_select_column!]" ], "limit": [ @@ -161510,19 +157324,19 @@ export default { 38 ], "order_by": [ - 3035, + 2783, "[player_elo_order_by!]" ], "where": [ - 3027 + 2775 ] } ], "player_elo_aggregate": [ - 3024, + 2772, { "distinct_on": [ - 3037, + 2785, "[player_elo_select_column!]" ], "limit": [ @@ -161532,19 +157346,19 @@ export default { 38 ], "order_by": [ - 3035, + 2783, "[player_elo_order_by!]" ], "where": [ - 3027 + 2775 ] } ], "player_elo_by_pk": [ - 3023, + 2771, { "match_id": [ - 4762, + 4621, "uuid!" ], "steam_id": [ @@ -161552,32 +157366,32 @@ export default { "bigint!" ], "type": [ - 860, + 847, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 3023, + 2771, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3042, + 2790, "[player_elo_stream_cursor_input]!" ], "where": [ - 3027 + 2775 ] } ], "player_faceit_rank_history": [ - 3050, + 2798, { "distinct_on": [ - 3071, + 2819, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -161587,19 +157401,19 @@ export default { 38 ], "order_by": [ - 3069, + 2817, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3059 + 2807 ] } ], "player_faceit_rank_history_aggregate": [ - 3051, + 2799, { "distinct_on": [ - 3071, + 2819, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -161609,44 +157423,44 @@ export default { 38 ], "order_by": [ - 3069, + 2817, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3059 + 2807 ] } ], "player_faceit_rank_history_by_pk": [ - 3050, + 2798, { "id": [ - 4762, + 4621, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 3050, + 2798, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3079, + 2827, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 3059 + 2807 ] } ], "player_flashes": [ - 3091, + 2839, { "distinct_on": [ - 3114, + 2862, "[player_flashes_select_column!]" ], "limit": [ @@ -161656,19 +157470,19 @@ export default { 38 ], "order_by": [ - 3112, + 2860, "[player_flashes_order_by!]" ], "where": [ - 3102 + 2850 ] } ], "player_flashes_aggregate": [ - 3092, + 2840, { "distinct_on": [ - 3114, + 2862, "[player_flashes_select_column!]" ], "limit": [ @@ -161678,16 +157492,16 @@ export default { 38 ], "order_by": [ - 3112, + 2860, "[player_flashes_order_by!]" ], "where": [ - 3102 + 2850 ] } ], "player_flashes_by_pk": [ - 3091, + 2839, { "attacked_steam_id": [ 180, @@ -161698,36 +157512,36 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "player_flashes_stream": [ - 3091, + 2839, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3124, + 2872, "[player_flashes_stream_cursor_input]!" ], "where": [ - 3102 + 2850 ] } ], "player_kills": [ - 3136, + 2884, { "distinct_on": [ - 3200, + 2948, "[player_kills_select_column!]" ], "limit": [ @@ -161737,19 +157551,19 @@ export default { 38 ], "order_by": [ - 3198, + 2946, "[player_kills_order_by!]" ], "where": [ - 3147 + 2895 ] } ], "player_kills_aggregate": [ - 3137, + 2885, { "distinct_on": [ - 3200, + 2948, "[player_kills_select_column!]" ], "limit": [ @@ -161759,16 +157573,16 @@ export default { 38 ], "order_by": [ - 3198, + 2946, "[player_kills_order_by!]" ], "where": [ - 3147 + 2895 ] } ], "player_kills_by_pk": [ - 3136, + 2884, { "attacked_steam_id": [ 180, @@ -161779,20 +157593,20 @@ export default { "bigint!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3148, + 2896, { "distinct_on": [ - 3169, + 2917, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -161802,19 +157616,19 @@ export default { 38 ], "order_by": [ - 3167, + 2915, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3157 + 2905 ] } ], "player_kills_by_weapon_aggregate": [ - 3149, + 2897, { "distinct_on": [ - 3169, + 2917, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -161824,16 +157638,16 @@ export default { 38 ], "order_by": [ - 3167, + 2915, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3157 + 2905 ] } ], "player_kills_by_weapon_by_pk": [ - 3148, + 2896, { "player_steam_id": [ 180, @@ -161846,42 +157660,42 @@ export default { } ], "player_kills_by_weapon_stream": [ - 3148, + 2896, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3177, + 2925, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 3157 + 2905 ] } ], "player_kills_stream": [ - 3136, + 2884, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3210, + 2958, "[player_kills_stream_cursor_input]!" ], "where": [ - 3147 + 2895 ] } ], "player_leaderboard_rank": [ - 3222, + 2970, { "distinct_on": [ - 3233, + 2981, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -161891,19 +157705,19 @@ export default { 38 ], "order_by": [ - 3232, + 2980, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 2974 ] } ], "player_leaderboard_rank_aggregate": [ - 3223, + 2971, { "distinct_on": [ - 3233, + 2981, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -161913,35 +157727,35 @@ export default { 38 ], "order_by": [ - 3232, + 2980, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3226 + 2974 ] } ], "player_leaderboard_rank_stream": [ - 3222, + 2970, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3238, + 2986, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 3226 + 2974 ] } ], "player_match_map_stats": [ - 3245, + 2993, { "distinct_on": [ - 3266, + 3014, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -161951,19 +157765,19 @@ export default { 38 ], "order_by": [ - 3264, + 3012, "[player_match_map_stats_order_by!]" ], "where": [ - 3254 + 3002 ] } ], "player_match_map_stats_aggregate": [ - 3246, + 2994, { "distinct_on": [ - 3266, + 3014, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -161973,19 +157787,19 @@ export default { 38 ], "order_by": [ - 3264, + 3012, "[player_match_map_stats_order_by!]" ], "where": [ - 3254 + 3002 ] } ], "player_match_map_stats_by_pk": [ - 3245, + 2993, { "match_map_id": [ - 4762, + 4621, "uuid!" ], "steam_id": [ @@ -161995,26 +157809,26 @@ export default { } ], "player_match_map_stats_stream": [ - 3245, + 2993, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3274, + 3022, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 3254 + 3002 ] } ], "player_match_performance_v": [ - 3286, + 3034, { "distinct_on": [ - 3294, + 3042, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -162024,19 +157838,19 @@ export default { 38 ], "order_by": [ - 3293, + 3041, "[player_match_performance_v_order_by!]" ], "where": [ - 3290 + 3038 ] } ], "player_match_performance_v_aggregate": [ - 3287, + 3035, { "distinct_on": [ - 3294, + 3042, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -162046,35 +157860,35 @@ export default { 38 ], "order_by": [ - 3293, + 3041, "[player_match_performance_v_order_by!]" ], "where": [ - 3290 + 3038 ] } ], "player_match_performance_v_stream": [ - 3286, + 3034, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3298, + 3046, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 3290 + 3038 ] } ], "player_match_stats_v": [ - 3304, + 3052, { "distinct_on": [ - 3320, + 3068, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -162084,19 +157898,19 @@ export default { 38 ], "order_by": [ - 3319, + 3067, "[player_match_stats_v_order_by!]" ], "where": [ - 3313 + 3061 ] } ], "player_match_stats_v_aggregate": [ - 3305, + 3053, { "distinct_on": [ - 3320, + 3068, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -162106,35 +157920,35 @@ export default { 38 ], "order_by": [ - 3319, + 3067, "[player_match_stats_v_order_by!]" ], "where": [ - 3313 + 3061 ] } ], "player_match_stats_v_stream": [ - 3304, + 3052, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3327, + 3075, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3313 + 3061 ] } ], "player_objectives": [ - 3337, + 3085, { "distinct_on": [ - 3358, + 3106, "[player_objectives_select_column!]" ], "limit": [ @@ -162144,19 +157958,19 @@ export default { 38 ], "order_by": [ - 3356, + 3104, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3094 ] } ], "player_objectives_aggregate": [ - 3338, + 3086, { "distinct_on": [ - 3358, + 3106, "[player_objectives_select_column!]" ], "limit": [ @@ -162166,19 +157980,19 @@ export default { 38 ], "order_by": [ - 3356, + 3104, "[player_objectives_order_by!]" ], "where": [ - 3346 + 3094 ] } ], "player_objectives_by_pk": [ - 3337, + 3085, { "match_map_id": [ - 4762, + 4621, "uuid!" ], "player_steam_id": [ @@ -162186,32 +158000,32 @@ export default { "bigint!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "player_objectives_stream": [ - 3337, + 3085, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3366, + 3114, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3346 + 3094 ] } ], "player_performance_v": [ - 3378, + 3126, { "distinct_on": [ - 3386, + 3134, "[player_performance_v_select_column!]" ], "limit": [ @@ -162221,19 +158035,19 @@ export default { 38 ], "order_by": [ - 3385, + 3133, "[player_performance_v_order_by!]" ], "where": [ - 3382 + 3130 ] } ], "player_performance_v_aggregate": [ - 3379, + 3127, { "distinct_on": [ - 3386, + 3134, "[player_performance_v_select_column!]" ], "limit": [ @@ -162243,35 +158057,35 @@ export default { 38 ], "order_by": [ - 3385, + 3133, "[player_performance_v_order_by!]" ], "where": [ - 3382 + 3130 ] } ], "player_performance_v_stream": [ - 3378, + 3126, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3390, + 3138, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3382 + 3130 ] } ], "player_premier_rank_history": [ - 3396, + 3144, { "distinct_on": [ - 3417, + 3165, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -162281,19 +158095,19 @@ export default { 38 ], "order_by": [ - 3415, + 3163, "[player_premier_rank_history_order_by!]" ], "where": [ - 3405 + 3153 ] } ], "player_premier_rank_history_aggregate": [ - 3397, + 3145, { "distinct_on": [ - 3417, + 3165, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -162303,44 +158117,44 @@ export default { 38 ], "order_by": [ - 3415, + 3163, "[player_premier_rank_history_order_by!]" ], "where": [ - 3405 + 3153 ] } ], "player_premier_rank_history_by_pk": [ - 3396, + 3144, { "id": [ - 4762, + 4621, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3396, + 3144, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3425, + 3173, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3405 + 3153 ] } ], "player_sanctions": [ - 3437, + 3185, { "distinct_on": [ - 3458, + 3206, "[player_sanctions_select_column!]" ], "limit": [ @@ -162350,19 +158164,19 @@ export default { 38 ], "order_by": [ - 3456, + 3204, "[player_sanctions_order_by!]" ], "where": [ - 3446 + 3194 ] } ], "player_sanctions_aggregate": [ - 3438, + 3186, { "distinct_on": [ - 3458, + 3206, "[player_sanctions_select_column!]" ], "limit": [ @@ -162372,48 +158186,48 @@ export default { 38 ], "order_by": [ - 3456, + 3204, "[player_sanctions_order_by!]" ], "where": [ - 3446 + 3194 ] } ], "player_sanctions_by_pk": [ - 3437, + 3185, { "created_at": [ - 4324, + 4076, "timestamptz!" ], "id": [ - 4762, + 4621, "uuid!" ] } ], "player_sanctions_stream": [ - 3437, + 3185, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3466, + 3214, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3446 + 3194 ] } ], "player_season_stats": [ - 3478, + 3226, { "distinct_on": [ - 3509, + 3257, "[player_season_stats_select_column!]" ], "limit": [ @@ -162423,19 +158237,19 @@ export default { 38 ], "order_by": [ - 3507, + 3255, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3245 ] } ], "player_season_stats_aggregate": [ - 3479, + 3227, { "distinct_on": [ - 3509, + 3257, "[player_season_stats_select_column!]" ], "limit": [ @@ -162445,48 +158259,48 @@ export default { 38 ], "order_by": [ - 3507, + 3255, "[player_season_stats_order_by!]" ], "where": [ - 3497 + 3245 ] } ], "player_season_stats_by_pk": [ - 3478, + 3226, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4762, + 4621, "uuid!" ] } ], "player_season_stats_stream": [ - 3478, + 3226, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3525, + 3273, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3497 + 3245 ] } ], "player_stats": [ - 3537, + 3285, { "distinct_on": [ - 3552, + 3300, "[player_stats_select_column!]" ], "limit": [ @@ -162496,19 +158310,19 @@ export default { 38 ], "order_by": [ - 3550, + 3298, "[player_stats_order_by!]" ], "where": [ - 3541 + 3289 ] } ], "player_stats_aggregate": [ - 3538, + 3286, { "distinct_on": [ - 3552, + 3300, "[player_stats_select_column!]" ], "limit": [ @@ -162518,16 +158332,16 @@ export default { 38 ], "order_by": [ - 3550, + 3298, "[player_stats_order_by!]" ], "where": [ - 3541 + 3289 ] } ], "player_stats_by_pk": [ - 3537, + 3285, { "player_steam_id": [ 180, @@ -162536,26 +158350,26 @@ export default { } ], "player_stats_stream": [ - 3537, + 3285, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3557, + 3305, "[player_stats_stream_cursor_input]!" ], "where": [ - 3541 + 3289 ] } ], "player_steam_bot_friend": [ - 3565, + 3313, { "distinct_on": [ - 3584, + 3332, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -162565,19 +158379,19 @@ export default { 38 ], "order_by": [ - 3581, + 3329, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3570 + 3318 ] } ], "player_steam_bot_friend_aggregate": [ - 3566, + 3314, { "distinct_on": [ - 3584, + 3332, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -162587,16 +158401,16 @@ export default { 38 ], "order_by": [ - 3581, + 3329, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3570 + 3318 ] } ], "player_steam_bot_friend_by_pk": [ - 3565, + 3313, { "steam_id": [ 180, @@ -162605,26 +158419,26 @@ export default { } ], "player_steam_bot_friend_stream": [ - 3565, + 3313, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3589, + 3337, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3570 + 3318 ] } ], "player_steam_match_auth": [ - 3597, + 3345, { "distinct_on": [ - 3611, + 3359, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -162634,19 +158448,19 @@ export default { 38 ], "order_by": [ - 3609, + 3357, "[player_steam_match_auth_order_by!]" ], "where": [ - 3601 + 3349 ] } ], "player_steam_match_auth_aggregate": [ - 3598, + 3346, { "distinct_on": [ - 3611, + 3359, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -162656,16 +158470,16 @@ export default { 38 ], "order_by": [ - 3609, + 3357, "[player_steam_match_auth_order_by!]" ], "where": [ - 3601 + 3349 ] } ], "player_steam_match_auth_by_pk": [ - 3597, + 3345, { "steam_id": [ 180, @@ -162674,26 +158488,26 @@ export default { } ], "player_steam_match_auth_stream": [ - 3597, + 3345, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3616, + 3364, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3601 + 3349 ] } ], "player_unused_utility": [ - 3624, + 3372, { "distinct_on": [ - 3645, + 3393, "[player_unused_utility_select_column!]" ], "limit": [ @@ -162703,19 +158517,19 @@ export default { 38 ], "order_by": [ - 3643, + 3391, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3381 ] } ], "player_unused_utility_aggregate": [ - 3625, + 3373, { "distinct_on": [ - 3645, + 3393, "[player_unused_utility_select_column!]" ], "limit": [ @@ -162725,19 +158539,19 @@ export default { 38 ], "order_by": [ - 3643, + 3391, "[player_unused_utility_order_by!]" ], "where": [ - 3633 + 3381 ] } ], "player_unused_utility_by_pk": [ - 3624, + 3372, { "match_map_id": [ - 4762, + 4621, "uuid!" ], "player_steam_id": [ @@ -162747,26 +158561,26 @@ export default { } ], "player_unused_utility_stream": [ - 3624, + 3372, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3653, + 3401, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3633 + 3381 ] } ], "player_utility": [ - 3665, + 3413, { "distinct_on": [ - 3686, + 3434, "[player_utility_select_column!]" ], "limit": [ @@ -162776,19 +158590,19 @@ export default { 38 ], "order_by": [ - 3684, + 3432, "[player_utility_order_by!]" ], "where": [ - 3674 + 3422 ] } ], "player_utility_aggregate": [ - 3666, + 3414, { "distinct_on": [ - 3686, + 3434, "[player_utility_select_column!]" ], "limit": [ @@ -162798,52 +158612,52 @@ export default { 38 ], "order_by": [ - 3684, + 3432, "[player_utility_order_by!]" ], "where": [ - 3674 + 3422 ] } ], "player_utility_by_pk": [ - 3665, + 3413, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4762, + 4621, "uuid!" ], "time": [ - 4324, + 4076, "timestamptz!" ] } ], "player_utility_stream": [ - 3665, + 3413, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3694, + 3442, "[player_utility_stream_cursor_input]!" ], "where": [ - 3674 + 3422 ] } ], "player_weapon_stats_v": [ - 3706, + 3454, { "distinct_on": [ - 3722, + 3470, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -162853,19 +158667,19 @@ export default { 38 ], "order_by": [ - 3721, + 3469, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3715 + 3463 ] } ], "player_weapon_stats_v_aggregate": [ - 3707, + 3455, { "distinct_on": [ - 3722, + 3470, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -162875,35 +158689,35 @@ export default { 38 ], "order_by": [ - 3721, + 3469, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3715 + 3463 ] } ], "player_weapon_stats_v_stream": [ - 3706, + 3454, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3729, + 3477, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 3715 + 3463 ] } ], "players": [ - 3739, + 3487, { "distinct_on": [ - 3754, + 3502, "[players_select_column!]" ], "limit": [ @@ -162913,19 +158727,19 @@ export default { 38 ], "order_by": [ - 3752, + 3500, "[players_order_by!]" ], "where": [ - 3743 + 3491 ] } ], "players_aggregate": [ - 3740, + 3488, { "distinct_on": [ - 3754, + 3502, "[players_select_column!]" ], "limit": [ @@ -162935,16 +158749,16 @@ export default { 38 ], "order_by": [ - 3752, + 3500, "[players_order_by!]" ], "where": [ - 3743 + 3491 ] } ], "players_by_pk": [ - 3739, + 3487, { "steam_id": [ 180, @@ -162953,26 +158767,26 @@ export default { } ], "players_stream": [ - 3739, + 3487, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3759, + 3507, "[players_stream_cursor_input]!" ], "where": [ - 3743 + 3491 ] } ], "plugin_versions": [ - 3767, + 3515, { "distinct_on": [ - 3781, + 3529, "[plugin_versions_select_column!]" ], "limit": [ @@ -162982,19 +158796,19 @@ export default { 38 ], "order_by": [ - 3779, + 3527, "[plugin_versions_order_by!]" ], "where": [ - 3771 + 3519 ] } ], "plugin_versions_aggregate": [ - 3768, + 3516, { "distinct_on": [ - 3781, + 3529, "[plugin_versions_select_column!]" ], "limit": [ @@ -163004,19 +158818,19 @@ export default { 38 ], "order_by": [ - 3779, + 3527, "[plugin_versions_order_by!]" ], "where": [ - 3771 + 3519 ] } ], "plugin_versions_by_pk": [ - 3767, + 3515, { "runtime": [ - 941, + 928, "e_plugin_runtimes_enum!" ], "version": [ @@ -163026,26 +158840,26 @@ export default { } ], "plugin_versions_stream": [ - 3767, + 3515, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3786, + 3534, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 3771 + 3519 ] } ], "seasons": [ - 3798, + 3546, { "distinct_on": [ - 3813, + 3561, "[seasons_select_column!]" ], "limit": [ @@ -163055,19 +158869,19 @@ export default { 38 ], "order_by": [ - 3811, + 3559, "[seasons_order_by!]" ], "where": [ - 3802 + 3550 ] } ], "seasons_aggregate": [ - 3799, + 3547, { "distinct_on": [ - 3813, + 3561, "[seasons_select_column!]" ], "limit": [ @@ -163077,44 +158891,44 @@ export default { 38 ], "order_by": [ - 3811, + 3559, "[seasons_order_by!]" ], "where": [ - 3802 + 3550 ] } ], "seasons_by_pk": [ - 3798, + 3546, { "id": [ - 4762, + 4621, "uuid!" ] } ], "seasons_stream": [ - 3798, + 3546, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3818, + 3566, "[seasons_stream_cursor_input]!" ], "where": [ - 3802 + 3550 ] } ], "server_regions": [ - 3826, + 3574, { "distinct_on": [ - 3840, + 3588, "[server_regions_select_column!]" ], "limit": [ @@ -163124,19 +158938,19 @@ export default { 38 ], "order_by": [ - 3838, + 3586, "[server_regions_order_by!]" ], "where": [ - 3830 + 3578 ] } ], "server_regions_aggregate": [ - 3827, + 3575, { "distinct_on": [ - 3840, + 3588, "[server_regions_select_column!]" ], "limit": [ @@ -163146,16 +158960,16 @@ export default { 38 ], "order_by": [ - 3838, + 3586, "[server_regions_order_by!]" ], "where": [ - 3830 + 3578 ] } ], "server_regions_by_pk": [ - 3826, + 3574, { "value": [ 78, @@ -163164,26 +158978,26 @@ export default { } ], "server_regions_stream": [ - 3826, + 3574, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3845, + 3593, "[server_regions_stream_cursor_input]!" ], "where": [ - 3830 + 3578 ] } ], "servers": [ - 3853, + 3601, { "distinct_on": [ - 3877, + 3625, "[servers_select_column!]" ], "limit": [ @@ -163193,19 +159007,19 @@ export default { 38 ], "order_by": [ - 3875, + 3623, "[servers_order_by!]" ], "where": [ - 3864 + 3612 ] } ], "servers_aggregate": [ - 3854, + 3602, { "distinct_on": [ - 3877, + 3625, "[servers_select_column!]" ], "limit": [ @@ -163215,44 +159029,44 @@ export default { 38 ], "order_by": [ - 3875, + 3623, "[servers_order_by!]" ], "where": [ - 3864 + 3612 ] } ], "servers_by_pk": [ - 3853, + 3601, { "id": [ - 4762, + 4621, "uuid!" ] } ], "servers_stream": [ - 3853, + 3601, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3887, + 3635, "[servers_stream_cursor_input]!" ], "where": [ - 3864 + 3612 ] } ], "settings": [ - 3899, + 3647, { "distinct_on": [ - 3911, + 3659, "[settings_select_column!]" ], "limit": [ @@ -163262,19 +159076,19 @@ export default { 38 ], "order_by": [ - 3909, + 3657, "[settings_order_by!]" ], "where": [ - 3902 + 3650 ] } ], "settings_aggregate": [ - 3900, + 3648, { "distinct_on": [ - 3911, + 3659, "[settings_select_column!]" ], "limit": [ @@ -163284,16 +159098,16 @@ export default { 38 ], "order_by": [ - 3909, + 3657, "[settings_order_by!]" ], "where": [ - 3902 + 3650 ] } ], "settings_by_pk": [ - 3899, + 3647, { "name": [ 78, @@ -163302,26 +159116,26 @@ export default { } ], "settings_stream": [ - 3899, + 3647, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3913, + 3661, "[settings_stream_cursor_input]!" ], "where": [ - 3902 + 3650 ] } ], "steam_account_claims": [ - 3919, + 3667, { "distinct_on": [ - 3937, + 3685, "[steam_account_claims_select_column!]" ], "limit": [ @@ -163331,19 +159145,19 @@ export default { 38 ], "order_by": [ - 3935, + 3683, "[steam_account_claims_order_by!]" ], "where": [ - 3926 + 3674 ] } ], "steam_account_claims_aggregate": [ - 3920, + 3668, { "distinct_on": [ - 3937, + 3685, "[steam_account_claims_select_column!]" ], "limit": [ @@ -163353,44 +159167,44 @@ export default { 38 ], "order_by": [ - 3935, + 3683, "[steam_account_claims_order_by!]" ], "where": [ - 3926 + 3674 ] } ], "steam_account_claims_by_pk": [ - 3919, + 3667, { "id": [ - 4762, + 4621, "uuid!" ] } ], "steam_account_claims_stream": [ - 3919, + 3667, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3939, + 3687, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 3926 + 3674 ] } ], "steam_accounts": [ - 3943, + 3691, { "distinct_on": [ - 3958, + 3706, "[steam_accounts_select_column!]" ], "limit": [ @@ -163400,19 +159214,19 @@ export default { 38 ], "order_by": [ - 3956, + 3704, "[steam_accounts_order_by!]" ], "where": [ - 3947 + 3695 ] } ], "steam_accounts_aggregate": [ - 3944, + 3692, { "distinct_on": [ - 3958, + 3706, "[steam_accounts_select_column!]" ], "limit": [ @@ -163422,44 +159236,44 @@ export default { 38 ], "order_by": [ - 3956, + 3704, "[steam_accounts_order_by!]" ], "where": [ - 3947 + 3695 ] } ], "steam_accounts_by_pk": [ - 3943, + 3691, { "id": [ - 4762, + 4621, "uuid!" ] } ], "steam_accounts_stream": [ - 3943, + 3691, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3963, + 3711, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 3947 + 3695 ] } ], "system_alerts": [ - 3971, + 3719, { "distinct_on": [ - 3985, + 3733, "[system_alerts_select_column!]" ], "limit": [ @@ -163469,19 +159283,19 @@ export default { 38 ], "order_by": [ - 3983, + 3731, "[system_alerts_order_by!]" ], "where": [ - 3975 + 3723 ] } ], "system_alerts_aggregate": [ - 3972, + 3720, { "distinct_on": [ - 3985, + 3733, "[system_alerts_select_column!]" ], "limit": [ @@ -163491,44 +159305,44 @@ export default { 38 ], "order_by": [ - 3983, + 3731, "[system_alerts_order_by!]" ], "where": [ - 3975 + 3723 ] } ], "system_alerts_by_pk": [ - 3971, + 3719, { "id": [ - 4762, + 4621, "uuid!" ] } ], "system_alerts_stream": [ - 3971, + 3719, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3990, + 3738, "[system_alerts_stream_cursor_input]!" ], "where": [ - 3975 + 3723 ] } ], "team_invites": [ - 3998, + 3746, { "distinct_on": [ - 4019, + 3767, "[team_invites_select_column!]" ], "limit": [ @@ -163538,19 +159352,19 @@ export default { 38 ], "order_by": [ - 4017, + 3765, "[team_invites_order_by!]" ], "where": [ - 4007 + 3755 ] } ], "team_invites_aggregate": [ - 3999, + 3747, { "distinct_on": [ - 4019, + 3767, "[team_invites_select_column!]" ], "limit": [ @@ -163560,44 +159374,44 @@ export default { 38 ], "order_by": [ - 4017, + 3765, "[team_invites_order_by!]" ], "where": [ - 4007 + 3755 ] } ], "team_invites_by_pk": [ - 3998, + 3746, { "id": [ - 4762, + 4621, "uuid!" ] } ], "team_invites_stream": [ - 3998, + 3746, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4027, + 3775, "[team_invites_stream_cursor_input]!" ], "where": [ - 4007 + 3755 ] } ], "team_roster": [ - 4039, + 3787, { "distinct_on": [ - 4062, + 3810, "[team_roster_select_column!]" ], "limit": [ @@ -163607,19 +159421,19 @@ export default { 38 ], "order_by": [ - 4060, + 3808, "[team_roster_order_by!]" ], "where": [ - 4050 + 3798 ] } ], "team_roster_aggregate": [ - 4040, + 3788, { "distinct_on": [ - 4062, + 3810, "[team_roster_select_column!]" ], "limit": [ @@ -163629,48 +159443,48 @@ export default { 38 ], "order_by": [ - 4060, + 3808, "[team_roster_order_by!]" ], "where": [ - 4050 + 3798 ] } ], "team_roster_by_pk": [ - 4039, + 3787, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4762, + 4621, "uuid!" ] } ], "team_roster_stream": [ - 4039, + 3787, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4072, + 3820, "[team_roster_stream_cursor_input]!" ], "where": [ - 4050 + 3798 ] } ], "team_scrim_alerts": [ - 4084, + 3832, { "distinct_on": [ - 4098, + 3846, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -163680,19 +159494,19 @@ export default { 38 ], "order_by": [ - 4096, + 3844, "[team_scrim_alerts_order_by!]" ], "where": [ - 4088 + 3836 ] } ], "team_scrim_alerts_aggregate": [ - 4085, + 3833, { "distinct_on": [ - 4098, + 3846, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -163702,44 +159516,44 @@ export default { 38 ], "order_by": [ - 4096, + 3844, "[team_scrim_alerts_order_by!]" ], "where": [ - 4088 + 3836 ] } ], "team_scrim_alerts_by_pk": [ - 4084, + 3832, { "id": [ - 4762, + 4621, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 4084, + 3832, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4103, + 3851, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 4088 + 3836 ] } ], "team_scrim_availability": [ - 4111, + 3859, { "distinct_on": [ - 4131, + 3879, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -163749,19 +159563,19 @@ export default { 38 ], "order_by": [ - 4129, + 3877, "[team_scrim_availability_order_by!]" ], "where": [ - 4120 + 3868 ] } ], "team_scrim_availability_aggregate": [ - 4112, + 3860, { "distinct_on": [ - 4131, + 3879, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -163771,44 +159585,44 @@ export default { 38 ], "order_by": [ - 4129, + 3877, "[team_scrim_availability_order_by!]" ], "where": [ - 4120 + 3868 ] } ], "team_scrim_availability_by_pk": [ - 4111, + 3859, { "id": [ - 4762, + 4621, "uuid!" ] } ], "team_scrim_availability_stream": [ - 4111, + 3859, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4135, + 3883, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 4120 + 3868 ] } ], "team_scrim_request_proposals": [ - 4139, + 3887, { "distinct_on": [ - 4160, + 3908, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -163818,19 +159632,19 @@ export default { 38 ], "order_by": [ - 4158, + 3906, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4148 + 3896 ] } ], "team_scrim_request_proposals_aggregate": [ - 4140, + 3888, { "distinct_on": [ - 4160, + 3908, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -163840,44 +159654,44 @@ export default { 38 ], "order_by": [ - 4158, + 3906, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4148 + 3896 ] } ], "team_scrim_request_proposals_by_pk": [ - 4139, + 3887, { "id": [ - 4762, + 4621, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 4139, + 3887, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4168, + 3916, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 4148 + 3896 ] } ], "team_scrim_requests": [ - 4180, + 3928, { "distinct_on": [ - 4204, + 3952, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -163887,19 +159701,19 @@ export default { 38 ], "order_by": [ - 4202, + 3950, "[team_scrim_requests_order_by!]" ], "where": [ - 4191 + 3939 ] } ], "team_scrim_requests_aggregate": [ - 4181, + 3929, { "distinct_on": [ - 4204, + 3952, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -163909,44 +159723,44 @@ export default { 38 ], "order_by": [ - 4202, + 3950, "[team_scrim_requests_order_by!]" ], "where": [ - 4191 + 3939 ] } ], "team_scrim_requests_by_pk": [ - 4180, + 3928, { "id": [ - 4762, + 4621, "uuid!" ] } ], "team_scrim_requests_stream": [ - 4180, + 3928, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4214, + 3962, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 4191 + 3939 ] } ], "team_scrim_settings": [ - 4226, + 3974, { "distinct_on": [ - 4241, + 3989, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -163956,19 +159770,19 @@ export default { 38 ], "order_by": [ - 4239, + 3987, "[team_scrim_settings_order_by!]" ], "where": [ - 4230 + 3978 ] } ], "team_scrim_settings_aggregate": [ - 4227, + 3975, { "distinct_on": [ - 4241, + 3989, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -163978,44 +159792,44 @@ export default { 38 ], "order_by": [ - 4239, + 3987, "[team_scrim_settings_order_by!]" ], "where": [ - 4230 + 3978 ] } ], "team_scrim_settings_by_pk": [ - 4226, + 3974, { "id": [ - 4762, + 4621, "uuid!" ] } ], "team_scrim_settings_stream": [ - 4226, + 3974, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4246, + 3994, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 4230 + 3978 ] } ], "team_suggestions": [ - 4254, + 4002, { "distinct_on": [ - 4268, + 4016, "[team_suggestions_select_column!]" ], "limit": [ @@ -164025,19 +159839,19 @@ export default { 38 ], "order_by": [ - 4266, + 4014, "[team_suggestions_order_by!]" ], "where": [ - 4258 + 4006 ] } ], "team_suggestions_aggregate": [ - 4255, + 4003, { "distinct_on": [ - 4268, + 4016, "[team_suggestions_select_column!]" ], "limit": [ @@ -164047,44 +159861,44 @@ export default { 38 ], "order_by": [ - 4266, + 4014, "[team_suggestions_order_by!]" ], "where": [ - 4258 + 4006 ] } ], "team_suggestions_by_pk": [ - 4254, + 4002, { "id": [ - 4762, + 4621, "uuid!" ] } ], "team_suggestions_stream": [ - 4254, + 4002, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4273, + 4021, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 4258 + 4006 ] } ], "teams": [ - 4281, + 4029, { "distinct_on": [ - 4303, + 4053, "[teams_select_column!]" ], "limit": [ @@ -164094,19 +159908,19 @@ export default { 38 ], "order_by": [ - 4301, + 4051, "[teams_order_by!]" ], "where": [ - 4290 + 4040 ] } ], "teams_aggregate": [ - 4282, + 4030, { "distinct_on": [ - 4303, + 4053, "[teams_select_column!]" ], "limit": [ @@ -164116,44 +159930,44 @@ export default { 38 ], "order_by": [ - 4301, + 4051, "[teams_order_by!]" ], "where": [ - 4290 + 4040 ] } ], "teams_by_pk": [ - 4281, + 4029, { "id": [ - 4762, + 4621, "uuid!" ] } ], "teams_stream": [ - 4281, + 4029, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4311, + 4063, "[teams_stream_cursor_input]!" ], "where": [ - 4290 + 4040 ] } ], "tournament_brackets": [ - 4326, + 4078, { "distinct_on": [ - 4350, + 4102, "[tournament_brackets_select_column!]" ], "limit": [ @@ -164163,19 +159977,19 @@ export default { 38 ], "order_by": [ - 4348, + 4100, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4089 ] } ], "tournament_brackets_aggregate": [ - 4327, + 4079, { "distinct_on": [ - 4350, + 4102, "[tournament_brackets_select_column!]" ], "limit": [ @@ -164185,44 +159999,190 @@ export default { 38 ], "order_by": [ - 4348, + 4100, "[tournament_brackets_order_by!]" ], "where": [ - 4337 + 4089 ] } ], "tournament_brackets_by_pk": [ - 4326, + 4078, { "id": [ - 4762, + 4621, "uuid!" ] } ], "tournament_brackets_stream": [ - 4326, + 4078, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4360, + 4112, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4337 + 4089 + ] + } + ], + "tournament_categories": [ + 4124, + { + "distinct_on": [ + 4142, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4140, + "[tournament_categories_order_by!]" + ], + "where": [ + 4131 + ] + } + ], + "tournament_categories_aggregate": [ + 4125, + { + "distinct_on": [ + 4142, + "[tournament_categories_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4140, + "[tournament_categories_order_by!]" + ], + "where": [ + 4131 + ] + } + ], + "tournament_categories_by_pk": [ + 4124, + { + "category": [ + 1130, + "e_tournament_categories_enum!" + ], + "tournament_id": [ + 4621, + "uuid!" + ] + } + ], + "tournament_categories_stream": [ + 4124, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 4144, + "[tournament_categories_stream_cursor_input]!" + ], + "where": [ + 4131 + ] + } + ], + "tournament_organizer_teams": [ + 4148, + { + "distinct_on": [ + 4166, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4164, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 4155 + ] + } + ], + "tournament_organizer_teams_aggregate": [ + 4149, + { + "distinct_on": [ + 4166, + "[tournament_organizer_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4164, + "[tournament_organizer_teams_order_by!]" + ], + "where": [ + 4155 + ] + } + ], + "tournament_organizer_teams_by_pk": [ + 4148, + { + "team_id": [ + 4621, + "uuid!" + ], + "tournament_id": [ + 4621, + "uuid!" + ] + } + ], + "tournament_organizer_teams_stream": [ + 4148, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 4168, + "[tournament_organizer_teams_stream_cursor_input]!" + ], + "where": [ + 4155 ] } ], "tournament_organizers": [ - 4372, + 4172, { "distinct_on": [ - 4393, + 4193, "[tournament_organizers_select_column!]" ], "limit": [ @@ -164232,19 +160192,19 @@ export default { 38 ], "order_by": [ - 4391, + 4191, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4181 ] } ], "tournament_organizers_aggregate": [ - 4373, + 4173, { "distinct_on": [ - 4393, + 4193, "[tournament_organizers_select_column!]" ], "limit": [ @@ -164254,48 +160214,117 @@ export default { 38 ], "order_by": [ - 4391, + 4191, "[tournament_organizers_order_by!]" ], "where": [ - 4381 + 4181 ] } ], "tournament_organizers_by_pk": [ - 4372, + 4172, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4762, + 4621, "uuid!" ] } ], "tournament_organizers_stream": [ - 4372, + 4172, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4401, + 4201, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4381 + 4181 + ] + } + ], + "tournament_prizes": [ + 4213, + { + "distinct_on": [ + 4234, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4232, + "[tournament_prizes_order_by!]" + ], + "where": [ + 4222 + ] + } + ], + "tournament_prizes_aggregate": [ + 4214, + { + "distinct_on": [ + 4234, + "[tournament_prizes_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4232, + "[tournament_prizes_order_by!]" + ], + "where": [ + 4222 + ] + } + ], + "tournament_prizes_by_pk": [ + 4213, + { + "id": [ + 4621, + "uuid!" + ] + } + ], + "tournament_prizes_stream": [ + 4213, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 4242, + "[tournament_prizes_stream_cursor_input]!" + ], + "where": [ + 4222 ] } ], "tournament_stage_windows": [ - 4413, + 4254, { "distinct_on": [ - 4434, + 4275, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -164305,19 +160334,19 @@ export default { 38 ], "order_by": [ - 4432, + 4273, "[tournament_stage_windows_order_by!]" ], "where": [ - 4422 + 4263 ] } ], "tournament_stage_windows_aggregate": [ - 4414, + 4255, { "distinct_on": [ - 4434, + 4275, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -164327,44 +160356,44 @@ export default { 38 ], "order_by": [ - 4432, + 4273, "[tournament_stage_windows_order_by!]" ], "where": [ - 4422 + 4263 ] } ], "tournament_stage_windows_by_pk": [ - 4413, + 4254, { "id": [ - 4762, + 4621, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4413, + 4254, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4442, + 4283, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4422 + 4263 ] } ], "tournament_stages": [ - 4454, + 4295, { "distinct_on": [ - 4483, + 4324, "[tournament_stages_select_column!]" ], "limit": [ @@ -164374,19 +160403,19 @@ export default { 38 ], "order_by": [ - 4480, + 4321, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4307 ] } ], "tournament_stages_aggregate": [ - 4455, + 4296, { "distinct_on": [ - 4483, + 4324, "[tournament_stages_select_column!]" ], "limit": [ @@ -164396,44 +160425,44 @@ export default { 38 ], "order_by": [ - 4480, + 4321, "[tournament_stages_order_by!]" ], "where": [ - 4466 + 4307 ] } ], "tournament_stages_by_pk": [ - 4454, + 4295, { "id": [ - 4762, + 4621, "uuid!" ] } ], "tournament_stages_stream": [ - 4454, + 4295, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4493, + 4334, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4466 + 4307 ] } ], "tournament_team_invites": [ - 4505, + 4346, { "distinct_on": [ - 4526, + 4367, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -164443,19 +160472,19 @@ export default { 38 ], "order_by": [ - 4524, + 4365, "[tournament_team_invites_order_by!]" ], "where": [ - 4514 + 4355 ] } ], "tournament_team_invites_aggregate": [ - 4506, + 4347, { "distinct_on": [ - 4526, + 4367, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -164465,44 +160494,44 @@ export default { 38 ], "order_by": [ - 4524, + 4365, "[tournament_team_invites_order_by!]" ], "where": [ - 4514 + 4355 ] } ], "tournament_team_invites_by_pk": [ - 4505, + 4346, { "id": [ - 4762, + 4621, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4505, + 4346, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4534, + 4375, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4514 + 4355 ] } ], "tournament_team_roster": [ - 4546, + 4387, { "distinct_on": [ - 4567, + 4408, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -164512,19 +160541,19 @@ export default { 38 ], "order_by": [ - 4565, + 4406, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4396 ] } ], "tournament_team_roster_aggregate": [ - 4547, + 4388, { "distinct_on": [ - 4567, + 4408, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -164534,48 +160563,48 @@ export default { 38 ], "order_by": [ - 4565, + 4406, "[tournament_team_roster_order_by!]" ], "where": [ - 4555 + 4396 ] } ], "tournament_team_roster_by_pk": [ - 4546, + 4387, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4762, + 4621, "uuid!" ] } ], "tournament_team_roster_stream": [ - 4546, + 4387, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4575, + 4416, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 4555 + 4396 ] } ], "tournament_teams": [ - 4587, + 4428, { "distinct_on": [ - 4609, + 4450, "[tournament_teams_select_column!]" ], "limit": [ @@ -164585,19 +160614,19 @@ export default { 38 ], "order_by": [ - 4607, + 4448, "[tournament_teams_order_by!]" ], "where": [ - 4596 + 4437 ] } ], "tournament_teams_aggregate": [ - 4588, + 4429, { "distinct_on": [ - 4609, + 4450, "[tournament_teams_select_column!]" ], "limit": [ @@ -164607,44 +160636,44 @@ export default { 38 ], "order_by": [ - 4607, + 4448, "[tournament_teams_order_by!]" ], "where": [ - 4596 + 4437 ] } ], "tournament_teams_by_pk": [ - 4587, + 4428, { "id": [ - 4762, + 4621, "uuid!" ] } ], "tournament_teams_stream": [ - 4587, + 4428, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4617, + 4458, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 4596 + 4437 ] } ], "tournament_trophies": [ - 4629, + 4470, { "distinct_on": [ - 4652, + 4493, "[tournament_trophies_select_column!]" ], "limit": [ @@ -164654,19 +160683,19 @@ export default { 38 ], "order_by": [ - 4650, + 4491, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4481 ] } ], "tournament_trophies_aggregate": [ - 4630, + 4471, { "distinct_on": [ - 4652, + 4493, "[tournament_trophies_select_column!]" ], "limit": [ @@ -164676,44 +160705,44 @@ export default { 38 ], "order_by": [ - 4650, + 4491, "[tournament_trophies_order_by!]" ], "where": [ - 4640 + 4481 ] } ], "tournament_trophies_by_pk": [ - 4629, + 4470, { "id": [ - 4762, + 4621, "uuid!" ] } ], "tournament_trophies_stream": [ - 4629, + 4470, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4662, + 4503, "[tournament_trophies_stream_cursor_input]!" ], "where": [ - 4640 + 4481 ] } ], "tournament_trophy_configs": [ - 4674, + 4515, { "distinct_on": [ - 4696, + 4537, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -164723,19 +160752,19 @@ export default { 38 ], "order_by": [ - 4694, + 4535, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4683 + 4524 ] } ], "tournament_trophy_configs_aggregate": [ - 4675, + 4516, { "distinct_on": [ - 4696, + 4537, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -164745,44 +160774,44 @@ export default { 38 ], "order_by": [ - 4694, + 4535, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4683 + 4524 ] } ], "tournament_trophy_configs_by_pk": [ - 4674, + 4515, { "id": [ - 4762, + 4621, "uuid!" ] } ], "tournament_trophy_configs_stream": [ - 4674, + 4515, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4704, + 4545, "[tournament_trophy_configs_stream_cursor_input]!" ], "where": [ - 4683 + 4524 ] } ], "tournaments": [ - 4716, + 4557, { "distinct_on": [ - 4740, + 4591, "[tournaments_select_column!]" ], "limit": [ @@ -164792,19 +160821,19 @@ export default { 38 ], "order_by": [ - 4738, + 4589, "[tournaments_order_by!]" ], "where": [ - 4727 + 4578 ] } ], "tournaments_aggregate": [ - 4717, + 4558, { "distinct_on": [ - 4740, + 4591, "[tournaments_select_column!]" ], "limit": [ @@ -164814,104 +160843,44 @@ export default { 38 ], "order_by": [ - 4738, + 4589, "[tournaments_order_by!]" ], "where": [ - 4727 + 4578 ] } ], "tournaments_by_pk": [ - 4716, + 4557, { "id": [ - 4762, + 4621, "uuid!" ] } ], "tournaments_stream": [ - 4716, + 4557, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4750, + 4609, "[tournaments_stream_cursor_input]!" ], "where": [ - 4727 - ] - } - ], - "v_event_player_stats": [ - 4765, - { - "distinct_on": [ - 4791, - "[v_event_player_stats_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4790, - "[v_event_player_stats_order_by!]" - ], - "where": [ - 4784 - ] - } - ], - "v_event_player_stats_aggregate": [ - 4766, - { - "distinct_on": [ - 4791, - "[v_event_player_stats_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4790, - "[v_event_player_stats_order_by!]" - ], - "where": [ - 4784 - ] - } - ], - "v_event_player_stats_stream": [ - 4765, - { - "batch_size": [ - 38, - "Int!" - ], - "cursor": [ - 4806, - "[v_event_player_stats_stream_cursor_input]!" - ], - "where": [ - 4784 + 4578 ] } ], "v_gpu_pool_status": [ - 4816, + 4624, { "distinct_on": [ - 4824, + 4632, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -164921,19 +160890,19 @@ export default { 38 ], "order_by": [ - 4823, + 4631, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4820 + 4628 ] } ], "v_gpu_pool_status_aggregate": [ - 4817, + 4625, { "distinct_on": [ - 4824, + 4632, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -164943,35 +160912,35 @@ export default { 38 ], "order_by": [ - 4823, + 4631, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4820 + 4628 ] } ], "v_gpu_pool_status_stream": [ - 4816, + 4624, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4828, + 4636, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 4820 + 4628 ] } ], "v_league_division_standings": [ - 4834, + 4642, { "distinct_on": [ - 4850, + 4658, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -164981,19 +160950,19 @@ export default { 38 ], "order_by": [ - 4849, + 4657, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 4651 ] } ], "v_league_division_standings_aggregate": [ - 4835, + 4643, { "distinct_on": [ - 4850, + 4658, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -165003,35 +160972,35 @@ export default { 38 ], "order_by": [ - 4849, + 4657, "[v_league_division_standings_order_by!]" ], "where": [ - 4843 + 4651 ] } ], "v_league_division_standings_stream": [ - 4834, + 4642, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4857, + 4665, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 4843 + 4651 ] } ], "v_league_season_player_stats": [ - 4867, + 4675, { "distinct_on": [ - 4893, + 4701, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -165041,19 +161010,19 @@ export default { 38 ], "order_by": [ - 4892, + 4700, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4886 + 4694 ] } ], "v_league_season_player_stats_aggregate": [ - 4868, + 4676, { "distinct_on": [ - 4893, + 4701, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -165063,35 +161032,35 @@ export default { 38 ], "order_by": [ - 4892, + 4700, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4886 + 4694 ] } ], "v_league_season_player_stats_stream": [ - 4867, + 4675, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4908, + 4716, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 4886 + 4694 ] } ], "v_match_captains": [ - 4918, + 4726, { "distinct_on": [ - 4930, + 4738, "[v_match_captains_select_column!]" ], "limit": [ @@ -165101,19 +161070,19 @@ export default { 38 ], "order_by": [ - 4929, + 4737, "[v_match_captains_order_by!]" ], "where": [ - 4922 + 4730 ] } ], "v_match_captains_aggregate": [ - 4919, + 4727, { "distinct_on": [ - 4930, + 4738, "[v_match_captains_select_column!]" ], "limit": [ @@ -165123,35 +161092,35 @@ export default { 38 ], "order_by": [ - 4929, + 4737, "[v_match_captains_order_by!]" ], "where": [ - 4922 + 4730 ] } ], "v_match_captains_stream": [ - 4918, + 4726, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4935, + 4743, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 4922 + 4730 ] } ], "v_match_clutches": [ - 4942, + 4750, { "distinct_on": [ - 4958, + 4766, "[v_match_clutches_select_column!]" ], "limit": [ @@ -165161,19 +161130,19 @@ export default { 38 ], "order_by": [ - 4957, + 4765, "[v_match_clutches_order_by!]" ], "where": [ - 4951 + 4759 ] } ], "v_match_clutches_aggregate": [ - 4943, + 4751, { "distinct_on": [ - 4958, + 4766, "[v_match_clutches_select_column!]" ], "limit": [ @@ -165183,35 +161152,35 @@ export default { 38 ], "order_by": [ - 4957, + 4765, "[v_match_clutches_order_by!]" ], "where": [ - 4951 + 4759 ] } ], "v_match_clutches_stream": [ - 4942, + 4750, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4965, + 4773, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 4951 + 4759 ] } ], "v_match_kill_pairs": [ - 4975, + 4783, { "distinct_on": [ - 4983, + 4791, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -165221,19 +161190,19 @@ export default { 38 ], "order_by": [ - 4982, + 4790, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4979 + 4787 ] } ], "v_match_kill_pairs_aggregate": [ - 4976, + 4784, { "distinct_on": [ - 4983, + 4791, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -165243,35 +161212,35 @@ export default { 38 ], "order_by": [ - 4982, + 4790, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4979 + 4787 ] } ], "v_match_kill_pairs_stream": [ - 4975, + 4783, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4987, + 4795, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 4979 + 4787 ] } ], "v_match_lineup_buy_types": [ - 4993, + 4801, { "distinct_on": [ - 5001, + 4809, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -165281,19 +161250,19 @@ export default { 38 ], "order_by": [ - 5000, + 4808, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4997 + 4805 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4994, + 4802, { "distinct_on": [ - 5001, + 4809, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -165303,35 +161272,35 @@ export default { 38 ], "order_by": [ - 5000, + 4808, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4997 + 4805 ] } ], "v_match_lineup_buy_types_stream": [ - 4993, + 4801, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5005, + 4813, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 4997 + 4805 ] } ], "v_match_lineup_map_stats": [ - 5011, + 4819, { "distinct_on": [ - 5019, + 4827, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -165341,19 +161310,19 @@ export default { 38 ], "order_by": [ - 5018, + 4826, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5015 + 4823 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5012, + 4820, { "distinct_on": [ - 5019, + 4827, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -165363,35 +161332,35 @@ export default { 38 ], "order_by": [ - 5018, + 4826, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5015 + 4823 ] } ], "v_match_lineup_map_stats_stream": [ - 5011, + 4819, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5023, + 4831, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 5015 + 4823 ] } ], "v_match_map_backup_rounds": [ - 5029, + 4837, { "distinct_on": [ - 5040, + 4848, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -165401,19 +161370,19 @@ export default { 38 ], "order_by": [ - 5039, + 4847, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5033 + 4841 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5030, + 4838, { "distinct_on": [ - 5040, + 4848, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -165423,35 +161392,35 @@ export default { 38 ], "order_by": [ - 5039, + 4847, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5033 + 4841 ] } ], "v_match_map_backup_rounds_stream": [ - 5029, + 4837, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5045, + 4853, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 5033 + 4841 ] } ], "v_match_player_buy_types": [ - 5052, + 4860, { "distinct_on": [ - 5060, + 4868, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -165461,19 +161430,19 @@ export default { 38 ], "order_by": [ - 5059, + 4867, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5056 + 4864 ] } ], "v_match_player_buy_types_aggregate": [ - 5053, + 4861, { "distinct_on": [ - 5060, + 4868, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -165483,35 +161452,35 @@ export default { 38 ], "order_by": [ - 5059, + 4867, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5056 + 4864 ] } ], "v_match_player_buy_types_stream": [ - 5052, + 4860, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5064, + 4872, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 5056 + 4864 ] } ], "v_match_player_opening_duels": [ - 5070, + 4878, { "distinct_on": [ - 5086, + 4894, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -165521,19 +161490,19 @@ export default { 38 ], "order_by": [ - 5085, + 4893, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5079 + 4887 ] } ], "v_match_player_opening_duels_aggregate": [ - 5071, + 4879, { "distinct_on": [ - 5086, + 4894, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -165543,35 +161512,35 @@ export default { 38 ], "order_by": [ - 5085, + 4893, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5079 + 4887 ] } ], "v_match_player_opening_duels_stream": [ - 5070, + 4878, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5093, + 4901, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 5079 + 4887 ] } ], "v_player_arch_nemesis": [ - 5103, + 4911, { "distinct_on": [ - 5111, + 4919, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -165581,19 +161550,19 @@ export default { 38 ], "order_by": [ - 5110, + 4918, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5107 + 4915 ] } ], "v_player_arch_nemesis_aggregate": [ - 5104, + 4912, { "distinct_on": [ - 5111, + 4919, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -165603,35 +161572,35 @@ export default { 38 ], "order_by": [ - 5110, + 4918, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5107 + 4915 ] } ], "v_player_arch_nemesis_stream": [ - 5103, + 4911, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5115, + 4923, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 5107 + 4915 ] } ], "v_player_damage": [ - 5121, + 4929, { "distinct_on": [ - 5129, + 4937, "[v_player_damage_select_column!]" ], "limit": [ @@ -165641,19 +161610,19 @@ export default { 38 ], "order_by": [ - 5128, + 4936, "[v_player_damage_order_by!]" ], "where": [ - 5125 + 4933 ] } ], "v_player_damage_aggregate": [ - 5122, + 4930, { "distinct_on": [ - 5129, + 4937, "[v_player_damage_select_column!]" ], "limit": [ @@ -165663,35 +161632,35 @@ export default { 38 ], "order_by": [ - 5128, + 4936, "[v_player_damage_order_by!]" ], "where": [ - 5125 + 4933 ] } ], "v_player_damage_stream": [ - 5121, + 4929, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5133, + 4941, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 5125 + 4933 ] } ], "v_player_elo": [ - 5139, + 4947, { "distinct_on": [ - 5165, + 4973, "[v_player_elo_select_column!]" ], "limit": [ @@ -165701,19 +161670,19 @@ export default { 38 ], "order_by": [ - 5164, + 4972, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 4966 ] } ], "v_player_elo_aggregate": [ - 5140, + 4948, { "distinct_on": [ - 5165, + 4973, "[v_player_elo_select_column!]" ], "limit": [ @@ -165723,35 +161692,35 @@ export default { 38 ], "order_by": [ - 5164, + 4972, "[v_player_elo_order_by!]" ], "where": [ - 5158 + 4966 ] } ], "v_player_elo_stream": [ - 5139, + 4947, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5180, + 4988, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 5158 + 4966 ] } ], "v_player_map_losses": [ - 5190, + 4998, { "distinct_on": [ - 5198, + 5006, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -165761,19 +161730,19 @@ export default { 38 ], "order_by": [ - 5197, + 5005, "[v_player_map_losses_order_by!]" ], "where": [ - 5194 + 5002 ] } ], "v_player_map_losses_aggregate": [ - 5191, + 4999, { "distinct_on": [ - 5198, + 5006, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -165783,35 +161752,35 @@ export default { 38 ], "order_by": [ - 5197, + 5005, "[v_player_map_losses_order_by!]" ], "where": [ - 5194 + 5002 ] } ], "v_player_map_losses_stream": [ - 5190, + 4998, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5202, + 5010, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 5194 + 5002 ] } ], "v_player_map_wins": [ - 5208, + 5016, { "distinct_on": [ - 5216, + 5024, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -165821,19 +161790,19 @@ export default { 38 ], "order_by": [ - 5215, + 5023, "[v_player_map_wins_order_by!]" ], "where": [ - 5212 + 5020 ] } ], "v_player_map_wins_aggregate": [ - 5209, + 5017, { "distinct_on": [ - 5216, + 5024, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -165843,35 +161812,35 @@ export default { 38 ], "order_by": [ - 5215, + 5023, "[v_player_map_wins_order_by!]" ], "where": [ - 5212 + 5020 ] } ], "v_player_map_wins_stream": [ - 5208, + 5016, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5220, + 5028, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 5212 + 5020 ] } ], "v_player_match_head_to_head": [ - 5226, + 5034, { "distinct_on": [ - 5234, + 5042, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -165881,19 +161850,19 @@ export default { 38 ], "order_by": [ - 5233, + 5041, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5230 + 5038 ] } ], "v_player_match_head_to_head_aggregate": [ - 5227, + 5035, { "distinct_on": [ - 5234, + 5042, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -165903,35 +161872,35 @@ export default { 38 ], "order_by": [ - 5233, + 5041, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5230 + 5038 ] } ], "v_player_match_head_to_head_stream": [ - 5226, + 5034, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5238, + 5046, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 5230 + 5038 ] } ], "v_player_match_map_hltv": [ - 5244, + 5052, { "distinct_on": [ - 5262, + 5070, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -165941,19 +161910,19 @@ export default { 38 ], "order_by": [ - 5261, + 5069, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5253 + 5061 ] } ], "v_player_match_map_hltv_aggregate": [ - 5245, + 5053, { "distinct_on": [ - 5262, + 5070, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -165963,35 +161932,35 @@ export default { 38 ], "order_by": [ - 5261, + 5069, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5253 + 5061 ] } ], "v_player_match_map_hltv_stream": [ - 5244, + 5052, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5270, + 5078, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 5253 + 5061 ] } ], "v_player_match_map_roles": [ - 5281, + 5089, { "distinct_on": [ - 5289, + 5097, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -166001,19 +161970,19 @@ export default { 38 ], "order_by": [ - 5288, + 5096, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5285 + 5093 ] } ], "v_player_match_map_roles_aggregate": [ - 5282, + 5090, { "distinct_on": [ - 5289, + 5097, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -166023,35 +161992,35 @@ export default { 38 ], "order_by": [ - 5288, + 5096, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5285 + 5093 ] } ], "v_player_match_map_roles_stream": [ - 5281, + 5089, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5293, + 5101, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 5285 + 5093 ] } ], "v_player_match_performance": [ - 5299, + 5107, { "distinct_on": [ - 5307, + 5115, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -166061,19 +162030,19 @@ export default { 38 ], "order_by": [ - 5306, + 5114, "[v_player_match_performance_order_by!]" ], "where": [ - 5303 + 5111 ] } ], "v_player_match_performance_aggregate": [ - 5300, + 5108, { "distinct_on": [ - 5307, + 5115, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -166083,35 +162052,35 @@ export default { 38 ], "order_by": [ - 5306, + 5114, "[v_player_match_performance_order_by!]" ], "where": [ - 5303 + 5111 ] } ], "v_player_match_performance_stream": [ - 5299, + 5107, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5311, + 5119, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 5303 + 5111 ] } ], "v_player_match_rating": [ - 5317, + 5125, { "distinct_on": [ - 5325, + 5133, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -166121,19 +162090,19 @@ export default { 38 ], "order_by": [ - 5324, + 5132, "[v_player_match_rating_order_by!]" ], "where": [ - 5321 + 5129 ] } ], "v_player_match_rating_aggregate": [ - 5318, + 5126, { "distinct_on": [ - 5325, + 5133, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -166143,35 +162112,35 @@ export default { 38 ], "order_by": [ - 5324, + 5132, "[v_player_match_rating_order_by!]" ], "where": [ - 5321 + 5129 ] } ], "v_player_match_rating_stream": [ - 5317, + 5125, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5329, + 5137, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 5321 + 5129 ] } ], "v_player_multi_kills": [ - 5335, + 5143, { "distinct_on": [ - 5351, + 5159, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -166181,19 +162150,19 @@ export default { 38 ], "order_by": [ - 5350, + 5158, "[v_player_multi_kills_order_by!]" ], "where": [ - 5344 + 5152 ] } ], "v_player_multi_kills_aggregate": [ - 5336, + 5144, { "distinct_on": [ - 5351, + 5159, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -166203,35 +162172,35 @@ export default { 38 ], "order_by": [ - 5350, + 5158, "[v_player_multi_kills_order_by!]" ], "where": [ - 5344 + 5152 ] } ], "v_player_multi_kills_stream": [ - 5335, + 5143, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5358, + 5166, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 5344 + 5152 ] } ], "v_player_weapon_damage": [ - 5368, + 5176, { "distinct_on": [ - 5376, + 5184, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -166241,19 +162210,19 @@ export default { 38 ], "order_by": [ - 5375, + 5183, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5372 + 5180 ] } ], "v_player_weapon_damage_aggregate": [ - 5369, + 5177, { "distinct_on": [ - 5376, + 5184, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -166263,35 +162232,35 @@ export default { 38 ], "order_by": [ - 5375, + 5183, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5372 + 5180 ] } ], "v_player_weapon_damage_stream": [ - 5368, + 5176, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5380, + 5188, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5372 + 5180 ] } ], "v_player_weapon_kills": [ - 5386, + 5194, { "distinct_on": [ - 5394, + 5202, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -166301,19 +162270,19 @@ export default { 38 ], "order_by": [ - 5393, + 5201, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5390 + 5198 ] } ], "v_player_weapon_kills_aggregate": [ - 5387, + 5195, { "distinct_on": [ - 5394, + 5202, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -166323,35 +162292,35 @@ export default { 38 ], "order_by": [ - 5393, + 5201, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5390 + 5198 ] } ], "v_player_weapon_kills_stream": [ - 5386, + 5194, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5398, + 5206, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5390 + 5198 ] } ], "v_pool_maps": [ - 5404, + 5212, { "distinct_on": [ - 5421, + 5229, "[v_pool_maps_select_column!]" ], "limit": [ @@ -166361,19 +162330,19 @@ export default { 38 ], "order_by": [ - 5420, + 5228, "[v_pool_maps_order_by!]" ], "where": [ - 5413 + 5221 ] } ], "v_pool_maps_aggregate": [ - 5405, + 5213, { "distinct_on": [ - 5421, + 5229, "[v_pool_maps_select_column!]" ], "limit": [ @@ -166383,35 +162352,35 @@ export default { 38 ], "order_by": [ - 5420, + 5228, "[v_pool_maps_order_by!]" ], "where": [ - 5413 + 5221 ] } ], "v_pool_maps_stream": [ - 5404, + 5212, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5425, + 5233, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5413 + 5221 ] } ], "v_steam_account_pool_status": [ - 5428, + 5236, { "distinct_on": [ - 5436, + 5244, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -166421,19 +162390,19 @@ export default { 38 ], "order_by": [ - 5435, + 5243, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5432 + 5240 ] } ], "v_steam_account_pool_status_aggregate": [ - 5429, + 5237, { "distinct_on": [ - 5436, + 5244, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -166443,35 +162412,35 @@ export default { 38 ], "order_by": [ - 5435, + 5243, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5432 + 5240 ] } ], "v_steam_account_pool_status_stream": [ - 5428, + 5236, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5440, + 5248, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5432 + 5240 ] } ], "v_team_ranks": [ - 5446, + 5254, { "distinct_on": [ - 5456, + 5264, "[v_team_ranks_select_column!]" ], "limit": [ @@ -166481,19 +162450,19 @@ export default { 38 ], "order_by": [ - 5455, + 5263, "[v_team_ranks_order_by!]" ], "where": [ - 5450 + 5258 ] } ], "v_team_ranks_aggregate": [ - 5447, + 5255, { "distinct_on": [ - 5456, + 5264, "[v_team_ranks_select_column!]" ], "limit": [ @@ -166503,35 +162472,35 @@ export default { 38 ], "order_by": [ - 5455, + 5263, "[v_team_ranks_order_by!]" ], "where": [ - 5450 + 5258 ] } ], "v_team_ranks_stream": [ - 5446, + 5254, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5460, + 5268, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5450 + 5258 ] } ], "v_team_reputation": [ - 5466, + 5274, { "distinct_on": [ - 5476, + 5284, "[v_team_reputation_select_column!]" ], "limit": [ @@ -166541,19 +162510,19 @@ export default { 38 ], "order_by": [ - 5475, + 5283, "[v_team_reputation_order_by!]" ], "where": [ - 5470 + 5278 ] } ], "v_team_reputation_aggregate": [ - 5467, + 5275, { "distinct_on": [ - 5476, + 5284, "[v_team_reputation_select_column!]" ], "limit": [ @@ -166563,35 +162532,35 @@ export default { 38 ], "order_by": [ - 5475, + 5283, "[v_team_reputation_order_by!]" ], "where": [ - 5470 + 5278 ] } ], "v_team_reputation_stream": [ - 5466, + 5274, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5480, + 5288, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5470 + 5278 ] } ], "v_team_stage_results": [ - 5486, + 5294, { "distinct_on": [ - 5518, + 5326, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -166601,19 +162570,19 @@ export default { 38 ], "order_by": [ - 5516, + 5324, "[v_team_stage_results_order_by!]" ], "where": [ - 5505 + 5313 ] } ], "v_team_stage_results_aggregate": [ - 5487, + 5295, { "distinct_on": [ - 5518, + 5326, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -166623,48 +162592,48 @@ export default { 38 ], "order_by": [ - 5516, + 5324, "[v_team_stage_results_order_by!]" ], "where": [ - 5505 + 5313 ] } ], "v_team_stage_results_by_pk": [ - 5486, + 5294, { "tournament_stage_id": [ - 4762, + 4621, "uuid!" ], "tournament_team_id": [ - 4762, + 4621, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5486, + 5294, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5534, + 5342, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5505 + 5313 ] } ], "v_team_tournament_results": [ - 5546, + 5354, { "distinct_on": [ - 5572, + 5380, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -166674,19 +162643,19 @@ export default { 38 ], "order_by": [ - 5571, + 5379, "[v_team_tournament_results_order_by!]" ], "where": [ - 5565 + 5373 ] } ], "v_team_tournament_results_aggregate": [ - 5547, + 5355, { "distinct_on": [ - 5572, + 5380, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -166696,35 +162665,35 @@ export default { 38 ], "order_by": [ - 5571, + 5379, "[v_team_tournament_results_order_by!]" ], "where": [ - 5565 + 5373 ] } ], "v_team_tournament_results_stream": [ - 5546, + 5354, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5587, + 5395, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5565 + 5373 ] } ], "v_tournament_player_stats": [ - 5597, + 5405, { "distinct_on": [ - 5623, + 5431, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -166734,19 +162703,19 @@ export default { 38 ], "order_by": [ - 5622, + 5430, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5616 + 5424 ] } ], "v_tournament_player_stats_aggregate": [ - 5598, + 5406, { "distinct_on": [ - 5623, + 5431, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -166756,27 +162725,27 @@ export default { 38 ], "order_by": [ - 5622, + 5430, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5616 + 5424 ] } ], "v_tournament_player_stats_stream": [ - 5597, + 5405, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5638, + 5446, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 5616 + 5424 ] } ], 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..cc9421197 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,36 @@ 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. 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'; + + lineup_1_wins := COALESCE(final_advantage, 0); + + -- 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 +78,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 +87,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..19a2b6b52 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_custom_pages.yaml @@ -0,0 +1,197 @@ +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: + enabled: + _eq: 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: + enabled: + _eq: true + 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: + enabled: + _eq: true + 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: + enabled: + _eq: true + 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: + enabled: + _eq: true + 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: + enabled: + _eq: true + 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: + enabled: + _eq: true + 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..2d4ae311f --- /dev/null +++ b/hasura/migrations/default/1871000000200_tournament_infos_organisations_match_settings/up.sql @@ -0,0 +1,88 @@ +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. +-- Must stay below ceil(best_of / 2): at or above it the winner-bracket team is already at +-- the win threshold and takes 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..e65053927 --- /dev/null +++ b/src/custom-pages/custom-pages.controller.ts @@ -0,0 +1,111 @@ +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" }); + } + + 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" }); + } + } +} 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..80d1cb254 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,165 @@ 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, + }, + }); + + for (const link of tournament_organizer_teams) { + await this.syncOrganizationTeamOrganizers(link.tournament_id, teamId); + } + } + + // 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) { + await this.hasura.mutation({ + insert_tournament_organizers: { + __args: { + objects: toInsert.map((steam_id) => ({ + steam_id, + tournament_id: tournamentId, + organization_team_id: teamId, + })), + }, + 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..58fd770d5 100644 --- a/test/match-scoring.spec.ts +++ b/test/match-scoring.spec.ts @@ -125,6 +125,89 @@ 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()); + }); + it("does not overwrite a forfeited match", async () => { const match = await createLiveMatch(1); await recordScore(match.mapIds[0], 13, 7); 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); + }); +});